git: c547723908fa - main - devel/py-cogapp: Fix build by adding missing py-wheel dependency
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 16 Jul 2025 14:15:58 UTC
The branch main has been updated by olgeni:
URL: https://cgit.FreeBSD.org/ports/commit/?id=c547723908fa355e0cbd0d59fd353e25bef6ec3f
commit c547723908fa355e0cbd0d59fd353e25bef6ec3f
Author: Jimmy Olgeni <olgeni@FreeBSD.org>
AuthorDate: 2025-07-16 14:15:30 +0000
Commit: Jimmy Olgeni <olgeni@FreeBSD.org>
CommitDate: 2025-07-16 14:15:30 +0000
devel/py-cogapp: Fix build by adding missing py-wheel dependency
The port uses pep517 build system which requires wheel during the build
process. Add it as a BUILD_DEPENDS to fix the build failure.
Reviewed by: tagattie
Differential Revision: https://reviews.freebsd.org/D51344
---
devel/py-cogapp/Makefile | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/devel/py-cogapp/Makefile b/devel/py-cogapp/Makefile
index a07e281354cb..a2247535ffcc 100644
--- a/devel/py-cogapp/Makefile
+++ b/devel/py-cogapp/Makefile
@@ -11,7 +11,8 @@ WWW= https://cog.readthedocs.io/
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
-BUILD_DEPENDS= ${PY_SETUPTOOLS}
+BUILD_DEPENDS= ${PY_SETUPTOOLS} \
+ ${PYTHON_PKGNAMEPREFIX}wheel>0:devel/py-wheel@${PY_FLAVOR}
TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}build>0:devel/py-build@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}check-manifest>0:devel/py-check-manifest@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}coverage>0:devel/py-coverage@${PY_FLAVOR} \