From c22d07ea425259582a129db333bd4c6cd5d4463d Mon Sep 17 00:00:00 2001 From: Ruslan Makhmatkhanov Date: Wed, 18 Jun 2025 00:13:45 +0300 Subject: [PATCH] textproc/py-wtforms: fix build with python 3.12 - register setuptools as a build dependency PR: 287249 Reported by: Matthew Wener --- 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} \