diff options
author | networkException <ungoogled-github-actions.arch@nwex.de> | 2024-09-22 18:34:25 +0000 |
---|---|---|
committer | networkException <ungoogled-github-actions.arch@nwex.de> | 2024-09-22 18:34:25 +0000 |
commit | ed960051115c3af82f808170b78bba17ce7661f4 (patch) | |
tree | b61a7738fb48fb74ddf18331d062c6b528ab3d41 | |
parent | 3bfa54e8f8dd2470d1816c15044e2b6d1633a378 (diff) | |
download | ungoogled-chromium-ed960051115c3af82f808170b78bba17ce7661f4.tar.gz ungoogled-chromium-ed960051115c3af82f808170b78bba17ce7661f4.tar.bz2 ungoogled-chromium-ed960051115c3af82f808170b78bba17ce7661f4.zip |
Upgrade to 129.0.6668.58-1
-rw-r--r-- | .SRCINFO | 2 | ||||
-rw-r--r-- | PKGBUILD | 8 | ||||
-rw-r--r-- | fix-ungoogled-third-party-re2.patch | 20 |
3 files changed, 28 insertions, 2 deletions
@@ -72,6 +72,7 @@ pkgbase = ungoogled-chromium source = 0001-vaapi-flag-ozone-wayland.patch source = p010-Zero-Copy-for-VA-API-Decoding-for-Vulkan.patch source = add-feature-to-allow-zero-copy-video-formats.patch + source = fix-ungoogled-third-party-re2.patch sha256sums = eaf850183d32627ce0cde9f3d3f853bc11c217ef7f41540303214ed47803d96d sha256sums = a52872325dcf1121acbabec781edfabe068a50a9080e81e69b249dd6301f2eac sha256sums = 213e50f48b67feb4441078d50b0fd431df34323be15be97c55302d3fdac4483a @@ -85,5 +86,6 @@ pkgbase = ungoogled-chromium sha256sums = 9a5594293616e1390462af1f50276ee29fd6075ffab0e3f944f6346cb2eb8aec sha256sums = 40db59162df2b7a2c0387bd620802f15424f637c09ba305b674fc09410ab21d1 sha256sums = 713dab4f8c26790c0e4a4c5ce6a9269e90446df5370cc14214a01a363f7afe39 + sha256sums = ffa3cf9d1386bd1a2c400c09ddf2790f125f44ccf108d1a3c62a21cd7fb1ff09 pkgname = ungoogled-chromium @@ -47,7 +47,8 @@ source=(https://commondatastorage.googleapis.com/chromium-browser-official/chrom 0001-ozone-wayland-implement-text_input_manager-fixes.patch 0001-vaapi-flag-ozone-wayland.patch p010-Zero-Copy-for-VA-API-Decoding-for-Vulkan.patch - add-feature-to-allow-zero-copy-video-formats.patch) + add-feature-to-allow-zero-copy-video-formats.patch + fix-ungoogled-third-party-re2.patch) sha256sums=('eaf850183d32627ce0cde9f3d3f853bc11c217ef7f41540303214ed47803d96d' 'a52872325dcf1121acbabec781edfabe068a50a9080e81e69b249dd6301f2eac' '213e50f48b67feb4441078d50b0fd431df34323be15be97c55302d3fdac4483a' @@ -60,7 +61,8 @@ sha256sums=('eaf850183d32627ce0cde9f3d3f853bc11c217ef7f41540303214ed47803d96d' 'a2da75d0c20529f2d635050e0662941c0820264ea9371eb900b9d90b5968fa6a' '9a5594293616e1390462af1f50276ee29fd6075ffab0e3f944f6346cb2eb8aec' '40db59162df2b7a2c0387bd620802f15424f637c09ba305b674fc09410ab21d1' - '713dab4f8c26790c0e4a4c5ce6a9269e90446df5370cc14214a01a363f7afe39') + '713dab4f8c26790c0e4a4c5ce6a9269e90446df5370cc14214a01a363f7afe39' + 'ffa3cf9d1386bd1a2c400c09ddf2790f125f44ccf108d1a3c62a21cd7fb1ff09') # Possible replacements are listed in build/linux/unbundle/replace_gn_files.py # Keys are the names in the above script; values are the dependencies in Arch @@ -123,6 +125,8 @@ prepare() { # Increase _FORTIFY_SOURCE level to match Arch's default flags patch -Np1 -i ../increase-fortify-level.patch + patch -Np1 -i ../fix-ungoogled-third-party-re2.patch + # Fixes for building with libstdc++ instead of libc++ # test deps are broken for ui/lens with system ICU diff --git a/fix-ungoogled-third-party-re2.patch b/fix-ungoogled-third-party-re2.patch new file mode 100644 index 0000000..1cf3202 --- /dev/null +++ b/fix-ungoogled-third-party-re2.patch @@ -0,0 +1,20 @@ +--- a/components/plus_addresses/BUILD.gn ++++ b/components/plus_addresses/BUILD.gn +@@ -95,6 +95,7 @@ source_set("plus_addresses") { + "//net", + "//services/data_decoder/public/cpp", + "//services/network/public/cpp", ++ "//third_party/re2", + "//ui/base", + ] + public_deps = [ +--- a/components/component_updater/installer_policies/BUILD.gn ++++ b/components/component_updater/installer_policies/BUILD.gn +@@ -45,6 +45,7 @@ static_library("installer_policies_no_co + "//components/update_client", + "//mojo/public/cpp/base:protobuf_support", + "//services/network/public/cpp", ++ "//third_party/re2", + ] + + # Disallow depending on content. |