diff options
author | drochner <drochner@pkgsrc.org> | 2001-09-25 17:44:31 +0000 |
---|---|---|
committer | drochner <drochner@pkgsrc.org> | 2001-09-25 17:44:31 +0000 |
commit | bc759b7f17bf1fd5c8014c2d9df9b6fc27bef133 (patch) | |
tree | 17503288271ef001fc4ffd51864a13fe4390730d | |
parent | 91baa3c0ae7191a6279b35dc26976e136fb3e940 (diff) | |
download | pkgsrc-bc759b7f17bf1fd5c8014c2d9df9b6fc27bef133.tar.gz |
-switch to use the new ../../lang/python/extension.buildlink.mk instead of
USE_PYTHON (as a testcase, more or less)
-update to 20.2.1, Changes:
-bugfixes
-Lapack update
-Implemented equality and inequality testing for arrays of characters,
complex numbers, and objects (T. Oliphant)
-In RandomArray.py, improved implementation of internal routine
_build_random_array
-Removed tabs from MLab.py and RandomArray.py
-Improved test in RandomArray
-rw-r--r-- | math/py-Numeric/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/math/py-Numeric/Makefile b/math/py-Numeric/Makefile index 3f459087369..f1a42467fc4 100644 --- a/math/py-Numeric/Makefile +++ b/math/py-Numeric/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.22 2001/07/11 10:32:00 drochner Exp $ +# $NetBSD: Makefile,v 1.23 2001/09/25 17:44:31 drochner Exp $ -DISTNAME= Numeric-20.1.0 -PKGNAME= py-Numeric-20.1.0 +DISTNAME= Numeric-20.2.1 CATEGORIES= math MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=numpy/} @@ -9,9 +8,11 @@ MAINTAINER= tsarna@netbsd.org HOMEPAGE= http://www.pfdubois.com/numpy/ COMMENT= Adds multidimensional numeric arrays to Python -USE_PYTHON= yes +PYTHON_VERSIONS_ACCEPTED= 21 20 PYDISTUTILSPKG= yes PYBINMODULE= yes PYSETUP= setup_all.py +.include "../../lang/python/extension.buildlink.mk" +PKGNAME= ${PYPKGPREFIX}-${DISTNAME} .include "../../mk/bsd.pkg.mk" |