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 53DF61382C5 for ; Sun, 18 Apr 2021 20:47:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9857AE079E; Sun, 18 Apr 2021 20:47:12 +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 80EDCE079E for ; Sun, 18 Apr 2021 20:47:12 +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 7A790340D94 for ; Sun, 18 Apr 2021 20:47:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 194AECC for ; Sun, 18 Apr 2021 20:47:09 +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: <1618778794.dd6c8840fda3cd0afc628c4f753d41ead44cc0e7.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: dd6c8840fda3cd0afc628c4f753d41ead44cc0e7 X-VCS-Branch: master Date: Sun, 18 Apr 2021 20:47:09 +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: 25e85ea3-8218-4242-ac9f-0d46f7473f84 X-Archives-Hash: 6ea13961b6de3c43b99344f6c44e1df4 commit: dd6c8840fda3cd0afc628c4f753d41ead44cc0e7 Author: Georgy Yakovlev gentoo org> AuthorDate: Sun Apr 18 20:03:22 2021 +0000 Commit: Georgy Yakovlev gentoo org> CommitDate: Sun Apr 18 20:46:34 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd6c8840 dev-lang/rust: bump build disk requirements for 1.51.0-r2 Bug: https://bugs.gentoo.org/783768 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 | 3 ++- 1 file changed, 2 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 d785bab04bb..b65773f2516 100644 --- a/dev-lang/rust/rust-1.51.0-r2.ebuild +++ b/dev-lang/rust/rust-1.51.0-r2.ebuild @@ -174,7 +174,8 @@ boostrap_rust_version_check() { } pre_build_checks() { - local M=6144 + local M=8192 + M=$(( $(usex abi_x86_32 15 10) * ${M} / 10 )) M=$(( $(usex clippy 128 0) + ${M} )) M=$(( $(usex miri 128 0) + ${M} )) M=$(( $(usex rls 512 0) + ${M} ))