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 4503D139360 for ; Thu, 5 Aug 2021 05:37:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8F153E095A; Thu, 5 Aug 2021 05:37:46 +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 76A57E095A for ; Thu, 5 Aug 2021 05:37:46 +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 95E45342CDE for ; Thu, 5 Aug 2021 05:37:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B3B0E85B for ; Thu, 5 Aug 2021 05:37:41 +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: <1628141826.f83e771ccdf764a540325a8072ec9d3737e6a03e.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.54.0.ebuild X-VCS-Directories: dev-lang/rust/ X-VCS-Committer: gyakovlev X-VCS-Committer-Name: Georgy Yakovlev X-VCS-Revision: f83e771ccdf764a540325a8072ec9d3737e6a03e X-VCS-Branch: master Date: Thu, 5 Aug 2021 05:37:41 +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: 6746488e-ab05-47ee-aeb0-eac1d4b10b40 X-Archives-Hash: f8549330ec03cc62d69eec9ae96eeffb commit: f83e771ccdf764a540325a8072ec9d3737e6a03e Author: Georgy Yakovlev gentoo org> AuthorDate: Thu Aug 5 05:33:25 2021 +0000 Commit: Georgy Yakovlev gentoo org> CommitDate: Thu Aug 5 05:37:06 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f83e771c dev-lang/rust: reduce space requirements in 1.54.0 Signed-off-by: Georgy Yakovlev gentoo.org> dev-lang/rust/rust-1.54.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-lang/rust/rust-1.54.0.ebuild b/dev-lang/rust/rust-1.54.0.ebuild index b145d15a966..8a51162e0f9 100644 --- a/dev-lang/rust/rust-1.54.0.ebuild +++ b/dev-lang/rust/rust-1.54.0.ebuild @@ -182,7 +182,7 @@ bootstrap_rust_version_check() { } pre_build_checks() { - local M=8192 + local M=4096 # multiply requirements by 1.5 if we are doing x86-multilib if use amd64; then M=$(( $(usex abi_x86_32 15 10) * ${M} / 10 ))