diff options
author | adam <adam@pkgsrc.org> | 2019-09-02 13:19:35 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2019-09-02 13:19:35 +0000 |
commit | 77e07989540405e14ae0f3af5dc2d76d75532797 (patch) | |
tree | 698d3960598fa1d41f5a80411323ce184dbefe95 /math | |
parent | f192c1899e81d80dcbf1d6471f89cfd621b11e84 (diff) | |
download | pkgsrc-77e07989540405e14ae0f3af5dc2d76d75532797.tar.gz |
Changed PYTHON_VERSIONS_INCOMPATIBLE to PYTHON_VERSIONS_ACCEPTED; needed for future Python 3.8
Diffstat (limited to 'math')
-rw-r--r-- | math/gnumeric112/Makefile | 4 | ||||
-rw-r--r-- | math/py-Numeric/Makefile | 4 | ||||
-rw-r--r-- | math/py-Scientific/Makefile | 4 | ||||
-rw-r--r-- | math/py-cdecimal/Makefile | 4 | ||||
-rw-r--r-- | math/py-fftw/Makefile | 4 | ||||
-rw-r--r-- | math/py-fpconst/Makefile | 4 | ||||
-rw-r--r-- | math/py-numarray/Makefile | 4 |
7 files changed, 14 insertions, 14 deletions
diff --git a/math/gnumeric112/Makefile b/math/gnumeric112/Makefile index 12311c86046..0a3d24570d1 100644 --- a/math/gnumeric112/Makefile +++ b/math/gnumeric112/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.59 2019/08/11 13:21:44 wiz Exp $ +# $NetBSD: Makefile,v 1.60 2019/09/02 13:20:00 adam Exp $ DISTNAME= gnumeric-1.12.45 PKGREVISION= 1 @@ -29,7 +29,7 @@ TEST_TARGET= check CONFIGURE_ARGS+= --with-python CONFIGURE_ENV+= PYTHON=${PYTHONBIN:Q} -PYTHON_VERSIONS_INCOMPATIBLE= 36 37 # not yet ported as of 1.12.9 +PYTHON_VERSIONS_ACCEPTED= 27 # not yet ported as of 1.12.9 #CONFIGURE_ARGS+= --with-gnome diff --git a/math/py-Numeric/Makefile b/math/py-Numeric/Makefile index f69c6e4ba7f..f6295baf878 100644 --- a/math/py-Numeric/Makefile +++ b/math/py-Numeric/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.59 2019/04/26 14:12:41 maya Exp $ +# $NetBSD: Makefile,v 1.60 2019/09/02 13:20:00 adam Exp $ DISTNAME= Numeric-24.2 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -11,7 +11,7 @@ HOMEPAGE= http://www.numpy.org/ COMMENT= Adds multidimensional numeric arrays to Python PYSETUP= setup.py -PYTHON_VERSIONS_INCOMPATIBLE= 36 37 # not yet ported as of 24.2 +PYTHON_VERSIONS_ACCEPTED= 27 # not yet ported as of 24.2 PLIST_VARS+= blas .if exists(/System/Library/Frameworks/vecLib.framework) diff --git a/math/py-Scientific/Makefile b/math/py-Scientific/Makefile index 4ac5f7bc291..54cc101b5ad 100644 --- a/math/py-Scientific/Makefile +++ b/math/py-Scientific/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.60 2019/08/22 12:23:30 ryoon Exp $ +# $NetBSD: Makefile,v 1.61 2019/09/02 13:20:00 adam Exp $ DISTNAME= ScientificPython-2.8.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/Python//} @@ -20,7 +20,7 @@ MAKE_ENV+= NETCDF_PREFIX=${BUILDLINK_PREFIX.netcdf} PYPLAT_CMD= ${PYTHONBIN} -c "import sys; print sys.platform" PLIST_SUBST+= PYPLAT=${PYPLAT_CMD:sh} -PYTHON_VERSIONS_INCOMPATIBLE= 36 37 # not yet ported as of 2.8.1 +PYTHON_VERSIONS_ACCEPTED= 27 # not yet ported as of 2.8.1 INSTALLATION_DIRS= bin diff --git a/math/py-cdecimal/Makefile b/math/py-cdecimal/Makefile index 7597a98032c..d3ab230959f 100644 --- a/math/py-cdecimal/Makefile +++ b/math/py-cdecimal/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.8 2019/04/26 13:14:04 maya Exp $ +# $NetBSD: Makefile,v 1.9 2019/09/02 13:20:00 adam Exp $ DISTNAME= cdecimal-2.3 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -17,7 +17,7 @@ USE_LANGUAGES= c GNU_CONFIGURE= yes #PKG_FAIL_REASON+= "${DISTNAME} is obsoleted by the builtin \`decimal\` in python3.3." -PYTHON_VERSIONS_INCOMPATIBLE= 36 37 +PYTHON_VERSIONS_ACCEPTED= 27 #.include "../../devel/gmp/buildlink3.mk" .include "../../lang/python/distutils.mk" diff --git a/math/py-fftw/Makefile b/math/py-fftw/Makefile index 135e4d06dd2..9f20c15623a 100644 --- a/math/py-fftw/Makefile +++ b/math/py-fftw/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.8 2019/04/26 13:14:04 maya Exp $ +# $NetBSD: Makefile,v 1.9 2019/09/02 13:20:00 adam Exp $ DISTNAME= PyFFTW3-0.2.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/Py//S/FFTW/fftw/S/3//} @@ -13,7 +13,7 @@ LICENSE= gnu-gpl-v3 USE_LANGUAGES= c -PYTHON_VERSIONS_INCOMPATIBLE= 36 37 # as of 0.2.1 +PYTHON_VERSIONS_ACCEPTED= 27 # as of 0.2.1 MAKE_ENV+= FFTW_PATH=${PREFIX}/lib diff --git a/math/py-fpconst/Makefile b/math/py-fpconst/Makefile index e007f5c1b38..597de6f7423 100644 --- a/math/py-fpconst/Makefile +++ b/math/py-fpconst/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.19 2019/04/26 14:12:41 maya Exp $ +# $NetBSD: Makefile,v 1.20 2019/09/02 13:20:00 adam Exp $ DISTNAME= fpconst-0.7.2 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -10,7 +10,7 @@ HOMEPAGE= https://pypi.python.org/pypi/fpconst COMMENT= IEEE 754 floating point special handling for Python PYDISTUTILSPKG= yes -PYTHON_VERSIONS_INCOMPATIBLE= 36 37 # not yet ported as of 0.7.2 +PYTHON_VERSIONS_ACCEPTED= 27 # not yet ported as of 0.7.2 .include "../../lang/python/extension.mk" .include "../../mk/bsd.pkg.mk" diff --git a/math/py-numarray/Makefile b/math/py-numarray/Makefile index 90789e06ea0..9cd6cca1d49 100644 --- a/math/py-numarray/Makefile +++ b/math/py-numarray/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.26 2019/04/26 14:12:42 maya Exp $ +# $NetBSD: Makefile,v 1.27 2019/09/02 13:20:00 adam Exp $ DISTNAME= numarray-1.5.2 PKGNAME= ${PYPKGPREFIX}-numarray-1.5.2 @@ -15,7 +15,7 @@ PLIST_VARS+= blas PLIST.blas= yes .endif -PYTHON_VERSIONS_INCOMPATIBLE= 36 37 # not yet ported as of 1.5.2; use py-numpy +PYTHON_VERSIONS_ACCEPTED= 27 # not yet ported as of 1.5.2; use py-numpy do-test: (cd ${WRKSRC}/Lib && ${PYTHONBIN} testall.py) |