Received: by mail.netbsd.org (Postfix, from userid 605) id 81A1A84D3A; Thu, 26 Mar 2020 08:33:37 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 089B684D2D for ; Thu, 26 Mar 2020 08:33:37 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id Px6GbubqmZyP for ; Thu, 26 Mar 2020 08:33:36 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 7AC8184CEA for ; Thu, 26 Mar 2020 08:33:36 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 50D5AFB27; Thu, 26 Mar 2020 08:33:36 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1585211616256610" MIME-Version: 1.0 Date: Thu, 26 Mar 2020 08:33:36 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/math/py-numpy To: pkgsrc-changes@NetBSD.org Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20200326083336.50D5AFB27@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1585211616256610 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" 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. --_----------=_1585211616256610 Content-Disposition: inline Content-Length: 2848 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii 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' : ["", "-Wall", "-g"], -+ 'linker_so' : ["", "-Wall", "-shared", ""], ++ 'linker_so' : ["", "-Wall", "-shared"], 'archiver' : ["ar", "-cr"], 'ranlib' : ["ranlib"], 'linker_exe' : [None, "-Wall"] --_----------=_1585211616256610--