summaryrefslogtreecommitdiff
path: root/math
diff options
context:
space:
mode:
authorjperkin <jperkin@pkgsrc.org>2020-03-26 08:33:35 +0000
committerjperkin <jperkin@pkgsrc.org>2020-03-26 08:33:35 +0000
commit739fd3afff6ce3880fe2b5bc0bd89b1f8ed86ee5 (patch)
tree3aa4fad858799d19375c76cea47092977f3bec62 /math
parent82bbe23095aea69d6a09901315e4bd001e0a16dc (diff)
downloadpkgsrc-739fd3afff6ce3880fe2b5bc0bd89b1f8ed86ee5.tar.gz
py-numpy: Remove bogus empty string argument.
Introduced 5 years ago due to variable expansion being committed, the variable in question is no longer required. Noticed by Dr. Thomas Orgis.
Diffstat (limited to 'math')
-rw-r--r--math/py-numpy/distinfo4
-rw-r--r--math/py-numpy/patches/patch-numpy_distutils_fcompiler_gnu.py6
2 files changed, 5 insertions, 5 deletions
diff --git a/math/py-numpy/distinfo b/math/py-numpy/distinfo
index 0eaea04cdf7..a735ab06091 100644
--- a/math/py-numpy/distinfo
+++ b/math/py-numpy/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.46 2020/01/30 23:34:28 minskim Exp $
+$NetBSD: distinfo,v 1.47 2020/03/26 08:33:35 jperkin Exp $
SHA1 (numpy-1.16.6.zip) = 99bc8b723639066168cca0c9a3b68c36c73bddc2
RMD160 (numpy-1.16.6.zip) = af2c5ec5956986b061a5cf067de5685098b6846f
@@ -6,6 +6,6 @@ SHA512 (numpy-1.16.6.zip) = c219841cc804c194a38b8e046b83265b8b7a35be8f33d68561ef
Size (numpy-1.16.6.zip) = 5143340 bytes
SHA1 (patch-numpy_distutils_fcompiler_____init____.py) = 49d070da5b48bd9818b37ac3254341fa68503c53
SHA1 (patch-numpy_distutils_fcompiler_g95.py) = be73b64a3e551df998b6a904d6db762bf28a98ed
-SHA1 (patch-numpy_distutils_fcompiler_gnu.py) = db8d3238c618ecd5900650a2150efb9459e94e96
+SHA1 (patch-numpy_distutils_fcompiler_gnu.py) = 893b0556f869543074cb74d5d4385d2f155004ec
SHA1 (patch-numpy_distutils_system__info.py) = dfd88a140b65a66c222a95ea4be6f20a33702e3b
SHA1 (patch-numpy_linalg_lapack__litemodule.c) = b421455fdbb666c8075d8bffbeb59533434d23e6
diff --git a/math/py-numpy/patches/patch-numpy_distutils_fcompiler_gnu.py b/math/py-numpy/patches/patch-numpy_distutils_fcompiler_gnu.py
index 3d9473c475f..7e0bb2ffc0e 100644
--- a/math/py-numpy/patches/patch-numpy_distutils_fcompiler_gnu.py
+++ b/math/py-numpy/patches/patch-numpy_distutils_fcompiler_gnu.py
@@ -1,4 +1,4 @@
-$NetBSD: patch-numpy_distutils_fcompiler_gnu.py,v 1.14 2018/05/14 06:36:17 adam Exp $
+$NetBSD: patch-numpy_distutils_fcompiler_gnu.py,v 1.15 2020/03/26 08:33:36 jperkin Exp $
Linker needs -shared explictly (at least with GCC 4.7 on SunOS), plus
any ABI flags as appropriate.
@@ -30,7 +30,7 @@ Do not run a shell command when it is "None".
'compiler_f90' : None, # Use --fcompiler=gnu95 for f90 codes
'compiler_fix' : None,
- 'linker_so' : [None, "-g", "-Wall"],
-+ 'linker_so' : [None, "-Wall", "-shared", ""],
++ 'linker_so' : [None, "-Wall", "-shared"],
'archiver' : ["ar", "-cr"],
'ranlib' : ["ranlib"],
- 'linker_exe' : [None, "-g", "-Wall"]
@@ -69,7 +69,7 @@ Do not run a shell command when it is "None".
+ 'compiler_fix' : [None, "-Wall", "-ffixed-form",
"-fno-second-underscore"] + _EXTRAFLAGS,
- 'linker_so' : ["<F90>", "-Wall", "-g"],
-+ 'linker_so' : ["<F90>", "-Wall", "-shared", ""],
++ 'linker_so' : ["<F90>", "-Wall", "-shared"],
'archiver' : ["ar", "-cr"],
'ranlib' : ["ranlib"],
'linker_exe' : [None, "-Wall"]