diff options
author | Ruslan Makhmatkhanov <rm@FreeBSD.org> | 2024-05-31 08:15:58 +0000 |
---|---|---|
committer | Ruslan Makhmatkhanov <rm@FreeBSD.org> | 2024-05-31 08:15:58 +0000 |
commit | c65fdbc33b3f7ab656c16784aa895ff7bdfe93b1 (patch) | |
tree | b7666624001fe7ceed8bdbd98ff6a1b12840bfe8 | |
parent | 0ace0c3fc3b7dc41c193dbcfdd8ba9d40f36685d (diff) |
math/py-pygslodeiv2: fix build with python 3.11
Fix build by regenerating source with cython
PR: 275494
Approved by: portmgr (blanket approval)
-rw-r--r-- | math/py-pygslodeiv2/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/math/py-pygslodeiv2/Makefile b/math/py-pygslodeiv2/Makefile index 02c44ea41255..4a431d6e4ded 100644 --- a/math/py-pygslodeiv2/Makefile +++ b/math/py-pygslodeiv2/Makefile @@ -1,6 +1,6 @@ PORTNAME= pygslodeiv2 DISTVERSION= 0.9.4 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= math python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -17,7 +17,7 @@ LIB_DEPENDS= libgsl.so:math/gsl RUN_DEPENDS= ${PYNUMPY} USES= compiler:c++11-lang localbase python -USE_PYTHON= distutils autoplist pytest +USE_PYTHON= distutils autoplist cython pytest pre-test: @cd ${WRKSRC} && ${PYTHON_CMD} ${PYSETUP} build_ext --inplace |