pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/math/py-numpy
Module Name: pkgsrc
Committed By: jperkin
Date: Thu Mar 26 08:33:36 UTC 2020
Modified Files:
pkgsrc/math/py-numpy: distinfo
pkgsrc/math/py-numpy/patches: patch-numpy_distutils_fcompiler_gnu.py
Log Message:
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.
To generate a diff of this commit:
cvs rdiff -u -r1.46 -r1.47 pkgsrc/math/py-numpy/distinfo
cvs rdiff -u -r1.14 -r1.15 \
pkgsrc/math/py-numpy/patches/patch-numpy_distutils_fcompiler_gnu.py
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/math/py-numpy/distinfo
diff -u pkgsrc/math/py-numpy/distinfo:1.46 pkgsrc/math/py-numpy/distinfo:1.47
--- pkgsrc/math/py-numpy/distinfo:1.46 Thu Jan 30 23:34:28 2020
+++ pkgsrc/math/py-numpy/distinfo Thu Mar 26 08:33:35 2020
@@ -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) = c219841cc804
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
Index: pkgsrc/math/py-numpy/patches/patch-numpy_distutils_fcompiler_gnu.py
diff -u pkgsrc/math/py-numpy/patches/patch-numpy_distutils_fcompiler_gnu.py:1.14 pkgsrc/math/py-numpy/patches/patch-numpy_distutils_fcompiler_gnu.py:1.15
--- pkgsrc/math/py-numpy/patches/patch-numpy_distutils_fcompiler_gnu.py:1.14 Mon May 14 06:36:17 2018
+++ pkgsrc/math/py-numpy/patches/patch-numpy_distutils_fcompiler_gnu.py Thu Mar 26 08:33:36 2020
@@ -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 "N
'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 "N
+ '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"]
Home |
Main Index |
Thread Index |
Old Index