From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id AE0EC1382C5 for ; Tue, 9 Jun 2020 21:08:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DC5B3E0835; Tue, 9 Jun 2020 21:08:06 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BF449E0835 for ; Tue, 9 Jun 2020 21:08:06 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4171B34F0C4 for ; Tue, 9 Jun 2020 21:08:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8D29228E for ; Tue, 9 Jun 2020 21:08:00 +0000 (UTC) From: "Michael Orlitzky" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Orlitzky" Message-ID: <1591736531.ce743c3eb6cdaf8780d9380c10a3c476c695ee1f.mjo@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/openblas/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/openblas/openblas-0.3.9.ebuild X-VCS-Directories: sci-libs/openblas/ X-VCS-Committer: mjo X-VCS-Committer-Name: Michael Orlitzky X-VCS-Revision: ce743c3eb6cdaf8780d9380c10a3c476c695ee1f X-VCS-Branch: master Date: Tue, 9 Jun 2020 21:08:00 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 26a47853-6f7a-42fb-9105-aa2caf4a5b9c X-Archives-Hash: 4d71078ed3a3dc66c23657f4df4e7976 commit: ce743c3eb6cdaf8780d9380c10a3c476c695ee1f Author: Michael Orlitzky gentoo org> AuthorDate: Tue Jun 9 20:53:45 2020 +0000 Commit: Michael Orlitzky gentoo org> CommitDate: Tue Jun 9 21:02:11 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce743c3e sci-libs/openblas: fix AR usage in the latest version. Upstream sets $AR unconditionally in a non-autotools Makefile, so we have to try extra hard to override it. Closes: https://bugs.gentoo.org/725608 Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Michael Orlitzky gentoo.org> sci-libs/openblas/openblas-0.3.9.ebuild | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/sci-libs/openblas/openblas-0.3.9.ebuild b/sci-libs/openblas/openblas-0.3.9.ebuild index 9aa17003313..c200d21b519 100644 --- a/sci-libs/openblas/openblas-0.3.9.ebuild +++ b/sci-libs/openblas/openblas-0.3.9.ebuild @@ -54,8 +54,10 @@ src_unpack() { } src_compile() { - emake - emake -Cinterface shared-blas-lapack + # We have to try extra hard to override AR for now. + # https://github.com/xianyi/OpenBLAS/issues/2654 + emake AR="$(tc-getAR)" + emake AR="$(tc-getAR)" -Cinterface shared-blas-lapack if use index-64bit; then emake -C"${S}-index-64bit" INTERFACE64=1 LIBPREFIX=libopenblas64 fi