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 97A5515800F for ; Fri, 20 Jan 2023 23:55:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BC268E07E0; Fri, 20 Jan 2023 23:54:59 +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 62361E07E0 for ; Fri, 20 Jan 2023 23:54:59 +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 38600340C96 for ; Fri, 20 Jan 2023 23:54:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C9FED62F for ; Fri, 20 Jan 2023 23:54:55 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1674258835.b9f590f6d4b7c2fdba372fc5d2586042c565087d.vapier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/newlib/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-libs/newlib/newlib-4.3.0.20230120.ebuild sys-libs/newlib/newlib-9999.ebuild X-VCS-Directories: sys-libs/newlib/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: b9f590f6d4b7c2fdba372fc5d2586042c565087d X-VCS-Branch: master Date: Fri, 20 Jan 2023 23:54:55 +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: 2fe2223c-8d9c-45e4-aebb-bb694b1eebff X-Archives-Hash: 1ecfa5b1a351965f72deb2b4f13191c4 commit: b9f590f6d4b7c2fdba372fc5d2586042c565087d Author: Mike Frysinger gentoo org> AuthorDate: Fri Jan 20 23:53:01 2023 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Fri Jan 20 23:53:55 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9f590f6 sys-libs/newlib: allow parallel install again The upstream build system has been heavily rewritten and shouldn't have any parallel install bugs in it anymore. If there are any left, they should get fixed, so let's re enable parallel install. Signed-off-by: Mike Frysinger gentoo.org> sys-libs/newlib/newlib-4.3.0.20230120.ebuild | 4 ++-- sys-libs/newlib/newlib-9999.ebuild | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/sys-libs/newlib/newlib-4.3.0.20230120.ebuild b/sys-libs/newlib/newlib-4.3.0.20230120.ebuild index 83237271fd55..5b16a3bf6787 100644 --- a/sys-libs/newlib/newlib-4.3.0.20230120.ebuild +++ b/sys-libs/newlib/newlib-4.3.0.20230120.ebuild @@ -128,11 +128,11 @@ src_compile() { src_install() { cd "${NEWLIBBUILD}" || die - emake -j1 DESTDIR="${D}" install + emake DESTDIR="${D}" install if use nano ; then cd "${NEWLIBNANOBUILD}" || die - emake -j1 DESTDIR="${NEWLIBNANOTMPINSTALL}" install + emake DESTDIR="${NEWLIBNANOTMPINSTALL}" install # Rename nano lib* files to lib*_nano and move to the real ${D} local nanolibfiles="" nanolibfiles=$(find "${NEWLIBNANOTMPINSTALL}" -regex ".*/lib\(c\|g\|m\|rdimon\|gloss\)\.a" -print) diff --git a/sys-libs/newlib/newlib-9999.ebuild b/sys-libs/newlib/newlib-9999.ebuild index 83237271fd55..5b16a3bf6787 100644 --- a/sys-libs/newlib/newlib-9999.ebuild +++ b/sys-libs/newlib/newlib-9999.ebuild @@ -128,11 +128,11 @@ src_compile() { src_install() { cd "${NEWLIBBUILD}" || die - emake -j1 DESTDIR="${D}" install + emake DESTDIR="${D}" install if use nano ; then cd "${NEWLIBNANOBUILD}" || die - emake -j1 DESTDIR="${NEWLIBNANOTMPINSTALL}" install + emake DESTDIR="${NEWLIBNANOTMPINSTALL}" install # Rename nano lib* files to lib*_nano and move to the real ${D} local nanolibfiles="" nanolibfiles=$(find "${NEWLIBNANOTMPINSTALL}" -regex ".*/lib\(c\|g\|m\|rdimon\|gloss\)\.a" -print)