pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/math/py-numpy py-numpy: Remove bogus empty string argu...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/8bb887336703
branches:  trunk
changeset: 414353:8bb887336703
user:      jperkin <jperkin%pkgsrc.org@localhost>
date:      Thu Mar 26 08:33:35 2020 +0000

description:
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:

 math/py-numpy/distinfo                                       |  4 ++--
 math/py-numpy/patches/patch-numpy_distutils_fcompiler_gnu.py |  6 +++---
 2 files changed, 5 insertions(+), 5 deletions(-)

diffs (44 lines):

diff -r 0692e491c145 -r 8bb887336703 math/py-numpy/distinfo
--- a/math/py-numpy/distinfo    Thu Mar 26 07:02:57 2020 +0000
+++ b/math/py-numpy/distinfo    Thu Mar 26 08:33:35 2020 +0000
@@ -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 @@
 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 -r 0692e491c145 -r 8bb887336703 math/py-numpy/patches/patch-numpy_distutils_fcompiler_gnu.py
--- a/math/py-numpy/patches/patch-numpy_distutils_fcompiler_gnu.py      Thu Mar 26 07:02:57 2020 +0000
+++ b/math/py-numpy/patches/patch-numpy_distutils_fcompiler_gnu.py      Thu Mar 26 08:33:35 2020 +0000
@@ -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 @@
          '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 @@
 +        '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