git: c22d07ea4252 - main - textproc/py-wtforms: fix build with python 3.12

From: Ruslan Makhmatkhanov <rm_at_FreeBSD.org>
Date: Tue, 17 Jun 2025 21:15:20 UTC
The branch main has been updated by rm:

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

commit c22d07ea425259582a129db333bd4c6cd5d4463d
Author:     Ruslan Makhmatkhanov <rm@FreeBSD.org>
AuthorDate: 2025-06-17 21:13:45 +0000
Commit:     Ruslan Makhmatkhanov <rm@FreeBSD.org>
CommitDate: 2025-06-17 21:13:45 +0000

    textproc/py-wtforms: fix build with python 3.12
    
    - register setuptools as a build dependency
    
    PR:             287249
    Reported by:    Matthew Wener <matthew@wener.org>
---
 textproc/py-wtforms/Makefile | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/textproc/py-wtforms/Makefile b/textproc/py-wtforms/Makefile
index 2a0bc9eb414c..b1708942bb8d 100644
--- a/textproc/py-wtforms/Makefile
+++ b/textproc/py-wtforms/Makefile
@@ -12,7 +12,8 @@ WWW=		http://wtforms.simplecodes.com/
 LICENSE=	BSD3CLAUSE
 LICENSE_FILE=	${WRKSRC}/LICENSE.rst
 
-BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}Babel>0:devel/py-babel@${PY_FLAVOR} \
+BUILD_DEPENDS=	${PY_SETUPTOOLS} \
+		${PYTHON_PKGNAMEPREFIX}Babel>0:devel/py-babel@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}python-dateutil>0:devel/py-python-dateutil@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}hatchling>0:devel/py-hatchling@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}markupsafe>0:textproc/py-markupsafe@${PY_FLAVOR} \