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 346571382C5 for ; Tue, 6 Feb 2018 01:12:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 36180E09B0; Tue, 6 Feb 2018 01:12:00 +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 11DDBE09A8 for ; Tue, 6 Feb 2018 01:11:59 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 E9F2F335C48 for ; Tue, 6 Feb 2018 01:11:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7D26E1E2 for ; Tue, 6 Feb 2018 01:11:57 +0000 (UTC) From: "Aric Belsito" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aric Belsito" Message-ID: <1517690789.1808c612c0dc6b99670bfc32fa75c00782c3764e.lluixhi@gentoo> Subject: [gentoo-commits] proj/musl:master commit in: dev-lang/rust/ X-VCS-Repository: proj/musl X-VCS-Files: dev-lang/rust/rust-1.21.0.ebuild dev-lang/rust/rust-1.23.0.ebuild X-VCS-Directories: dev-lang/rust/ X-VCS-Committer: lluixhi X-VCS-Committer-Name: Aric Belsito X-VCS-Revision: 1808c612c0dc6b99670bfc32fa75c00782c3764e X-VCS-Branch: master Date: Tue, 6 Feb 2018 01:11:57 +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-Archives-Salt: ce85785c-71b8-48cb-8b4b-32294755a849 X-Archives-Hash: f310a27f44df0f3640d48b21b3b33924 commit: 1808c612c0dc6b99670bfc32fa75c00782c3764e Author: stefson yahoo de> AuthorDate: Sat Feb 3 20:46:29 2018 +0000 Commit: Aric Belsito gmail com> CommitDate: Sat Feb 3 20:46:29 2018 +0000 URL: https://gitweb.gentoo.org/proj/musl.git/commit/?id=1808c612 dev-lang/rust: backport the fix for MAKEOPTS dev-lang/rust/rust-1.21.0.ebuild | 6 +++--- dev-lang/rust/rust-1.23.0.ebuild | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/dev-lang/rust/rust-1.21.0.ebuild b/dev-lang/rust/rust-1.21.0.ebuild index e0a13e5..89bfe31 100644 --- a/dev-lang/rust/rust-1.21.0.ebuild +++ b/dev-lang/rust/rust-1.21.0.ebuild @@ -6,7 +6,7 @@ EAPI=6 LLVM_MAX_SLOT=4 PYTHON_COMPAT=( python2_7 ) -inherit python-any-r1 versionator toolchain-funcs llvm +inherit multiprocessing python-any-r1 versionator toolchain-funcs llvm if [[ ${PV} = *beta* ]]; then betaver=${PV//*beta} @@ -173,11 +173,11 @@ src_configure() { } src_compile() { - ./x.py build || die + ./x.py build -j$(makeopts_jobs) || die } src_install() { - env DESTDIR="${D}" ./x.py install || die + env DESTDIR="${D}" ./x.py install -j$(makeopts_jobs) || die rm "${D}/usr/$(get_libdir)/rustlib/components" || die rm "${D}/usr/$(get_libdir)/rustlib/install.log" || die diff --git a/dev-lang/rust/rust-1.23.0.ebuild b/dev-lang/rust/rust-1.23.0.ebuild index cf9be2c..f01a389 100644 --- a/dev-lang/rust/rust-1.23.0.ebuild +++ b/dev-lang/rust/rust-1.23.0.ebuild @@ -6,7 +6,7 @@ EAPI=6 LLVM_MAX_SLOT=4 PYTHON_COMPAT=( python2_7 ) -inherit python-any-r1 versionator toolchain-funcs llvm +inherit multiprocessing python-any-r1 versionator toolchain-funcs llvm if [[ ${PV} = *beta* ]]; then betaver=${PV//*beta} @@ -178,11 +178,11 @@ src_configure() { } src_compile() { - ./x.py build || die + ./x.py build -j$(makeopts_jobs) || die } src_install() { - env DESTDIR="${D}" ./x.py install || die + env DESTDIR="${D}" ./x.py install -j$(makeopts_jobs) || die rm "${D}/usr/$(get_libdir)/rustlib/components" || die rm "${D}/usr/$(get_libdir)/rustlib/install.log" || die