From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 finch.gentoo.org (Postfix) with ESMTPS id 4680D1582EF for ; Sat, 22 Feb 2025 22:08:16 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 2D6713431F2 for ; Sat, 22 Feb 2025 22:08:16 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 299491102A2; Sat, 22 Feb 2025 22:08:15 +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 bobolink.gentoo.org (Postfix) with ESMTPS id 1DC341102A2 for ; Sat, 22 Feb 2025 22:08:15 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C2AFB3431E4 for ; Sat, 22 Feb 2025 22:08:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1C441263B for ; Sat, 22 Feb 2025 22:08:13 +0000 (UTC) From: "Matt Jolly" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Jolly" Message-ID: <1740261449.8e83e8160b3eb4826d3bdb3f30821d067a6fa166.kangie@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-client/chromium/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-client/chromium/chromium-134.0.6998.23.ebuild www-client/chromium/chromium-135.0.7012.4.ebuild X-VCS-Directories: www-client/chromium/ X-VCS-Committer: kangie X-VCS-Committer-Name: Matt Jolly X-VCS-Revision: 8e83e8160b3eb4826d3bdb3f30821d067a6fa166 X-VCS-Branch: master Date: Sat, 22 Feb 2025 22:08:13 +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: fd54efe7-52a5-4e3c-a242-00f71379ffb4 X-Archives-Hash: e31c426597db3c9032ee4a43837f4522 commit: 8e83e8160b3eb4826d3bdb3f30821d067a6fa166 Author: Matt Jolly gentoo org> AuthorDate: Sat Feb 22 21:57:29 2025 +0000 Commit: Matt Jolly gentoo 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 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