summaryrefslogtreecommitdiff
path: root/math
diff options
context:
space:
mode:
authordrochner <drochner@pkgsrc.org>2005-02-25 17:10:09 +0000
committerdrochner <drochner@pkgsrc.org>2005-02-25 17:10:09 +0000
commit810dd32b3f818450a288f7d88f2fe5e9423fa991 (patch)
treeb8aefbedfa4f8afde00c9d67a03d2b2d63744f7a /math
parent78d5917102edcc4f12b50397552e7e3fc735672b (diff)
downloadpkgsrc-810dd32b3f818450a288f7d88f2fe5e9423fa991.tar.gz
update to 23.7
changes: -Added empty as command for creating an empty array (much faster than zeros) -fixes
Diffstat (limited to 'math')
-rw-r--r--math/py-Numeric/Makefile6
-rw-r--r--math/py-Numeric/distinfo10
-rw-r--r--math/py-Numeric/patches/patch-ab28
3 files changed, 21 insertions, 23 deletions
diff --git a/math/py-Numeric/Makefile b/math/py-Numeric/Makefile
index 68dd772fcd6..2c5fbf8fc47 100644
--- a/math/py-Numeric/Makefile
+++ b/math/py-Numeric/Makefile
@@ -1,12 +1,12 @@
-# $NetBSD: Makefile,v 1.36 2004/08/24 11:29:33 drochner Exp $
+# $NetBSD: Makefile,v 1.37 2005/02/25 17:10:09 drochner Exp $
-DISTNAME= Numeric-23.3
+DISTNAME= Numeric-23.7
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= math python
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=numpy/}
MAINTAINER= tsarna@NetBSD.org
-HOMEPAGE= http://www.pfdubois.com/numpy/
+HOMEPAGE= http://numeric.scipy.org/
COMMENT= Adds multidimensional numeric arrays to Python
USE_BUILDLINK3= yes
diff --git a/math/py-Numeric/distinfo b/math/py-Numeric/distinfo
index 0bcbdb8aed4..a717d233b8b 100644
--- a/math/py-Numeric/distinfo
+++ b/math/py-Numeric/distinfo
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.11 2005/02/23 12:06:57 agc Exp $
+$NetBSD: distinfo,v 1.12 2005/02/25 17:10:09 drochner Exp $
-SHA1 (Numeric-23.3.tar.gz) = 335cfc7a32e906775f37516c37c005d867ef7fb5
-RMD160 (Numeric-23.3.tar.gz) = 71f9f3b207bc10ce1127910ee3c41b197fc496a3
-Size (Numeric-23.3.tar.gz) = 724568 bytes
+SHA1 (Numeric-23.7.tar.gz) = 3fe90c14692c9fe9da0d4202df4036e8ecfdd365
+RMD160 (Numeric-23.7.tar.gz) = 1ff89d0e809c97b5cc06184676503bfee12c2fcd
+Size (Numeric-23.7.tar.gz) = 725824 bytes
SHA1 (patch-aa) = 0096fe9de4c3912cdefd3278385edd4b7f55cf63
-SHA1 (patch-ab) = 037e2dca067cfdde613be1ee5c772a1d1884f580
+SHA1 (patch-ab) = 26f8c8bbd2bd74b5fcefb474d66d5d1fd411fbd4
diff --git a/math/py-Numeric/patches/patch-ab b/math/py-Numeric/patches/patch-ab
index 53db017a3a1..f2c7c32bae5 100644
--- a/math/py-Numeric/patches/patch-ab
+++ b/math/py-Numeric/patches/patch-ab
@@ -1,15 +1,15 @@
-$NetBSD: patch-ab,v 1.7 2004/08/24 11:29:33 drochner Exp $
+$NetBSD: patch-ab,v 1.8 2005/02/25 17:10:09 drochner Exp $
---- setup.py.orig 2004-06-07 23:52:01.000000000 +0200
+--- setup.py.orig 2005-01-06 23:16:13.000000000 +0100
+++ setup.py
-@@ -33,21 +33,24 @@ elif sys.platform in ['mac', 'beos5']:
+@@ -33,19 +33,22 @@ elif sys.platform in ['mac', 'beos5']:
# delete all but the first one in this list if using your own LAPACK/BLAS
sourcelist = [os.path.join('Src', 'lapack_litemodule.c'),
--# os.path.join('Src', 'blas_lite.c'),
--# os.path.join('Src', 'f2c_lite.c'),
--# os.path.join('Src', 'zlapack_lite.c'),
--# os.path.join('Src', 'dlapack_lite.c')
+- #os.path.join('Src', 'blas_lite.c'),
+- #os.path.join('Src', 'f2c_lite.c'),
+- #os.path.join('Src', 'zlapack_lite.c'),
+- #os.path.join('Src', 'dlapack_lite.c')
+ os.path.join('Src', 'blas_lite.c'),
+ os.path.join('Src', 'f2c_lite.c'),
+ os.path.join('Src', 'zlapack_lite.c'),
@@ -23,15 +23,13 @@ $NetBSD: patch-ab,v 1.7 2004/08/24 11:29:33 drochner Exp $
+#library_dirs_list = ['/usr/lib/atlas']
+libraries_list = []
+#libraries_list = ['lapack', 'cblas', 'f77blas', 'atlas', 'g2c']
- # if you also set `use_dotblas` (see below), you'll need:
- # ['lapack', 'cblas', 'f77blas', 'atlas', 'g2c']
# set to true (1), if you also want BLAS optimized matrixmultiply/dot/innerproduct
--use_dotblas = 1
--include_dirs = ['/usr/include/atlas'] # You may need to set this to find cblas.h
+-use_dotblas = 1
+-include_dirs = ['/usr/include/atlas']
+use_dotblas = 0
+include_dirs = []
-+#include_dirs = ['/usr/include/atlas'] # You may need to set this to find cblas.h
- # e.g. on UNIX using ATLAS this should be ['/usr/include/atlas']
-
- # The packages are split in this way to allow future optional inclusion
++#include_dirs = ['/usr/include/atlas']
+ # You may need to set this to find cblas.h
+ # e.g. on UNIX using ATLAS this should be ['/usr/include/atlas']
+ extra_link_args = []