git: 59becb3db837 - main - textproc/py-mkdocs: Fix build with Python 3.12+
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 13 Apr 2025 10:02:33 UTC
The branch main has been updated by kai:
URL: https://cgit.FreeBSD.org/ports/commit/?id=59becb3db8379c2fa64619573791eb151b2d1ffc
commit 59becb3db8379c2fa64619573791eb151b2d1ffc
Author: Kai Knoblich <kai@FreeBSD.org>
AuthorDate: 2025-04-13 09:54:21 +0000
Commit: Kai Knoblich <kai@FreeBSD.org>
CommitDate: 2025-04-13 09:54:21 +0000
textproc/py-mkdocs: Fix build with Python 3.12+
* Add missing dependency to make a successful build possible.
---
textproc/py-mkdocs/Makefile | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/textproc/py-mkdocs/Makefile b/textproc/py-mkdocs/Makefile
index 57dd21477d18..d4cdf81595dd 100644
--- a/textproc/py-mkdocs/Makefile
+++ b/textproc/py-mkdocs/Makefile
@@ -44,4 +44,8 @@ I18N_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Babel>=2.9.0:devel/py-babel@${PY_FLAVOR
RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}importlib-metadata>=4.4:devel/py-importlib-metadata@${PY_FLAVOR}
.endif
+.if ${PYTHON_REL} >= 31200
+BUILD_DEPENDS+= ${PY_SETUPTOOLS}
+.endif
+
.include <bsd.port.post.mk>