diff options
author | arenekosreal | 2025-03-09 09:18:22 +0800 |
---|---|---|
committer | Zhang Hua | 2025-03-31 13:12:34 +0800 |
commit | 3e49040cb3699306c3f89342205fc04d85d7537d (patch) | |
tree | 797941bac173ef852ef3bf0a816da87eb6616887 /PKGBUILD | |
parent | 59b104198cc299c4c81baf0769c9abcefcc5fb20 (diff) | |
download | aur-3e49040cb3699306c3f89342205fc04d85d7537d.tar.gz |
Bump to 134.0.6998.35
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 14 |
1 files changed, 10 insertions, 4 deletions
@@ -12,7 +12,7 @@ # binary version of this package (-bin): github.com/noahvogt/ungoogled-chromium-xdg-bin-aur pkgname=ungoogled-chromium-xdg -pkgver=133.0.6943.141 +pkgver=134.0.6998.35 pkgrel=1 _launcher_ver=8 _manual_clone=0 @@ -39,11 +39,11 @@ source=(https://commondatastorage.googleapis.com/chromium-browser-official/chrom compiler-rt-adjust-paths.patch increase-fortify-level.patch use-oauth2-client-switches-as-default.patch) -sha256sums=('0b3b15aa03f128a6b3d7ff67a7492bfaa2ffbb4acd80664b9ff320fd470c68be' +sha256sums=('d77f09bfa9bda8bbc4638ead83339d5ec52e39032c5a7047060dfdf94b767be7' '213e50f48b67feb4441078d50b0fd431df34323be15be97c55302d3fdac4483a' 'b3de01b7df227478687d7517f61a777450dca765756002c80c4915f271e2d961' 'd634d2ce1fc63da7ac41f432b1e84c59b7cceabf19d510848a7cff40c8025342' - '6de648d449159dd579e42db304aca0a36243f2ac1538f8d030473afbbc8ff475') + 'e6da901e4d0860058dc2f90c6bbcdc38a0cf4b0a69122000f62204f24fa7e374') # ungoogled-chromium-xdg patches source=(${source[@]} @@ -68,7 +68,7 @@ optdepends=("${optdepends[@]}" source=(${source[@]} ${pkgname%-*}-$_uc_ver.tar.gz::https://github.com/$_uc_usr/ungoogled-chromium/archive/refs/tags/$_uc_ver.tar.gz) sha256sums=(${sha256sums[@]} - '6aacc579b5e98eac601f83ee56c918d5f4363980ea1550ce5c9a2ed4a39452a1') + '272b8cf76e4124ea081655b1d11a56e5c8875d05dd2c83af2612db10e3ab6ce9') # 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 @@ -157,6 +157,11 @@ prepare() { # To link to rust libraries we need to compile with prebuilt clang ./tools/clang/scripts/update.py + elif ! find /usr/lib/rustlib | grep -q adler2; then + # Rust 1.86 ships adler2 but we need to change it to adler when + # using older Rust versions (idea for this borrowed from Gentoo) + sed -i 's/adler2/adler/' build/rust/std/BUILD.gn + fi @@ -230,6 +235,7 @@ build() { 'use_system_libffi=true' 'enable_widevine=true' 'enable_nacl=false' + 'use_qt5=true' 'use_qt6=true' 'moc_qt6_path="/usr/lib/qt6"' 'enable_platform_hevc=true' |