git: db0879544520 - main - audio/py-gtts: Make build system PEP-518 conform

From: Nuno Teixeira <eduardo_at_FreeBSD.org>
Date: Sun, 15 Jan 2023 21:23:56 UTC
The branch main has been updated by eduardo:

URL: https://cgit.FreeBSD.org/ports/commit/?id=db0879544520d16db58a403f072b38af9c4cf208

commit db0879544520d16db58a403f072b38af9c4cf208
Author:     Nuno Teixeira <eduardo@FreeBSD.org>
AuthorDate: 2023-01-15 21:18:28 +0000
Commit:     Nuno Teixeira <eduardo@FreeBSD.org>
CommitDate: 2023-01-15 21:23:43 +0000

    audio/py-gtts: Make build system PEP-518 conform
    
     Declare minimum build dependencies for build system
     See: https://peps.python.org/pep-0518/#build-system-table
    
    PR:             268902
    Reported by:    Charlie Li <vishwin@freebsd.org>
---
 audio/py-gtts/Makefile | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/audio/py-gtts/Makefile b/audio/py-gtts/Makefile
index c654bb26bab6..d2edecc58d66 100644
--- a/audio/py-gtts/Makefile
+++ b/audio/py-gtts/Makefile
@@ -1,5 +1,6 @@
 PORTNAME=	gTTS
 DISTVERSION=	2.3.0
+PORTREVISION=	1
 CATEGORIES=	audio python
 MASTER_SITES=	PYPI
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
@@ -11,7 +12,8 @@ WWW=		https://github.com/pndurette/gTTS
 LICENSE=	MIT
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
-BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}wheel>0:devel/py-wheel@${PY_FLAVOR}
+BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}setuptools>0:devel/py-setuptools@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}wheel>0:devel/py-wheel@${PY_FLAVOR}
 RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}click>=8.1.3:devel/py-click@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}requests>=2.28.0:www/py-requests@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}six>=1.16.0:devel/py-six@${PY_FLAVOR}