commit: 8e83e8160b3eb4826d3bdb3f30821d067a6fa166 Author: Matt Jolly <kangie <AT> gentoo <DOT> org> AuthorDate: Sat Feb 22 21:57:29 2025 +0000 Commit: Matt Jolly <kangie <AT> gentoo <DOT> org> CommitDate: Sat Feb 22 21:57:29 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e83e816
www-client/chromium: fix adler2 Rust version This actually made it in for 1.86.0 - Upstream use 'nightly' not 'beta'. Closes: https://bugs.gentoo.org/950040 Signed-off-by: Matt Jolly <kangie <AT> gentoo.org> www-client/chromium/chromium-134.0.6998.23.ebuild | 2 +- www-client/chromium/chromium-135.0.7012.4.ebuild | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/www-client/chromium/chromium-134.0.6998.23.ebuild b/www-client/chromium/chromium-134.0.6998.23.ebuild index 224cc082abb9..fb385a283552 100644 --- a/www-client/chromium/chromium-134.0.6998.23.ebuild +++ b/www-client/chromium/chromium-134.0.6998.23.ebuild @@ -486,7 +486,7 @@ src_prepare() { # Upstream Rust replaced adler with adler2, for older versions of Rust we still need # to tell GN that we have the older lib when it tries to copy the Rust sysroot # into the bulid directory. - if ver_test ${RUST_SLOT} -lt "1.85.0"; then + if ver_test ${RUST_SLOT} -lt "1.86.0"; then sed -i 's/adler2/adler/' build/rust/std/BUILD.gn || die "Failed to tell GN that we have adler and not adler2" fi diff --git a/www-client/chromium/chromium-135.0.7012.4.ebuild b/www-client/chromium/chromium-135.0.7012.4.ebuild index 124e266cb643..0768dbc5a741 100644 --- a/www-client/chromium/chromium-135.0.7012.4.ebuild +++ b/www-client/chromium/chromium-135.0.7012.4.ebuild @@ -486,7 +486,7 @@ src_prepare() { # Upstream Rust replaced adler with adler2, for older versions of Rust we still need # to tell GN that we have the older lib when it tries to copy the Rust sysroot # into the bulid directory. - if ver_test ${RUST_SLOT} -lt "1.85.0"; then + if ver_test ${RUST_SLOT} -lt "1.86.0"; then sed -i 's/adler2/adler/' build/rust/std/BUILD.gn || die "Failed to tell GN that we have adler and not adler2" fi
