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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 8D29A15800A for ; Thu, 13 Jul 2023 03:25:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B5E23E07F1; Thu, 13 Jul 2023 03:25:47 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 970F3E07F1 for ; Thu, 13 Jul 2023 03:25:47 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6F581335CAF for ; Thu, 13 Jul 2023 03:25:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CDABEA99 for ; Thu, 13 Jul 2023 03:25:44 +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: <1689209164.1bb87cbc93f5de9323dd7e4bea1fbd29164c757d.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.23.ebuild X-VCS-Directories: sci-libs/openblas/ X-VCS-Committer: mjo X-VCS-Committer-Name: Michael Orlitzky X-VCS-Revision: 1bb87cbc93f5de9323dd7e4bea1fbd29164c757d X-VCS-Branch: master Date: Thu, 13 Jul 2023 03:25:44 +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: 6facd792-c8aa-4c1e-b0bd-575fb248dd17 X-Archives-Hash: 15a236fa18c3b866d8acb81410f2b1a4 commit: 1bb87cbc93f5de9323dd7e4bea1fbd29164c757d Author: Michael Orlitzky gentoo org> AuthorDate: Thu Jul 13 00:41:52 2023 +0000 Commit: Michael Orlitzky gentoo org> CommitDate: Thu Jul 13 00:46:04 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1bb87cbc sci-libs/openblas: work around test parallelism issue. Something weird is going on when we run "make tests" and the solution isn't obvious to me, so let's -j1 it for now. Unrelated to that, we don't need to build our custom shared-blas-lapack target unless USE=eselect-ldso is set, so let's not. Closes: https://bugs.gentoo.org/910174 Signed-off-by: Michael Orlitzky gentoo.org> sci-libs/openblas/openblas-0.3.23.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sci-libs/openblas/openblas-0.3.23.ebuild b/sci-libs/openblas/openblas-0.3.23.ebuild index 7638b7e3d707..0324e3a62e4c 100644 --- a/sci-libs/openblas/openblas-0.3.23.ebuild +++ b/sci-libs/openblas/openblas-0.3.23.ebuild @@ -122,8 +122,7 @@ src_prepare() { src_compile() { default - cd interface || die - emake shared-blas-lapack + use eselect-ldso && emake -C interface shared-blas-lapack if use index-64bit; then emake -C"${S}-index-64bit" \ @@ -133,7 +132,8 @@ src_compile() { } src_test() { - emake tests + # https://github.com/xianyi/OpenBLAS/issues/4139 + emake -j1 tests } src_install() {