From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4984615808A for ; Fri, 18 Jul 2025 19:19:58 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 31197340FDC for ; Fri, 18 Jul 2025 19:19:58 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id A2EB711055B; Fri, 18 Jul 2025 19:19:56 +0000 (UTC) Received: from smtp.gentoo.org (dev.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) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 9C6F111055B for ; Fri, 18 Jul 2025 19:19:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 57FF4340FD3 for ; Fri, 18 Jul 2025 19:19:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EDD9328E3 for ; Fri, 18 Jul 2025 19:19:54 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1752866351.3b3ea93c5330aa4ef1bdcd1344846a2f9f9c2bfd.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-client/firefox/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-client/firefox/firefox-140.0.4.ebuild X-VCS-Directories: www-client/firefox/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 3b3ea93c5330aa4ef1bdcd1344846a2f9f9c2bfd X-VCS-Branch: master Date: Fri, 18 Jul 2025 19:19:54 +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: a6395143-4d9a-4c0c-83b7-fb520d2fd3d0 X-Archives-Hash: 447f13ab4231c41db2229d44a30e1ae0 commit: 3b3ea93c5330aa4ef1bdcd1344846a2f9f9c2bfd Author: Sam James gentoo org> AuthorDate: Fri Jul 18 19:18:39 2025 +0000 Commit: Sam James gentoo org> CommitDate: Fri Jul 18 19:19:11 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b3ea93c www-client/firefox: set MOZ_PKG_FORMAT=tar to save time w/ PGO Avoid compressing just-built instrumented Firefox with high levels of compression. Just use tar as a container to save >=10 minutes. Signed-off-by: Sam James gentoo.org> www-client/firefox/firefox-140.0.4.ebuild | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/www-client/firefox/firefox-140.0.4.ebuild b/www-client/firefox/firefox-140.0.4.ebuild index 3a8f1f226e39..af10d96d3d73 100644 --- a/www-client/firefox/firefox-140.0.4.ebuild +++ b/www-client/firefox/firefox-140.0.4.ebuild @@ -980,6 +980,11 @@ src_configure() { if use pgo ; then mozconfig_add_options_ac '+pgo' MOZ_PGO=1 + # Avoid compressing just-built instrumented Firefox with + # high levels of compression. Just use tar as a container + # to save >=10 minutes. + export MOZ_PKG_FORMAT=tar + if use clang ; then # Used in build/pgo/profileserver.py export LLVM_PROFDATA="llvm-profdata"