From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C9AD4158649 for ; Tue, 9 May 2023 20:00:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ECE55E0788; Tue, 9 May 2023 20:00:11 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CEF10E0788 for ; Tue, 9 May 2023 20:00:11 +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 7AA6B33E02F for ; Tue, 9 May 2023 20:00:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AB34AA4F for ; Tue, 9 May 2023 20:00:08 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1683662405.58ddb821ec2969c6cadb18471900596a3d82b52f.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-client/chromium/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-client/chromium/chromium-113.0.5672.63.ebuild X-VCS-Directories: www-client/chromium/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: 58ddb821ec2969c6cadb18471900596a3d82b52f X-VCS-Branch: master Date: Tue, 9 May 2023 20:00:08 +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: 2fa6e320-2182-4f85-a851-66c074aedc8f X-Archives-Hash: 97dcfb4cb45a963820b8d40cd420b517 commit: 58ddb821ec2969c6cadb18471900596a3d82b52f Author: Mike Gilbert gentoo org> AuthorDate: Tue May 9 19:59:04 2023 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Tue May 9 20:00:05 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58ddb821 www-client/chromium: require GCC 12 Closes: https://bugs.gentoo.org/905794 Signed-off-by: Mike Gilbert gentoo.org> www-client/chromium/chromium-113.0.5672.63.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/www-client/chromium/chromium-113.0.5672.63.ebuild b/www-client/chromium/chromium-113.0.5672.63.ebuild index cdd81cb02473..89980d3b69a2 100644 --- a/www-client/chromium/chromium-113.0.5672.63.ebuild +++ b/www-client/chromium/chromium-113.0.5672.63.ebuild @@ -294,8 +294,8 @@ pkg_setup() { if [[ ${MERGE_TYPE} != binary ]]; then local -x CPP="$(tc-getCXX) -E" - if tc-is-gcc && ! ver_test "$(gcc-version)" -ge 10.4; then - die "At least gcc 10.4 is required" + if tc-is-gcc && ! ver_test "$(gcc-version)" -ge 12; then + die "At least gcc 12 is required" fi if use pgo && tc-is-cross-compiler; then die "The pgo USE flag cannot be used when cross-compiling"