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 22258159C9B for ; Wed, 7 Aug 2024 05:42:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 65C04E2A97; Wed, 7 Aug 2024 05:42:07 +0000 (UTC) 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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 40A0AE2A97 for ; Wed, 7 Aug 2024 05:42:07 +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 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 44EF3343009 for ; Wed, 7 Aug 2024 05:42:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9092D1EB8 for ; Wed, 7 Aug 2024 05:42:04 +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: <1723009194.48b4885e4f9a19ccc4c1489a387e38fb3b7d62b7.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-115.13.0.ebuild www-client/firefox/firefox-115.14.0.ebuild X-VCS-Directories: www-client/firefox/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 48b4885e4f9a19ccc4c1489a387e38fb3b7d62b7 X-VCS-Branch: master Date: Wed, 7 Aug 2024 05:42:04 +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: 15363b76-92ba-4805-b472-7ee5efa0d5ce X-Archives-Hash: 823df16c1b6eda9eea49290d32185cff commit: 48b4885e4f9a19ccc4c1489a387e38fb3b7d62b7 Author: Maksym Sditanov 200volts com> AuthorDate: Tue Aug 6 20:20:21 2024 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Wed Aug 7 05:39:54 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48b4885e www-client/firefox: fix PGO for 115.13.0, 115.14.0 - fix PGO compilation: relax sandbox restrictions for /dev since PGO is hardware-dependant. Closes: https://bugs.gentoo.org/936278 Signed-off-by: Maksym Sditanov 200volts.com> Closes: https://github.com/gentoo/gentoo/pull/37998 Signed-off-by: Joonas Niilola gentoo.org> www-client/firefox/firefox-115.13.0.ebuild | 4 ++-- www-client/firefox/firefox-115.14.0.ebuild | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/www-client/firefox/firefox-115.13.0.ebuild b/www-client/firefox/firefox-115.13.0.ebuild index 445bf48eba12..ab2ac2550f3b 100644 --- a/www-client/firefox/firefox-115.13.0.ebuild +++ b/www-client/firefox/firefox-115.13.0.ebuild @@ -584,8 +584,8 @@ pkg_setup() { # (PORTAGE_SCHEDULING_POLICY) update... addpredict /proc - # May need a wider addpredict when using wayland+pgo. - addpredict /dev/dri + # Clear tons of conditions, since PGO is hardware-dependant. + addpredict /dev # Allow access to GPU during PGO run local ati_cards mesa_cards nvidia_cards render_cards diff --git a/www-client/firefox/firefox-115.14.0.ebuild b/www-client/firefox/firefox-115.14.0.ebuild index a9167d5824a1..0d38aaa8ab50 100644 --- a/www-client/firefox/firefox-115.14.0.ebuild +++ b/www-client/firefox/firefox-115.14.0.ebuild @@ -584,8 +584,8 @@ pkg_setup() { # (PORTAGE_SCHEDULING_POLICY) update... addpredict /proc - # May need a wider addpredict when using wayland+pgo. - addpredict /dev/dri + # Clear tons of conditions, since PGO is hardware-dependant. + addpredict /dev # Allow access to GPU during PGO run local ati_cards mesa_cards nvidia_cards render_cards