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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 01677158087 for ; Fri, 28 Jan 2022 07:45:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A2E7DE079C; Fri, 28 Jan 2022 07:45:26 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 31CB2E0788 for ; Fri, 28 Jan 2022 07:45:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3BA44342CFB for ; Fri, 28 Jan 2022 07:45:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A3D5A2AE for ; Fri, 28 Jan 2022 07:45:23 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1643355917.3a7cdd9a5bd767ad195fb20d2fd2fb4e7097a40a.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-client/firefox/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-client/firefox/firefox-91.5.1.ebuild www-client/firefox/firefox-96.0.3.ebuild X-VCS-Directories: www-client/firefox/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 3a7cdd9a5bd767ad195fb20d2fd2fb4e7097a40a X-VCS-Branch: master Date: Fri, 28 Jan 2022 07:45:23 +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: f2601b3c-83a9-433b-8ad8-e3cba9b993cb X-Archives-Hash: cb839fed9d0ec9b770cceb0ca15fb758 commit: 3a7cdd9a5bd767ad195fb20d2fd2fb4e7097a40a Author: Georgy Yakovlev gentoo org> AuthorDate: Fri Jan 28 07:38:16 2022 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Fri Jan 28 07:45:17 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a7cdd9a www-client/firefox: Make cargo respect MAKEOPTS Signed-off-by: Joonas Niilola gentoo.org> www-client/firefox/firefox-91.5.1.ebuild | 3 +++ www-client/firefox/firefox-96.0.3.ebuild | 3 +++ 2 files changed, 6 insertions(+) diff --git a/www-client/firefox/firefox-91.5.1.ebuild b/www-client/firefox/firefox-91.5.1.ebuild index 626ac54e86e6..e2b258aa159d 100644 --- a/www-client/firefox/firefox-91.5.1.ebuild +++ b/www-client/firefox/firefox-91.5.1.ebuild @@ -580,6 +580,9 @@ src_prepare() { # Allow user to apply any additional patches without modifing ebuild eapply_user + # Make cargo respect MAKEOPTS + export CARGO_BUILD_JOBS="$(makeopts_jobs)" + # Make LTO respect MAKEOPTS sed -i \ -e "s/multiprocessing.cpu_count()/$(makeopts_jobs)/" \ diff --git a/www-client/firefox/firefox-96.0.3.ebuild b/www-client/firefox/firefox-96.0.3.ebuild index 8d7e2c1c0e9e..8b24b1dfafe2 100644 --- a/www-client/firefox/firefox-96.0.3.ebuild +++ b/www-client/firefox/firefox-96.0.3.ebuild @@ -582,6 +582,9 @@ src_prepare() { # Allow user to apply any additional patches without modifing ebuild eapply_user + # Make cargo respect MAKEOPTS + export CARGO_BUILD_JOBS="$(makeopts_jobs)" + # Make LTO respect MAKEOPTS sed -i \ -e "s/multiprocessing.cpu_count()/$(makeopts_jobs)/" \