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 64BA71382C5 for ; Fri, 18 Jun 2021 19:23:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AB93AE086A; Fri, 18 Jun 2021 19:23: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 8DA23E086A for ; Fri, 18 Jun 2021 19:23:00 +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 2C2FD340A8E for ; Fri, 18 Jun 2021 19:22:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BAD7E7A2 for ; Fri, 18 Jun 2021 19:22:57 +0000 (UTC) From: "Georgy Yakovlev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Georgy Yakovlev" Message-ID: <1624044137.0eb1e3806ed6e8dbb9b31c2c0534242259a77c52.gyakovlev@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/rust/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/rust/rust-1.53.0.ebuild X-VCS-Directories: dev-lang/rust/ X-VCS-Committer: gyakovlev X-VCS-Committer-Name: Georgy Yakovlev X-VCS-Revision: 0eb1e3806ed6e8dbb9b31c2c0534242259a77c52 X-VCS-Branch: master Date: Fri, 18 Jun 2021 19:22: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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 3b5d324a-a313-4b5c-a66a-4008c303c1e6 X-Archives-Hash: 4db06f8a759e3a352a0994bee2651d9f commit: 0eb1e3806ed6e8dbb9b31c2c0534242259a77c52 Author: Georgy Yakovlev gentoo org> AuthorDate: Fri Jun 18 19:16:37 2021 +0000 Commit: Georgy Yakovlev gentoo org> CommitDate: Fri Jun 18 19:22:17 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0eb1e380 dev-lang/rust: specify stage in toml instead cmdline Signed-off-by: Georgy Yakovlev gentoo.org> dev-lang/rust/rust-1.53.0.ebuild | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/dev-lang/rust/rust-1.53.0.ebuild b/dev-lang/rust/rust-1.53.0.ebuild index 4a883105625..80e500a51ff 100644 --- a/dev-lang/rust/rust-1.53.0.ebuild +++ b/dev-lang/rust/rust-1.53.0.ebuild @@ -305,6 +305,9 @@ src_configure() { experimental-targets = "" link-shared = $(toml_usex system-llvm) [build] + build-stage = 2 + test-stage = 2 + doc-stage = 2 build = "${rust_target}" host = ["${rust_target}"] target = [${rust_targets}] @@ -500,8 +503,7 @@ src_compile() { ( IFS=$'\n' env $(cat "${S}"/config.env) RUST_BACKTRACE=1\ - "${EPYTHON}" ./x.py build --stage 2 \ - -vv --config="${S}"/config.toml -j$(makeopts_jobs) || die + "${EPYTHON}" ./x.py build -vv --config="${S}"/config.toml -j$(makeopts_jobs) || die ) }