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 3BEE21382C5 for ; Sat, 2 Jan 2021 07:02:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 251EDE082D; Sat, 2 Jan 2021 07:02:46 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 10DC9E082D for ; Sat, 2 Jan 2021 07:02:46 +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 923CF340EE4 for ; Sat, 2 Jan 2021 07:02:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 007CC309 for ; Sat, 2 Jan 2021 07:02:43 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1609570946.6b3a4ffa459c89192b14d3c910002f4069146f09.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/mumps/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/mumps/mumps-5.3.5.ebuild X-VCS-Directories: sci-libs/mumps/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 6b3a4ffa459c89192b14d3c910002f4069146f09 X-VCS-Branch: master Date: Sat, 2 Jan 2021 07:02:43 +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: 1bac4f0f-da41-4707-815d-77a6a8282219 X-Archives-Hash: 11807013f4c8a9d94fccf3fe143ce296 commit: 6b3a4ffa459c89192b14d3c910002f4069146f09 Author: Sam James gentoo org> AuthorDate: Sat Jan 2 07:02:26 2021 +0000 Commit: Sam James gentoo org> CommitDate: Sat Jan 2 07:02:26 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b3a4ffa sci-libs/mumps: drop -j1 This is supposedly fixed upstream and works fine here. Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Sam James gentoo.org> sci-libs/mumps/mumps-5.3.5.ebuild | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/sci-libs/mumps/mumps-5.3.5.ebuild b/sci-libs/mumps/mumps-5.3.5.ebuild index d88be408e3f..9c2b70d7f00 100644 --- a/sci-libs/mumps/mumps-5.3.5.ebuild +++ b/sci-libs/mumps/mumps-5.3.5.ebuild @@ -141,8 +141,7 @@ src_compile() { # Workaround #462602 export FAKEROOTKEY=1 - # -j1 because of static archive race - emake -j1 alllib PIC="-fPIC" + emake alllib PIC="-fPIC" if ! use mpi; then #$(tc-getAR) crs lib/libmumps_common.a libseq/*.o || die LIBADD+=" -Llibseq -lmpiseq" @@ -159,7 +158,7 @@ src_compile() { if use static-libs; then emake clean - emake -j1 alllib + emake alllib fi }