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 D5E98159C96 for ; Sun, 28 Jul 2024 09:35:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0ED78E2A0D; Sun, 28 Jul 2024 09:35:19 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E07CDE2A0D for ; Sun, 28 Jul 2024 09:35:18 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id F212F335DCD for ; Sun, 28 Jul 2024 09:35:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 84F7E1DC5 for ; Sun, 28 Jul 2024 09:35:16 +0000 (UTC) From: "Matt Jolly" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Jolly" Message-ID: <1722159305.2b96b04ef3d7b876ccf29de8ee1738f49112c95f.kangie@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-client/chromium/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-client/chromium/chromium-127.0.6533.72.ebuild X-VCS-Directories: www-client/chromium/ X-VCS-Committer: kangie X-VCS-Committer-Name: Matt Jolly X-VCS-Revision: 2b96b04ef3d7b876ccf29de8ee1738f49112c95f X-VCS-Branch: master Date: Sun, 28 Jul 2024 09:35:16 +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: e63bdc8f-fcd4-4e34-8f46-e5b168b526d6 X-Archives-Hash: e493afa32677599394fe64fcf14915a7 commit: 2b96b04ef3d7b876ccf29de8ee1738f49112c95f Author: Matt Jolly gentoo org> AuthorDate: Sun Jul 28 09:34:19 2024 +0000 Commit: Matt Jolly gentoo org> CommitDate: Sun Jul 28 09:35:05 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b96b04e www-client/chromium: forcibly disable 'updater' target for 127 Closes: https://bugs.gentoo.org/936673 Signed-off-by: Matt Jolly gentoo.org> www-client/chromium/chromium-127.0.6533.72.ebuild | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/www-client/chromium/chromium-127.0.6533.72.ebuild b/www-client/chromium/chromium-127.0.6533.72.ebuild index ac25cba49b1b..0861db4237d8 100644 --- a/www-client/chromium/chromium-127.0.6533.72.ebuild +++ b/www-client/chromium/chromium-127.0.6533.72.ebuild @@ -1118,6 +1118,11 @@ chromium_configure() { myconf_gn+=" arm_control_flow_integrity=\"none\"" fi + # 936673: Updater (which we don't use) depends on libsystemd + # This _should_ always be disabled if we're not building a + # "Chrome" branded browser, but obviously this is not always sufficient. + myconf_gn+=" enable_updater=false" + # Enable official builds myconf_gn+=" is_official_build=$(usex official true false)" myconf_gn+=" use_thin_lto=$(usex lto true false)"