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 77E24138335 for ; Sun, 29 Sep 2019 01:32:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B3180E08FE; Sun, 29 Sep 2019 01:32:36 +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 9BD5DE08FE for ; Sun, 29 Sep 2019 01:32:36 +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 4054634B6AA for ; Sun, 29 Sep 2019 01:32:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3D64B7FD for ; Sun, 29 Sep 2019 01:32:32 +0000 (UTC) From: "Jory Pratt" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jory Pratt" Message-ID: <1569720727.a051937fb27aa3c29ed6f40ab00a42e8ac21e51c.anarchy@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-client/firefox/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-client/firefox/firefox-68.1.0.ebuild www-client/firefox/firefox-69.0.1.ebuild X-VCS-Directories: www-client/firefox/ X-VCS-Committer: anarchy X-VCS-Committer-Name: Jory Pratt X-VCS-Revision: a051937fb27aa3c29ed6f40ab00a42e8ac21e51c X-VCS-Branch: master Date: Sun, 29 Sep 2019 01:32:32 +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: e26e7ffc-c836-4c83-b04a-dae09d73005a X-Archives-Hash: b911e7a28f260db56da3d5115abcbf7d commit: a051937fb27aa3c29ed6f40ab00a42e8ac21e51c Author: Jory Pratt gentoo org> AuthorDate: Sun Sep 29 01:32:07 2019 +0000 Commit: Jory Pratt gentoo org> CommitDate: Sun Sep 29 01:32:07 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a051937f www-client/firefox: add lto to 8G disk check Closes: https://bugs.gentoo.org/694462 Package-Manager: Portage-2.3.76, Repoman-2.3.17 Signed-off-by: Jory Pratt gentoo.org> www-client/firefox/firefox-68.1.0.ebuild | 2 +- www-client/firefox/firefox-69.0.1.ebuild | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/www-client/firefox/firefox-68.1.0.ebuild b/www-client/firefox/firefox-68.1.0.ebuild index d24c99927b3..cbc319d6760 100644 --- a/www-client/firefox/firefox-68.1.0.ebuild +++ b/www-client/firefox/firefox-68.1.0.ebuild @@ -244,7 +244,7 @@ pkg_setup() { pkg_pretend() { # Ensure we have enough disk space to compile - if use pgo || use debug || use test ; then + if use pgo || use lto || use debug || use test ; then CHECKREQS_DISK_BUILD="8G" else CHECKREQS_DISK_BUILD="4G" diff --git a/www-client/firefox/firefox-69.0.1.ebuild b/www-client/firefox/firefox-69.0.1.ebuild index 1bdcc49ef7f..c221342b1f9 100644 --- a/www-client/firefox/firefox-69.0.1.ebuild +++ b/www-client/firefox/firefox-69.0.1.ebuild @@ -247,7 +247,7 @@ pkg_setup() { pkg_pretend() { # Ensure we have enough disk space to compile - if use pgo || use debug || use test ; then + if use pgo || use lto || use debug || use test ; then CHECKREQS_DISK_BUILD="8G" else CHECKREQS_DISK_BUILD="4G"