diff options
author | Dmitry Sivachenko <demon@FreeBSD.org> | 2013-05-20 06:20:28 +0000 |
---|---|---|
committer | Dmitry Sivachenko <demon@FreeBSD.org> | 2013-05-20 06:20:28 +0000 |
commit | 7730f0e5e3ff921a84b705f6d3b11cc774570dcb (patch) | |
tree | 7ed64dab186fb0fb7b6eeab2ae52a82f024b8292 /math/py-numpy/files | |
parent | Optionify libnotify dependency. (diff) |
Update to version 1.7.0 (and unbreak with python-3.3).
PR: 178256
Submitted by: Roland Smith <rsmith@xs4all.nl>
Approved by: maintainer
Diffstat (limited to 'math/py-numpy/files')
-rw-r--r-- | math/py-numpy/files/patch-numpy-distutils-system_info.py | 18 |
1 files changed, 5 insertions, 13 deletions
diff --git a/math/py-numpy/files/patch-numpy-distutils-system_info.py b/math/py-numpy/files/patch-numpy-distutils-system_info.py index 8f3279bb63ee..e3435c1ad5c1 100644 --- a/math/py-numpy/files/patch-numpy-distutils-system_info.py +++ b/math/py-numpy/files/patch-numpy-distutils-system_info.py @@ -1,9 +1,9 @@ ---- numpy/distutils/system_info.py.orig 2011-07-01 22:31:13.000000000 +0100 -+++ numpy/distutils/system_info.py 2011-11-26 09:54:54.000000000 +0000 -@@ -910,8 +910,8 @@ +--- numpy/distutils/system_info.py.orig 2013-02-09 22:04:56.000000000 +0100 ++++ numpy/distutils/system_info.py 2013-03-22 21:01:34.000000000 +0100 +@@ -983,8 +983,8 @@ dir_env_var = 'ATLAS' - _lib_names = ['f77blas','cblas'] - if sys.platform[:7]=='freebsd': + _lib_names = ['f77blas', 'cblas'] + if sys.platform[:7] == 'freebsd': - _lib_atlas = ['atlas_r'] - _lib_lapack = ['alapack_r'] + _lib_atlas = ['atlas'] @@ -11,11 +11,3 @@ else: _lib_atlas = ['atlas'] _lib_lapack = ['lapack'] -@@ -939,6 +939,7 @@ - atlas = self.check_libs2(d,atlas_libs,[]) - lapack_atlas = self.check_libs2(d,['lapack_atlas'],[]) - if atlas is not None: -+ atlas['libraries'].extend(['gfortran', 'm', 'pthread']) - lib_dirs2 = [d] + self.combine_paths(d,['atlas*','ATLAS*']) - for d2 in lib_dirs2: - lapack = self.check_libs2(d2,lapack_libs,[]) |