diff options
author | gutteridge <gutteridge@pkgsrc.org> | 2022-04-10 00:57:13 +0000 |
---|---|---|
committer | gutteridge <gutteridge@pkgsrc.org> | 2022-04-10 00:57:13 +0000 |
commit | 8677ad2fe58c3497b77044e78b60b5427303c898 (patch) | |
tree | 2a2941248a9f4cf3cf6eccd7c8aa04528a96b882 | |
parent | 76053286025bc3f09ba257a81fff463de80a0891 (diff) | |
download | pkgsrc-8677ad2fe58c3497b77044e78b60b5427303c898.tar.gz |
Fix build breakage from py-scipy now being Python >= 3.8
-rw-r--r-- | finance/py-empyrical/Makefile | 4 | ||||
-rw-r--r-- | finance/py-fecon235/Makefile | 4 | ||||
-rw-r--r-- | geography/py-obspy/Makefile | 4 | ||||
-rw-r--r-- | graphics/py-matplotlib-venn/Makefile | 4 | ||||
-rw-r--r-- | graphics/py-seaborn/Makefile | 4 | ||||
-rw-r--r-- | ham/gnuradio-core/Makefile.common | 4 | ||||
-rw-r--r-- | math/py-Theano/Makefile | 4 | ||||
-rw-r--r-- | math/py-abcpmc/Makefile | 4 | ||||
-rw-r--r-- | math/py-arviz/Makefile | 4 | ||||
-rw-r--r-- | math/py-astropy/Makefile | 4 | ||||
-rw-r--r-- | math/py-gwcs/Makefile | 4 | ||||
-rw-r--r-- | math/py-lmfit/Makefile | 4 | ||||
-rw-r--r-- | math/py-pandas/Makefile | 4 | ||||
-rw-r--r-- | math/py-powerlaw/Makefile | 4 | ||||
-rw-r--r-- | math/py-pymc3/Makefile | 4 | ||||
-rw-r--r-- | math/py-scikit-image/Makefile | 4 | ||||
-rw-r--r-- | math/py-scikit-learn/Makefile | 4 | ||||
-rw-r--r-- | math/py-statsmodels/Makefile | 4 | ||||
-rw-r--r-- | x11/py-qtgraph-qt5/Makefile | 4 |
19 files changed, 38 insertions, 38 deletions
diff --git a/finance/py-empyrical/Makefile b/finance/py-empyrical/Makefile index 1923bc646da..48be7879f9a 100644 --- a/finance/py-empyrical/Makefile +++ b/finance/py-empyrical/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.5 2022/01/04 20:53:53 wiz Exp $ +# $NetBSD: Makefile,v 1.6 2022/04/10 00:57:13 gutteridge Exp $ DISTNAME= empyrical-0.5.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -19,7 +19,7 @@ DEPENDS+= ${PYPKGPREFIX}-scipy>=0.15.1:../../math/py-scipy USE_LANGUAGES= # none -PYTHON_VERSIONS_INCOMPATIBLE= 27 # py-scipy +PYTHON_VERSIONS_INCOMPATIBLE= 27 37 # py-scipy .include "../../lang/python/egg.mk" .include "../../mk/bsd.pkg.mk" diff --git a/finance/py-fecon235/Makefile b/finance/py-fecon235/Makefile index c458f1b0c15..af69eb99896 100644 --- a/finance/py-fecon235/Makefile +++ b/finance/py-fecon235/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.5 2021/12/30 13:05:32 adam Exp $ +# $NetBSD: Makefile,v 1.6 2022/04/10 00:57:13 gutteridge Exp $ GITHUB_PROJECT= fecon235 GITHUB_TAG= v5.17.0722 @@ -23,7 +23,7 @@ DEPENDS+= ${PYPKGPREFIX}-sympy-[0-9]*:../../math/py-sympy USE_LANGUAGES= # none -PYTHON_VERSIONS_INCOMPATIBLE= 27 # py-matplotlib, py-scipy +PYTHON_VERSIONS_INCOMPATIBLE= 27 37 # py-matplotlib, py-scipy NO_BUILD= yes PY_PATCHPLIST= yes diff --git a/geography/py-obspy/Makefile b/geography/py-obspy/Makefile index 57b4983c0f7..60c8dafdc1a 100644 --- a/geography/py-obspy/Makefile +++ b/geography/py-obspy/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.21 2022/01/05 15:41:11 wiz Exp $ +# $NetBSD: Makefile,v 1.22 2022/04/10 00:57:13 gutteridge Exp $ DISTNAME= obspy-1.2.2 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -25,7 +25,7 @@ USE_TOOLS+= bash:run REPLACE_BASH= obspy/taup/tests/data/TauP_test_data/gendata.sh -PYTHON_VERSIONS_INCOMPATIBLE= 27 # py-scipy +PYTHON_VERSIONS_INCOMPATIBLE= 27 37 # py-scipy USE_PKG_RESOURCES= yes diff --git a/graphics/py-matplotlib-venn/Makefile b/graphics/py-matplotlib-venn/Makefile index 746ba2855d5..28f57bf0809 100644 --- a/graphics/py-matplotlib-venn/Makefile +++ b/graphics/py-matplotlib-venn/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.5 2022/01/04 20:54:06 wiz Exp $ +# $NetBSD: Makefile,v 1.6 2022/04/10 00:57:13 gutteridge Exp $ DISTNAME= matplotlib-venn-0.11.6 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -15,7 +15,7 @@ DEPENDS+= ${PYPKGPREFIX}-matplotlib-[0-9]*:../../graphics/py-matplotlib DEPENDS+= ${PYPKGPREFIX}-numpy-[0-9]*:../../math/py-numpy DEPENDS+= ${PYPKGPREFIX}-scipy-[0-9]*:../../math/py-scipy -PYTHON_VERSIONS_INCOMPATIBLE= 27 # py-scipy +PYTHON_VERSIONS_INCOMPATIBLE= 27 37 # py-scipy .include "../../lang/python/egg.mk" .include "../../mk/bsd.pkg.mk" diff --git a/graphics/py-seaborn/Makefile b/graphics/py-seaborn/Makefile index 859d301ba3b..851b41ac63d 100644 --- a/graphics/py-seaborn/Makefile +++ b/graphics/py-seaborn/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.8 2022/01/04 20:54:07 wiz Exp $ +# $NetBSD: Makefile,v 1.9 2022/04/10 00:57:14 gutteridge Exp $ DISTNAME= seaborn-0.9.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -18,7 +18,7 @@ DEPENDS+= ${PYPKGPREFIX}-scipy>=0.14.0:../../math/py-scipy USE_LANGUAGES= # none -PYTHON_VERSIONS_INCOMPATIBLE= 27 # py-matplotlib, py-scipy +PYTHON_VERSIONS_INCOMPATIBLE= 27 37 # py-matplotlib, py-scipy .include "../../lang/python/egg.mk" .include "../../mk/bsd.pkg.mk" diff --git a/ham/gnuradio-core/Makefile.common b/ham/gnuradio-core/Makefile.common index 1c41b63b39b..e01cfc5218c 100644 --- a/ham/gnuradio-core/Makefile.common +++ b/ham/gnuradio-core/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.39 2022/02/20 11:03:43 mef Exp $ +# $NetBSD: Makefile.common,v 1.40 2022/04/10 01:05:34 gutteridge Exp $ # This Makefile fragment is included in the package Makefiles for # GNU Radio distributed packages (they all share common configure and build # settings). @@ -54,7 +54,7 @@ DISTINFO_FILE= ${.CURDIR}/../../ham/gnuradio-core/distinfo PATCHDIR= ${.CURDIR}/../../ham/gnuradio-core/patches # see CMakeLists.txt GR_PYTHON_MIN_VERSION -PYTHON_VERSIONS_INCOMPATIBLE= 27 +PYTHON_VERSIONS_INCOMPATIBLE= 27 37 # py-scipy PLIST_SUBST+= PYVERSSUFFIX=${PYVERSSUFFIX} PLIST_SUBST+= PYSITELIB=${PYSITELIB} diff --git a/math/py-Theano/Makefile b/math/py-Theano/Makefile index 467fff4d35f..178da50c6fc 100644 --- a/math/py-Theano/Makefile +++ b/math/py-Theano/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.10 2022/01/05 15:41:13 wiz Exp $ +# $NetBSD: Makefile,v 1.11 2022/04/10 00:57:14 gutteridge Exp $ DISTNAME= Theano-1.0.4 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -26,7 +26,7 @@ REPLACE.bash.old= .*/bin/bash REPLACE.bash.new= ${SH} REPLACE_FILES.bash= theano/misc/check_blas_many.sh -PYTHON_VERSIONS_INCOMPATIBLE= 27 # py-scipy +PYTHON_VERSIONS_INCOMPATIBLE= 27 37 # py-scipy USE_PKG_RESOURCES= yes diff --git a/math/py-abcpmc/Makefile b/math/py-abcpmc/Makefile index 950dd354aa4..1208acae5a0 100644 --- a/math/py-abcpmc/Makefile +++ b/math/py-abcpmc/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.7 2022/01/04 20:54:12 wiz Exp $ +# $NetBSD: Makefile,v 1.8 2022/04/10 00:57:14 gutteridge Exp $ DISTNAME= abcpmc-0.1.2 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -21,7 +21,7 @@ TEST_DEPENDS+= ${PYPKGPREFIX}-six-[0-9]*:../../lang/py-six USE_LANGUAGES= # none -PYTHON_VERSIONS_INCOMPATIBLE= 27 # py-scipy +PYTHON_VERSIONS_INCOMPATIBLE= 27 37 # py-scipy .include "../../lang/python/egg.mk" .include "../../mk/bsd.pkg.mk" diff --git a/math/py-arviz/Makefile b/math/py-arviz/Makefile index ce7292400b7..626553f5657 100644 --- a/math/py-arviz/Makefile +++ b/math/py-arviz/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.8 2022/02/10 14:21:59 adam Exp $ +# $NetBSD: Makefile,v 1.9 2022/04/10 00:57:14 gutteridge Exp $ DISTNAME= arviz-0.11.4 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -21,7 +21,7 @@ DEPENDS+= ${PYPKGPREFIX}-xarray>=0.16.1:../../math/py-xarray USE_LANGUAGES= # none -PYTHON_VERSIONS_INCOMPATIBLE= 27 37 # py-xarray +PYTHON_VERSIONS_INCOMPATIBLE= 27 37 # py-xarray, py-scipy .include "../../lang/python/egg.mk" .include "../../mk/bsd.pkg.mk" diff --git a/math/py-astropy/Makefile b/math/py-astropy/Makefile index f19f1d0bf48..76da1a6c24b 100644 --- a/math/py-astropy/Makefile +++ b/math/py-astropy/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 2022/01/05 15:41:13 wiz Exp $ +# $NetBSD: Makefile,v 1.5 2022/04/10 00:57:14 gutteridge Exp $ DISTNAME= astropy-4.2 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -31,7 +31,7 @@ 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 +PYTHON_VERSIONS_INCOMPATIBLE= 27 37 # py-scipy USE_PKG_RESOURCES= yes diff --git a/math/py-gwcs/Makefile b/math/py-gwcs/Makefile index 94e8f5a7e01..3c9fea17519 100644 --- a/math/py-gwcs/Makefile +++ b/math/py-gwcs/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2022/01/04 20:54:13 wiz Exp $ +# $NetBSD: Makefile,v 1.4 2022/04/10 00:57:14 gutteridge Exp $ DISTNAME= gwcs-0.15.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -11,7 +11,7 @@ HOMEPAGE= https://gwcs.readthedocs.io/en/latest/ COMMENT= Generalized World Coordinate System LICENSE= modified-bsd -PYTHON_VERSIONS_INCOMPATIBLE= 27 +PYTHON_VERSIONS_INCOMPATIBLE= 27 37 # py-scipy DEPENDS+= ${PYPKGPREFIX}-scipy>=1.1:../../math/py-scipy DEPENDS+= ${PYPKGPREFIX}-astropy>=4.2:../../math/py-astropy diff --git a/math/py-lmfit/Makefile b/math/py-lmfit/Makefile index 012f4ce2798..9c5ae2526eb 100644 --- a/math/py-lmfit/Makefile +++ b/math/py-lmfit/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.15 2022/01/04 20:54:14 wiz Exp $ +# $NetBSD: Makefile,v 1.16 2022/04/10 00:57:14 gutteridge Exp $ DISTNAME= lmfit-1.0.3 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -20,7 +20,7 @@ TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test USE_LANGUAGES= # none -PYTHON_VERSIONS_INCOMPATIBLE= 27 # py-scipy +PYTHON_VERSIONS_INCOMPATIBLE= 27 37 # py-scipy .include "../../lang/python/egg.mk" .include "../../mk/bsd.pkg.mk" diff --git a/math/py-pandas/Makefile b/math/py-pandas/Makefile index 9413a910eb7..429a223166a 100644 --- a/math/py-pandas/Makefile +++ b/math/py-pandas/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.38 2022/04/09 21:33:50 gutteridge Exp $ +# $NetBSD: Makefile,v 1.39 2022/04/10 00:57:14 gutteridge Exp $ DISTNAME= pandas-1.3.5 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -28,7 +28,7 @@ USE_LANGUAGES= c c++ PYSETUPTESTTARGET= pytest -PYTHON_VERSIONS_INCOMPATIBLE= 27 +PYTHON_VERSIONS_INCOMPATIBLE= 27 37 # py-scipy .include "../../lang/python/egg.mk" BUILDLINK_API_DEPENDS.py-numpy+= ${PYPKGPREFIX}-numpy>=1.16.5 diff --git a/math/py-powerlaw/Makefile b/math/py-powerlaw/Makefile index 86294a825e4..fc986a6baa8 100644 --- a/math/py-powerlaw/Makefile +++ b/math/py-powerlaw/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.7 2022/01/04 20:54:15 wiz Exp $ +# $NetBSD: Makefile,v 1.8 2022/04/10 00:57:14 gutteridge Exp $ DISTNAME= powerlaw-1.4.6 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -18,7 +18,7 @@ DEPENDS+= ${PYPKGPREFIX}-scipy-[0-9]*:../../math/py-scipy USE_LANGUAGES= # none -PYTHON_VERSIONS_INCOMPATIBLE= 27 # py-matplotlib, py-scipy +PYTHON_VERSIONS_INCOMPATIBLE= 27 37 # py-matplotlib, py-scipy .include "../../devel/py-cython/buildlink3.mk" .include "../../lang/python/egg.mk" diff --git a/math/py-pymc3/Makefile b/math/py-pymc3/Makefile index a8df0414e84..ef12c4a26ca 100644 --- a/math/py-pymc3/Makefile +++ b/math/py-pymc3/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 2022/01/04 20:54:16 wiz Exp $ +# $NetBSD: Makefile,v 1.7 2022/04/10 00:57:15 gutteridge Exp $ DISTNAME= pymc3-3.7 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -20,7 +20,7 @@ DEPENDS+= ${PYPKGPREFIX}-patsy>=0.4.0:../../math/py-patsy DEPENDS+= ${PYPKGPREFIX}-scipy>=0.18.1:../../math/py-scipy DEPENDS+= ${PYPKGPREFIX}-tqdm>=4.8.4:../../misc/py-tqdm -PYTHON_VERSIONS_INCOMPATIBLE= 27 # py-matplotlib, py-scipy +PYTHON_VERSIONS_INCOMPATIBLE= 27 37 # py-matplotlib, py-scipy .include "../../lang/python/egg.mk" .include "../../mk/bsd.pkg.mk" diff --git a/math/py-scikit-image/Makefile b/math/py-scikit-image/Makefile index c5dc03309e9..ad22632c2a3 100644 --- a/math/py-scikit-image/Makefile +++ b/math/py-scikit-image/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.13 2022/01/05 15:41:14 wiz Exp $ +# $NetBSD: Makefile,v 1.14 2022/04/10 00:57:15 gutteridge Exp $ DISTNAME= scikit-image-0.18.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -24,7 +24,7 @@ DEPENDS+= ${PYPKGPREFIX}-six>=1.9.0:../../lang/py-six USE_LANGUAGES= c c++ -PYTHON_VERSIONS_INCOMPATIBLE= 27 # py-tifffile +PYTHON_VERSIONS_INCOMPATIBLE= 27 37 # py-tifffile, py-scipy USE_PKG_RESOURCES= yes diff --git a/math/py-scikit-learn/Makefile b/math/py-scikit-learn/Makefile index 33d2ecd15be..d6dbe921426 100644 --- a/math/py-scikit-learn/Makefile +++ b/math/py-scikit-learn/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.17 2022/01/04 20:54:17 wiz Exp $ +# $NetBSD: Makefile,v 1.18 2022/04/10 00:57:15 gutteridge Exp $ DISTNAME= scikit-learn-0.22.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -17,7 +17,7 @@ TEST_DEPENDS+= ${PYPKGPREFIX}-test-runner-[0-9]*:../../devel/py-test-runner USE_LANGUAGES= c c++ fortran -PYTHON_VERSIONS_INCOMPATIBLE= 27 # py-scipy +PYTHON_VERSIONS_INCOMPATIBLE= 27 37 # py-scipy .include "../../devel/py-cython/buildlink3.mk" .include "../../lang/python/egg.mk" diff --git a/math/py-statsmodels/Makefile b/math/py-statsmodels/Makefile index 266d87a7b02..39b04886836 100644 --- a/math/py-statsmodels/Makefile +++ b/math/py-statsmodels/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.11 2022/01/04 20:54:17 wiz Exp $ +# $NetBSD: Makefile,v 1.12 2022/04/10 00:57:15 gutteridge Exp $ DISTNAME= statsmodels-0.12.2 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -11,7 +11,7 @@ HOMEPAGE= https://www.statsmodels.org/ COMMENT= Statistical computations and models for Python LICENSE= modified-bsd -PYTHON_VERSIONS_INCOMPATIBLE= 27 # py-scipy +PYTHON_VERSIONS_INCOMPATIBLE= 27 37 # py-scipy USE_LANGUAGES= c BUILD_DEPENDS+= ${PYPKGPREFIX}-cython>=0.29:../../devel/py-cython diff --git a/x11/py-qtgraph-qt5/Makefile b/x11/py-qtgraph-qt5/Makefile index 128c4f1e5cf..d85155a868f 100644 --- a/x11/py-qtgraph-qt5/Makefile +++ b/x11/py-qtgraph-qt5/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2022/01/04 20:55:40 wiz Exp $ +# $NetBSD: Makefile,v 1.4 2022/04/10 00:57:15 gutteridge Exp $ DISTNAME= pyqtgraph-0.12.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/pyqtgraph/qtgraph-qt5/} @@ -20,7 +20,7 @@ DEPENDS+= ${PYPKGPREFIX}-OpenGL-[0-9]*:../../graphics/py-OpenGL USE_LANGUAGES= # none -PYTHON_VERSIONS_INCOMPATIBLE= 27 +PYTHON_VERSIONS_INCOMPATIBLE= 27 37 # py-scipy .include "../../lang/python/egg.mk" .include "../../x11/py-qt5/buildlink3.mk" |