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 084881382C5 for ; Tue, 27 Apr 2021 17:57:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3CC82E0817; Tue, 27 Apr 2021 17:57:45 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 2430BE0817 for ; Tue, 27 Apr 2021 17:57:45 +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 1B655341002 for ; Tue, 27 Apr 2021 17:57:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BE9935C9 for ; Tue, 27 Apr 2021 17:57:42 +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: <1619546218.4dd54addce6a0232e66ce13731d389b28e6cabe4.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.51.0-r2.ebuild X-VCS-Directories: dev-lang/rust/ X-VCS-Committer: gyakovlev X-VCS-Committer-Name: Georgy Yakovlev X-VCS-Revision: 4dd54addce6a0232e66ce13731d389b28e6cabe4 X-VCS-Branch: master Date: Tue, 27 Apr 2021 17:57:42 +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: ac2468f1-d7dc-4274-96b5-67b03bde4d5a X-Archives-Hash: bf3651df237df0bbc33d37d6281bab96 commit: 4dd54addce6a0232e66ce13731d389b28e6cabe4 Author: Georgy Yakovlev gentoo org> AuthorDate: Tue Apr 27 17:56:36 2021 +0000 Commit: Georgy Yakovlev gentoo org> CommitDate: Tue Apr 27 17:56:58 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4dd54add dev-lang/rust: only increase space req for multilib builds Bug: https://bugs.gentoo.org/783768 Thanks-to: Arfrever Frehtes Taifersar Arahesis Apache.Org> Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Georgy Yakovlev gentoo.org> dev-lang/rust/rust-1.51.0-r2.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dev-lang/rust/rust-1.51.0-r2.ebuild b/dev-lang/rust/rust-1.51.0-r2.ebuild index 16db8c04f0b..c2db84721a7 100644 --- a/dev-lang/rust/rust-1.51.0-r2.ebuild +++ b/dev-lang/rust/rust-1.51.0-r2.ebuild @@ -184,7 +184,9 @@ boostrap_rust_version_check() { pre_build_checks() { local M=8192 # multiply requirements by 1.5 if we are doing x86-multilib - M=$(( $(usex abi_x86_32 15 10) * ${M} / 10 )) + if use amd64; then + M=$(( $(usex abi_x86_32 15 10) * ${M} / 10 )) + fi M=$(( $(usex clippy 128 0) + ${M} )) M=$(( $(usex miri 128 0) + ${M} )) M=$(( $(usex rls 512 0) + ${M} ))