Received: by mail.netbsd.org (Postfix, from userid 605) id 09C0684D47; Mon, 17 May 2021 11:31:31 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 4718A84D31 for ; Mon, 17 May 2021 11:31:30 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id K1iMsrlXq50k for ; Mon, 17 May 2021 11:31:29 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id AFDC484CE2 for ; Mon, 17 May 2021 11:31:29 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id A9678FA95; Mon, 17 May 2021 11:31:29 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_162125108997480" MIME-Version: 1.0 Date: Mon, 17 May 2021 11:31:29 +0000 From: "Dr. Thomas Orgis" Subject: CVS commit: pkgsrc/math/lapack To: pkgsrc-changes@NetBSD.org Reply-To: thor@netbsd.org X-Mailer: log_accum Message-Id: <20210517113129.A9678FA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_162125108997480 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: thor Date: Mon May 17 11:31:29 UTC 2021 Modified Files: pkgsrc/math/lapack: distinfo pkgsrc/math/lapack/patches: patch-CMakeLists.txt Log Message: math/lapack: remove spurious hook from lokal build in CMake patch This added a rather irrelevant local search path and just polluted the patch with a local directory from by builds. To generate a diff of this commit: cvs rdiff -u -r1.26 -r1.27 pkgsrc/math/lapack/distinfo cvs rdiff -u -r1.3 -r1.4 pkgsrc/math/lapack/patches/patch-CMakeLists.txt Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_162125108997480 Content-Disposition: inline Content-Length: 2553 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/math/lapack/distinfo diff -u pkgsrc/math/lapack/distinfo:1.26 pkgsrc/math/lapack/distinfo:1.27 --- pkgsrc/math/lapack/distinfo:1.26 Thu May 13 07:52:05 2021 +++ pkgsrc/math/lapack/distinfo Mon May 17 11:31:29 2021 @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.26 2021/05/13 07:52:05 thor Exp $ +$NetBSD: distinfo,v 1.27 2021/05/17 11:31:29 thor Exp $ SHA1 (lapack-3.9.1.tar.gz) = ccb1e9cb6e7fa7db8a680292457d7d990f25d286 RMD160 (lapack-3.9.1.tar.gz) = 380a2072eb7d8358ec8bf100e3d114600fc71444 @@ -7,9 +7,8 @@ Size (lapack-3.9.1.tar.gz) = 7543209 byt SHA1 (patch-BLAS_SRC_CMakeLists.txt) = 8773f93b1f907ed02d41677a3819f5bb655a331a SHA1 (patch-CBLAS_cblas.pc.in) = cc97fbab08024220739929b5ad95c266965da06d SHA1 (patch-CBLAS_src_CMakeLists.txt) = 64abbfb4458943483fba8897df0c8bf62c3f949e -SHA1 (patch-CMakeLists.txt) = 37ec278c2349d79e8cbd7cff110fce7984b42e6e +SHA1 (patch-CMakeLists.txt) = 3c8e9125f164625198fb7197982746f43bf4aab5 SHA1 (patch-LAPACKE_CMakeLists.txt) = 13e4662585088aa53f61f7079d103fdfcf985c4e SHA1 (patch-LAPACKE_lapacke.pc.in) = 6bbd72205120501cd60daf0b22b00ef7979fb329 -SHA1 (patch-LAPACKE_src_CMakeLists.txt) = da39a3ee5e6b4b0d3255bfef95601890afd80709 SHA1 (patch-SRC_CMakeLists.txt) = 4031bb41100f1fde71c70aa53fc55bee7a852fb7 SHA1 (patch-TESTING_MATGEN_CMakeLists.txt) = 07946678945dba3a7752849791f12e0666345983 Index: pkgsrc/math/lapack/patches/patch-CMakeLists.txt diff -u pkgsrc/math/lapack/patches/patch-CMakeLists.txt:1.3 pkgsrc/math/lapack/patches/patch-CMakeLists.txt:1.4 --- pkgsrc/math/lapack/patches/patch-CMakeLists.txt:1.3 Thu May 13 07:52:05 2021 +++ pkgsrc/math/lapack/patches/patch-CMakeLists.txt Mon May 17 11:31:29 2021 @@ -1,4 +1,4 @@ -$NetBSD: patch-CMakeLists.txt,v 1.3 2021/05/13 07:52:05 thor Exp $ +$NetBSD: patch-CMakeLists.txt,v 1.4 2021/05/17 11:31:29 thor Exp $ Avoid installation of LAPACK CMake and pkg-config files when not installing LAPACK, also allowing explicitly to switch off LAPACK build for BLAS-only @@ -6,15 +6,6 @@ packaging. --- CMakeLists.txt.orig 2021-03-25 18:25:15.000000000 +0000 +++ CMakeLists.txt -@@ -11,7 +11,7 @@ set( - ) - - # Add the CMake directory for custom CMake modules --set(CMAKE_MODULE_PATH "${LAPACK_SOURCE_DIR}/CMAKE" ${CMAKE_MODULE_PATH}) -+set (CMAKE_MODULE_PATH "/data/pkgwork/math/lapack/work/.buildlink/cmake-Modules" "${LAPACK_SOURCE_DIR}/CMAKE" ${CMAKE_MODULE_PATH}) - - # Export all symbols on Windows when building shared libraries - SET(CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS TRUE) @@ -160,6 +160,9 @@ endif() --_----------=_162125108997480--