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 DBEF9138334 for ; Sat, 8 Sep 2018 13:34:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C2776E07F9; Sat, 8 Sep 2018 13:34:40 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 95732E083E for ; Sat, 8 Sep 2018 13:34:40 +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 81F24335D9B for ; Sat, 8 Sep 2018 13:34:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BAA8E3CF for ; Sat, 8 Sep 2018 13:34:36 +0000 (UTC) From: "Thomas Deutschmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Deutschmann" Message-ID: <1536413661.033d61f705d54eb3b8c246faeec0d6be2809e84e.whissi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-client/firefox/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-client/firefox/firefox-60.2.0.ebuild X-VCS-Directories: www-client/firefox/ X-VCS-Committer: whissi X-VCS-Committer-Name: Thomas Deutschmann X-VCS-Revision: 033d61f705d54eb3b8c246faeec0d6be2809e84e X-VCS-Branch: master Date: Sat, 8 Sep 2018 13:34:36 +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-Archives-Salt: df006ea0-7cbc-4447-8d36-cff2ce7dcce9 X-Archives-Hash: 7fb928c7a2f7ae73ab8a936969d27291 commit: 033d61f705d54eb3b8c246faeec0d6be2809e84e Author: Thomas Deutschmann gentoo org> AuthorDate: Sat Sep 8 13:26:33 2018 +0000 Commit: Thomas Deutschmann gentoo org> CommitDate: Sat Sep 8 13:34:21 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=033d61f7 www-client/firefox: patch ccache_stats function to avoid ccache calls Backport of commit 41eaecf1fce33a9f8b733861105c979a2c9ccd9a. Bug: https://bugs.gentoo.org/665420 Package-Manager: Portage-2.3.49, Repoman-2.3.10 www-client/firefox/firefox-60.2.0.ebuild | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/www-client/firefox/firefox-60.2.0.ebuild b/www-client/firefox/firefox-60.2.0.ebuild index 9f2f3d4e3b2..dcc8e593f35 100644 --- a/www-client/firefox/firefox-60.2.0.ebuild +++ b/www-client/firefox/firefox-60.2.0.ebuild @@ -216,6 +216,13 @@ src_configure() { # Only available on mozilla-overlay for experimentation -- Removed in Gentoo repo per bug 571180 #use egl && mozconfig_annotate 'Enable EGL as GL provider' --with-gl-provider=EGL + # Disable built-in ccache support to avoid sandbox violation, #665420 + # Use FEATURES=ccache instead! + mozconfig_annotate '' --without-ccache + sed -i -e 's/ccache_stats = None/return None/' \ + python/mozbuild/mozbuild/controller/building.py || \ + die "Failed to disable ccache stats call" + # Setup api key for location services echo -n "${_google_api_key}" > "${S}"/google-api-key mozconfig_annotate '' --with-google-api-keyfile="${S}/google-api-key"