git: 230b6dd8fda0 - main - devel/py-watchdog: Fix build

From: Nicola Vitale <nivit_at_FreeBSD.org>
Date: Fri, 09 Feb 2024 09:59:13 UTC
The branch main has been updated by nivit:

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

commit 230b6dd8fda0f09b754c478ab23144d8eaee86ad
Author:     Nicola Vitale <nivit@FreeBSD.org>
AuthorDate: 2024-02-09 09:57:06 +0000
Commit:     Nicola Vitale <nivit@FreeBSD.org>
CommitDate: 2024-02-09 09:57:06 +0000

    devel/py-watchdog: Fix build
    
    - Add missing build dependency: devel/py-setuptools
    
    PR:     276913
    Reported by:    Marko Cupać <marko.cupac@mimar.rs>
---
 devel/py-watchdog/Makefile | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/devel/py-watchdog/Makefile b/devel/py-watchdog/Makefile
index 1d2ca10d7844..7a84cd4d1226 100644
--- a/devel/py-watchdog/Makefile
+++ b/devel/py-watchdog/Makefile
@@ -10,7 +10,8 @@ WWW=		https://github.com/gorakhargosh/watchdog
 
 LICENSE=	APACHE20
 
-BUILD_DEPENDS=	${PKGNAMEPREFIX}wheel>=0.42.0:devel/py-wheel@${PY_FLAVOR}
+BUILD_DEPENDS=	${PKGNAMEPREFIX}setuptools>=63.1.0:devel/py-setuptools@${PY_FLAVOR} \
+		${PKGNAMEPREFIX}wheel>=0.42.0:devel/py-wheel@${PY_FLAVOR}
 LIB_DEPENDS=	libinotify.so:devel/libinotify
 RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}yaml>=3.10:devel/py-yaml@${PY_FLAVOR}
 TEST_DEPENDS=	${PYTHON_PKGNAMEPREFIX}eventlet>0:net/py-eventlet@${PY_FLAVOR} \