commit:     6bbec43dd536e6b62d69ffeb9ab5eb02e463f34f
Author:     Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Tue Dec  3 19:31:03 2024 +0000
Commit:     Conrad Kostecki <conikost <AT> gentoo <DOT> 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 <mmk <AT> levelnine.at>
Signed-off-by: Conrad Kostecki <conikost <AT> 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 <[email protected]>
-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 <[email protected]>
-Commit-Queue: Noah Rose Ledesma <[email protected]>
-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") {

Reply via email to