Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id 13A1A1A921F for ; Tue, 13 Oct 2020 12:11:09 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 8787B84DE2; Tue, 13 Oct 2020 12:11:08 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 0F1A284DE1 for ; Tue, 13 Oct 2020 12:11:08 +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 Ptw5NSVUihoL for ; Tue, 13 Oct 2020 12:11:07 +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 88F1D84D5B for ; Tue, 13 Oct 2020 12:11:07 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 81CB1FB28; Tue, 13 Oct 2020 12:11:07 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1602591067154080" MIME-Version: 1.0 Date: Tue, 13 Oct 2020 12:11:07 +0000 From: "Jason Bacon" Subject: CVS commit: pkgsrc/math To: pkgsrc-changes@NetBSD.org Reply-To: bacon@netbsd.org X-Mailer: log_accum Message-Id: <20201013121107.81CB1FB28@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. --_----------=_1602591067154080 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: bacon Date: Tue Oct 13 12:11:07 UTC 2020 Modified Files: pkgsrc/math/linpack: Makefile pkgsrc/math/superlu: Makefile Log Message: math/linpack, math/superlu: Convert to use new BLAS Convert to use the new mk/blas.buildlink3.mk rather than a specific blas package These dependents were overlooked in the initial upgrade and rev bump because they listed blas in DEPENDS rather than including the bl3. To generate a diff of this commit: cvs rdiff -u -r1.15 -r1.16 pkgsrc/math/linpack/Makefile cvs rdiff -u -r1.30 -r1.31 pkgsrc/math/superlu/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1602591067154080 Content-Disposition: inline Content-Length: 1769 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/math/linpack/Makefile diff -u pkgsrc/math/linpack/Makefile:1.15 pkgsrc/math/linpack/Makefile:1.16 --- pkgsrc/math/linpack/Makefile:1.15 Sat Nov 2 16:16:19 2019 +++ pkgsrc/math/linpack/Makefile Tue Oct 13 12:11:07 2020 @@ -1,18 +1,17 @@ -# $NetBSD: Makefile,v 1.15 2019/11/02 16:16:19 rillig Exp $ +# $NetBSD: Makefile,v 1.16 2020/10/13 12:11:07 bacon Exp $ DISTNAME= linpack-20010510 -PKGREVISION= 2 +PKGREVISION= 3 CATEGORIES= math devel MASTER_SITES= ${MASTER_SITE_LOCAL} MAINTAINER= pkgsrc-users@NetBSD.org COMMENT= Library of linear algebra Fortran routines -DEPENDS+= blas-[0-9]*:../../math/blas - NO_SRC_ON_FTP= Already in MASTER_SITE_LOCAL USE_LANGUAGES= fortran77 WRKSRC= ${WRKDIR}/linpack INSTALLATION_DIRS= lib +.include "../../mk/blas.buildlink3.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/math/superlu/Makefile diff -u pkgsrc/math/superlu/Makefile:1.30 pkgsrc/math/superlu/Makefile:1.31 --- pkgsrc/math/superlu/Makefile:1.30 Mon Aug 31 18:06:30 2020 +++ pkgsrc/math/superlu/Makefile Tue Oct 13 12:11:07 2020 @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.30 2020/08/31 18:06:30 wiz Exp $ +# $NetBSD: Makefile,v 1.31 2020/10/13 12:11:07 bacon Exp $ DISTNAME= superlu-5.2.1 -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= math MASTER_SITES= ${MASTER_SITE_GITHUB:=xiaoyeli/} GITHUB_TAG= v${PKGVERSION_NOREV} @@ -10,10 +10,10 @@ MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= https://portal.nersc.gov/project/sparse/superlu/ COMMENT= Library for solving large, sparse, nonsymmetric systems of linear equations -DEPENDS+= blas-[0-9]*:../../math/blas - USE_CMAKE= yes USE_LANGUAGES= c fortran TEST_TARGET= test + +.include "../../mk/blas.buildlink3.mk" .include "../../mk/bsd.pkg.mk" --_----------=_1602591067154080--