diff options
author | wiz <wiz@pkgsrc.org> | 2022-01-05 15:40:56 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2022-01-05 15:40:56 +0000 |
commit | d19f073cf98e1f2653a8d55bc4ae03f713437692 (patch) | |
tree | e9aefdaf8aa062e73299809ec4ac25bfcfb8a1a8 /math | |
parent | 43a3377b786e75dc9288884a4be636135f02feae (diff) | |
download | pkgsrc-d19f073cf98e1f2653a8d55bc4ae03f713437692.tar.gz |
python: egg.mk: add USE_PKG_RESOURCES flag
This flag should be set for packages that import pkg_resources
and thus need setuptools after the build step.
Set this flag for packages that need it and bump PKGREVISION.
Diffstat (limited to 'math')
-rw-r--r-- | math/py-Theano/Makefile | 6 | ||||
-rw-r--r-- | math/py-asdf/Makefile | 6 | ||||
-rw-r--r-- | math/py-astropy/Makefile | 10 | ||||
-rw-r--r-- | math/py-netCDF4/Makefile | 6 | ||||
-rw-r--r-- | math/py-numpy/Makefile | 6 | ||||
-rw-r--r-- | math/py-pythran/Makefile | 6 | ||||
-rw-r--r-- | math/py-roman/Makefile | 6 | ||||
-rw-r--r-- | math/py-scikit-image/Makefile | 6 | ||||
-rw-r--r-- | math/py-smt/Makefile | 10 | ||||
-rw-r--r-- | math/py-sympy/Makefile | 6 | ||||
-rw-r--r-- | math/py-tables/Makefile | 5 | ||||
-rw-r--r-- | math/py-tensorboard/Makefile | 6 | ||||
-rw-r--r-- | math/py-z3solver/Makefile | 6 |
13 files changed, 56 insertions, 29 deletions
diff --git a/math/py-Theano/Makefile b/math/py-Theano/Makefile index 09e5e1f574f..467fff4d35f 100644 --- a/math/py-Theano/Makefile +++ b/math/py-Theano/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.9 2022/01/04 20:54:12 wiz Exp $ +# $NetBSD: Makefile,v 1.10 2022/01/05 15:41:13 wiz Exp $ DISTNAME= Theano-1.0.4 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} -PKGREVISION= 2 +PKGREVISION= 3 CATEGORIES= math python MASTER_SITES= ${MASTER_SITE_PYPI:=T/Theano/} @@ -28,6 +28,8 @@ REPLACE_FILES.bash= theano/misc/check_blas_many.sh PYTHON_VERSIONS_INCOMPATIBLE= 27 # py-scipy +USE_PKG_RESOURCES= yes + post-install: cd ${DESTDIR}${PREFIX}/bin && \ ${MV} theano-cache theano-cache-${PYVERSSUFFIX} && \ diff --git a/math/py-asdf/Makefile b/math/py-asdf/Makefile index 2dd3ef8470f..9f9183214b1 100644 --- a/math/py-asdf/Makefile +++ b/math/py-asdf/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.6 2022/01/04 20:54:12 wiz Exp $ +# $NetBSD: Makefile,v 1.7 2022/01/05 15:41:13 wiz Exp $ DISTNAME= asdf-2.8.3 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= math python MASTER_SITES= ${MASTER_SITE_PYPI:=a/asdf/} @@ -24,6 +24,8 @@ USE_LANGUAGES= # none PYTHON_VERSIONS_INCOMPATIBLE= 27 # py-numpy +USE_PKG_RESOURCES= yes + .include "../../lang/python/pyversion.mk" .if ${_PYTHON_VERSION} < 39 DEPENDS+= ${PYPKGPREFIX}-importlib-resources>=3:../../devel/py-importlib-resources diff --git a/math/py-astropy/Makefile b/math/py-astropy/Makefile index 02a8d8bb516..f19f1d0bf48 100644 --- a/math/py-astropy/Makefile +++ b/math/py-astropy/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.3 2022/01/04 20:54:13 wiz Exp $ +# $NetBSD: Makefile,v 1.4 2022/01/05 15:41:13 wiz Exp $ DISTNAME= astropy-4.2 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= math python MASTER_SITES= ${MASTER_SITE_PYPI:=a/astropy/} @@ -11,8 +11,6 @@ HOMEPAGE= https://www.astropy.org/ COMMENT= Python module for astronomical calculations and data analysis LICENSE= modified-bsd -PYTHON_VERSIONS_INCOMPATIBLE= 27 - DEPENDS+= libxml2>=2.9.10:../../textproc/libxml2 DEPENDS+= ${PYPKGPREFIX}-numpy>=1.17.0:../../math/py-numpy DEPENDS+= ${PYPKGPREFIX}-scipy>=1.1:../../math/py-scipy @@ -33,6 +31,10 @@ DEPENDS+= ${PYPKGPREFIX}-extension-helpers>=0.1:../../devel/py-extension-helpers DEPENDS+= ${PYPKGPREFIX}-jplephem>=2.15:../../math/py-jplephem DEPENDS+= ${PYPKGPREFIX}-pyerfa>=1.7.1.1:../../math/py-pyerfa +PYTHON_VERSIONS_INCOMPATIBLE= 27 + +USE_PKG_RESOURCES= yes + .include "../../lang/python/egg.mk" .include "../../math/py-numpy/buildlink3.mk" .include "../../mk/bsd.pkg.mk" diff --git a/math/py-netCDF4/Makefile b/math/py-netCDF4/Makefile index dd8abcec4ff..db7b068eeb9 100644 --- a/math/py-netCDF4/Makefile +++ b/math/py-netCDF4/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.18 2022/01/04 20:54:14 wiz Exp $ +# $NetBSD: Makefile,v 1.19 2022/01/05 15:41:14 wiz Exp $ DISTNAME= netCDF4-1.5.8 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= math python MASTER_SITES= ${MASTER_SITE_PYPI:=n/netCDF4/} @@ -23,6 +23,8 @@ SUBST_MESSAGE.paths= Fixing header search paths. PYTHON_VERSIONS_INCOMPATIBLE+= 27 # py-numpy +USE_PKG_RESOURCES= yes + do-test: cd ${WRKSRC}/test && ${SETENV} ${TEST_ENV} ${PYTHONBIN} run_all.py diff --git a/math/py-numpy/Makefile b/math/py-numpy/Makefile index 228fe137f00..8baf66e559c 100644 --- a/math/py-numpy/Makefile +++ b/math/py-numpy/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.88 2022/01/04 20:54:15 wiz Exp $ +# $NetBSD: Makefile,v 1.89 2022/01/05 15:41:14 wiz Exp $ DISTNAME= numpy-1.21.5 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= math python MASTER_SITES= ${MASTER_SITE_PYPI:=n/numpy/} EXTRACT_SUFX= .zip @@ -25,6 +25,8 @@ REPLACE_PYTHON+= *.py */*.py */*/*.py */*/*/*.py */*/*/*/*.py PYTHON_VERSIONS_INCOMPATIBLE= 27 +USE_PKG_RESOURCES= yes + # XXX Avoid picking up other compilers when installed .include "../../mk/compiler.mk" diff --git a/math/py-pythran/Makefile b/math/py-pythran/Makefile index c64bed5ed8f..de230323e67 100644 --- a/math/py-pythran/Makefile +++ b/math/py-pythran/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.4 2022/01/04 20:54:16 wiz Exp $ +# $NetBSD: Makefile,v 1.5 2022/01/05 15:41:14 wiz Exp $ DISTNAME= pythran-0.10.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= math python MASTER_SITES= ${MASTER_SITE_PYPI:=p/pythran/} @@ -20,6 +20,8 @@ USE_LANGUAGES= # none PYTHON_VERSIONS_INCOMPATIBLE= 27 +USE_PKG_RESOURCES= yes + post-install: .for bin in pythran pythran-config cd ${DESTDIR}${PREFIX}/bin && \ diff --git a/math/py-roman/Makefile b/math/py-roman/Makefile index 42e33142808..e5e27dd911c 100644 --- a/math/py-roman/Makefile +++ b/math/py-roman/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.13 2022/01/04 20:54:16 wiz Exp $ +# $NetBSD: Makefile,v 1.14 2022/01/05 15:41:14 wiz Exp $ DISTNAME= roman-3.3 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= math python MASTER_SITES= ${MASTER_SITE_PYPI:=r/roman/} @@ -15,6 +15,8 @@ CONFLICTS+= ${PYPKGPREFIX}-docutils<=0.7 USE_LANGUAGES= # none +USE_PKG_RESOURCES= yes + post-install: cd ${DESTDIR}${PREFIX}/bin && \ ${MV} roman roman-${PYVERSSUFFIX} || ${TRUE} diff --git a/math/py-scikit-image/Makefile b/math/py-scikit-image/Makefile index d95eeb0ae88..c5dc03309e9 100644 --- a/math/py-scikit-image/Makefile +++ b/math/py-scikit-image/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.12 2022/01/04 20:54:16 wiz Exp $ +# $NetBSD: Makefile,v 1.13 2022/01/05 15:41:14 wiz Exp $ DISTNAME= scikit-image-0.18.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= graphics python MASTER_SITES= ${MASTER_SITE_PYPI:=s/scikit-image/} @@ -26,6 +26,8 @@ USE_LANGUAGES= c c++ PYTHON_VERSIONS_INCOMPATIBLE= 27 # py-tifffile +USE_PKG_RESOURCES= yes + post-install: cd ${DESTDIR}${PREFIX}/bin && \ ${MV} skivi skivi-${PYVERSSUFFIX} || ${TRUE} diff --git a/math/py-smt/Makefile b/math/py-smt/Makefile index b0b4268a0bb..68502b47b2b 100644 --- a/math/py-smt/Makefile +++ b/math/py-smt/Makefile @@ -1,9 +1,9 @@ -# $NetBSD: Makefile,v 1.2 2022/01/04 20:54:17 wiz Exp $ +# $NetBSD: Makefile,v 1.3 2022/01/05 15:41:14 wiz Exp $ VERSION= 0.9.0 DISTNAME= PySMT-${VERSION} PKGNAME= ${PYPKGPREFIX}-smt-${VERSION} -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= math MASTER_SITES= ${MASTER_SITE_GITHUB:=pysmt/} GITHUB_PROJECT= pysmt @@ -14,13 +14,15 @@ HOMEPAGE= http://www.pysmt.org/ COMMENT= Library for SMT formula manipulation and solving LICENSE= apache-2.0 -PYTHON_VERSIONS_INCOMPATIBLE= 27 - DEPENDS+= ${PYPKGPREFIX}-six>=0:../../lang/py-six TEST_DEPENDS+= ${PYPKGPREFIX}-nose>=0:../../devel/py-nose TEST_DEPENDS+= ${PYPKGPREFIX}-z3>=0:../../math/py-z3 +PYTHON_VERSIONS_INCOMPATIBLE= 27 + +USE_PKG_RESOURCES= yes + SUBST_CLASSES+= python3 SUBST_STAGE.python3= pre-test SUBST_MESSAGE.python3= Fixing python3 interpreter diff --git a/math/py-sympy/Makefile b/math/py-sympy/Makefile index dc4ae7c94c4..8fa76be05a9 100644 --- a/math/py-sympy/Makefile +++ b/math/py-sympy/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.31 2022/01/04 20:54:17 wiz Exp $ +# $NetBSD: Makefile,v 1.32 2022/01/05 15:41:14 wiz Exp $ DISTNAME= sympy-1.9 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= math python MASTER_SITES= ${MASTER_SITE_PYPI:=s/sympy/} @@ -19,6 +19,8 @@ REPLACE_PYTHON+= sympy/utilities/tests/diagnose_imports.py PYTHON_VERSIONS_INCOMPATIBLE= 27 +USE_PKG_RESOURCES= yes + SUBST_CLASSES+= manpath SUBST_SED.manpath= -e 's,share/man,${PKGMANDIR},' SUBST_FILES.manpath+= setup.py diff --git a/math/py-tables/Makefile b/math/py-tables/Makefile index d626b385a39..51f1c815b06 100644 --- a/math/py-tables/Makefile +++ b/math/py-tables/Makefile @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.11 2022/01/05 07:05:39 wiz Exp $ +# $NetBSD: Makefile,v 1.12 2022/01/05 15:41:14 wiz Exp $ DISTNAME= tables-3.7.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} +PKGREVISION= 1 CATEGORIES= math python MASTER_SITES= ${MASTER_SITE_PYPI:=t/tables/} @@ -22,6 +23,8 @@ USE_LANGUAGES= c c++ PYTHON_VERSIONS_INCOMPATIBLE= 27 +USE_PKG_RESOURCES= yes + post-install: cd ${DESTDIR}${PREFIX}/bin && \ ${MV} pt2to3 pt2to3-${PYVERSSUFFIX} && \ diff --git a/math/py-tensorboard/Makefile b/math/py-tensorboard/Makefile index 7f4d2c51caa..f0a673eaa60 100644 --- a/math/py-tensorboard/Makefile +++ b/math/py-tensorboard/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.5 2022/01/04 20:54:17 wiz Exp $ +# $NetBSD: Makefile,v 1.6 2022/01/05 15:41:15 wiz Exp $ DISTNAME= tensorboard-${GITHUB_TAG:S/-//} PKGNAME= ${PYPKGPREFIX}-${DISTNAME} -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= math python MASTER_SITES= ${MASTER_SITE_GITHUB:=tensorflow/} GITHUB_PROJECT= tensorboard @@ -25,6 +25,8 @@ USE_LANGUAGES= # none PYTHON_VERSIONS_INCOMPATIBLE= 27 # py-protobuf, py-numpy +USE_PKG_RESOURCES= yes + post-extract: .for f in MANIFEST.in setup.cfg setup.py ${CP} ${WRKSRC}/tensorboard/pip_package/${f} ${WRKSRC} diff --git a/math/py-z3solver/Makefile b/math/py-z3solver/Makefile index 478315134db..b539d4bd743 100644 --- a/math/py-z3solver/Makefile +++ b/math/py-z3solver/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.5 2022/01/04 20:54:18 wiz Exp $ +# $NetBSD: Makefile,v 1.6 2022/01/05 15:41:15 wiz Exp $ DISTNAME= z3-solver-4.8.9.0 PKGNAME= ${PYPKGPREFIX}-z3solver-4.8.9.0 -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= math MASTER_SITES= ${MASTER_SITE_PYPI:=z/z3-solver/} @@ -13,6 +13,8 @@ LICENSE= mit USE_LANGUAGES= c c++ +USE_PKG_RESOURCES= yes + CONFLICTS+= z3-[0-9]* .include "../../lang/python/egg.mk" |