diff options
author | Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2025-04-09 22:53:16 +0800 |
---|---|---|
committer | Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2025-04-09 22:55:11 +0800 |
commit | 150c0018fdfece47d43cc508378c8faf26046149 (patch) | |
tree | be9d5f1aa9ef680028d389fd9ded2f0a6c1a31f8 /net/py-mpi4py | |
parent | www/py-flask-migrate: Fix build after 59c51372a83e96bcd8314a60bf91a0d82a9f0f94 (diff) |
Mk/Uses/python.mk: Introduce USE_PYTHON=cython3{,_run,_test}
- Update USE_PYTHON=cython{,_run,_test}
- Convert all cython3 occurrence to USE_PYTHON=cython3*
- While I'm here, fix incorrect usage of combining cython3 in BUILD_DEPENDS and USE_PYTHON=cython
It is added to simplify the future transition from Cython 0.29 to 3.
The minimal version is set to 3.0.12 because it is required by devel/py-propcache.
The upper bound of version is set to 3.1 because it is limited by multiple ports.
Diffstat (limited to 'net/py-mpi4py')
-rw-r--r-- | net/py-mpi4py/Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/net/py-mpi4py/Makefile b/net/py-mpi4py/Makefile index f970a596ffdc..573f93fde519 100644 --- a/net/py-mpi4py/Makefile +++ b/net/py-mpi4py/Makefile @@ -12,10 +12,8 @@ WWW= https://github.com/mpi4py/mpi4py LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE.rst -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cython3>3.0.0:lang/cython3@${PY_FLAVOR} - USES= pkgconfig python -USE_PYTHON= autoplist concurrent distutils +USE_PYTHON= autoplist concurrent cython3 distutils MP?= OPENMPI .if ${MP} == "OPENMPI" |