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 /databases/py-snowflake-connector-python | |
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 'databases/py-snowflake-connector-python')
-rw-r--r-- | databases/py-snowflake-connector-python/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/databases/py-snowflake-connector-python/Makefile b/databases/py-snowflake-connector-python/Makefile index 2f4dcef617b8..d6693a8d8b05 100644 --- a/databases/py-snowflake-connector-python/Makefile +++ b/databases/py-snowflake-connector-python/Makefile @@ -12,7 +12,6 @@ WWW= https://github.com/snowflakedb/snowflake-connector-python LICENSE= APACHE20 -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cython3>0:lang/cython3@${PY_FLAVOR} RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}asn1crypto>0.24.0<2.0.0:devel/py-asn1crypto@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}cffi>=1.9<2:devel/py-cffi@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}openssl>=16.2.0:security/py-openssl@${PY_FLAVOR} \ @@ -30,7 +29,7 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}asn1crypto>0.24.0<2.0.0:devel/py-asn1crypto@ ${PYTHON_PKGNAMEPREFIX}tomlkit>0:textproc/py-tomlkit@${PY_FLAVOR} USES= python -USE_PYTHON= autoplist concurrent cryptography distutils +USE_PYTHON= autoplist concurrent cryptography cython3 distutils .include <bsd.port.pre.mk> |