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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5F448158232 for ; Fri, 6 Dec 2024 23:12:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B9CDDE09D6; Fri, 6 Dec 2024 23:12:08 +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 93C29E09D4 for ; Fri, 6 Dec 2024 23:12:08 +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 A9659342FA4 for ; Fri, 6 Dec 2024 23:12:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5693522CE for ; Fri, 6 Dec 2024 23:12:04 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1733526691.6bbec43dd536e6b62d69ffeb9ab5eb02e463f34f.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-client/chromium/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-client/chromium/files/chromium-127-updater-systemd.patch X-VCS-Directories: www-client/chromium/files/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 6bbec43dd536e6b62d69ffeb9ab5eb02e463f34f X-VCS-Branch: master Date: Fri, 6 Dec 2024 23:12: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: ab33a507-9986-4c32-973b-f1d092d2d371 X-Archives-Hash: 58553c3bd27e71662bcde37b3163708d commit: 6bbec43dd536e6b62d69ffeb9ab5eb02e463f34f Author: Michael Mair-Keimberger levelnine at> AuthorDate: Tue Dec 3 19:31:03 2024 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Fri Dec 6 23:11:31 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6bbec43d www-client/chromium: remove unused patch Signed-off-by: Michael Mair-Keimberger levelnine.at> Signed-off-by: Conrad Kostecki gentoo.org> .../files/chromium-127-updater-systemd.patch | 73 ---------------------- 1 file changed, 73 deletions(-) diff --git a/www-client/chromium/files/chromium-127-updater-systemd.patch b/www-client/chromium/files/chromium-127-updater-systemd.patch deleted file mode 100644 index 57e9029b9378..000000000000 --- a/www-client/chromium/files/chromium-127-updater-systemd.patch +++ /dev/null @@ -1,73 +0,0 @@ -https://github.com/chromium/chromium/commit/570332aad61afab5d9d88a8438bae53ea28a298a -From: Noah Rose Ledesma -Date: Wed, 31 Jul 2024 17:59:12 +0000 -Subject: [PATCH] Use libs instead of pkg_config for linux deps - -pkg_config can cause builds to fail if the requested packages are not -present, regardless of if the lib is depended upon by the target being -built. - -This issue can be avoided by setting 'libs' instead. I'm not sure why we -didn't do so in the first place. - -Bug: 355967882 -Change-Id: Ie5dc4c03b08d7c1e26458ea143f6dc812b670544 -Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/5749680 -Reviewed-by: Sorin Jianu -Commit-Queue: Noah Rose Ledesma -Cr-Commit-Position: refs/heads/main@{#1335558} ---- a/chrome/updater/BUILD.gn -+++ b/chrome/updater/BUILD.gn -@@ -367,9 +367,10 @@ if (is_win || is_mac || is_linux) { - "update_service_internal_impl_qualifying_linux.cc", - "update_usage_stats_task_linux.cc", - ] -- public_configs = [ -- "linux:libcurl", -- "linux:libsystemd", -+ -+ libs = [ -+ "curl", -+ "systemd", - ] - } - } -@@ -1040,7 +1041,7 @@ if (is_win || is_mac || is_linux) { - - data += [ "//chrome/test/data/updater/updater_qualification_app.crx" ] - data_deps += [ "//chrome/updater/linux:updater_test" ] -- public_configs = [ "linux:libsystemd" ] -+ libs = [ "systemd" ] - } - - if (is_posix) { ---- a/chrome/updater/linux/BUILD.gn -+++ b/chrome/updater/linux/BUILD.gn -@@ -2,7 +2,6 @@ - # Use of this source code is governed by a BSD-style license that can be - # found in the LICENSE file. - --import("//build/config/linux/pkg_config.gni") - import("//chrome/updater/zip.gni") - - # This target builds the updater executable and unittests. -@@ -13,18 +12,10 @@ group("linux") { - ] - } - --pkg_config("libcurl") { -- packages = [ "libcurl" ] --} -- --pkg_config("libsystemd") { -- packages = [ "libsystemd" ] --} -- - source_set("updater_executable") { - sources = [ "main.cc" ] - deps = [ "//chrome/updater:base" ] -- public_configs = [ ":libsystemd" ] -+ libs = [ "systemd" ] - } - - executable("updater") {