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 63A2E158003 for ; Sat, 8 Oct 2022 17:00:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AFEEAE08A8; Sat, 8 Oct 2022 17:00:00 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 pigeon.gentoo.org (Postfix) with ESMTPS id 9BBF6E08A8 for ; Sat, 8 Oct 2022 17:00:00 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D9D23340E9F for ; Sat, 8 Oct 2022 16:59:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7D63555B for ; Sat, 8 Oct 2022 16:59:58 +0000 (UTC) From: "Stephan Hartmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Stephan Hartmann" Message-ID: <1665248393.8e1c1b2165a0482df7ba7c9ee453f645220efaa1.sultan@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-client/chromium/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-client/chromium/chromium-106.0.5249.103.ebuild www-client/chromium/chromium-107.0.5304.29.ebuild www-client/chromium/chromium-108.0.5327.0.ebuild X-VCS-Directories: www-client/chromium/ X-VCS-Committer: sultan X-VCS-Committer-Name: Stephan Hartmann X-VCS-Revision: 8e1c1b2165a0482df7ba7c9ee453f645220efaa1 X-VCS-Branch: master Date: Sat, 8 Oct 2022 16:59:58 +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: 7b517198-a36b-46df-8027-d2a2ad3a0c2d X-Archives-Hash: 7ee35df4e550bc5109bafea3d530b740 commit: 8e1c1b2165a0482df7ba7c9ee453f645220efaa1 Author: Stephan Hartmann gentoo org> AuthorDate: Sat Oct 8 16:58:35 2022 +0000 Commit: Stephan Hartmann gentoo org> CommitDate: Sat Oct 8 16:59:53 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e1c1b21 www-client/chromium: disable skipping typechecking Closes: https://bugs.gentoo.org/876157 Signed-off-by: Stephan Hartmann gentoo.org> www-client/chromium/chromium-106.0.5249.103.ebuild | 5 +++++ www-client/chromium/chromium-107.0.5304.29.ebuild | 5 +++++ www-client/chromium/chromium-108.0.5327.0.ebuild | 5 +++++ 3 files changed, 15 insertions(+) diff --git a/www-client/chromium/chromium-106.0.5249.103.ebuild b/www-client/chromium/chromium-106.0.5249.103.ebuild index f77e3d8651e8..dccdddcc2720 100644 --- a/www-client/chromium/chromium-106.0.5249.103.ebuild +++ b/www-client/chromium/chromium-106.0.5249.103.ebuild @@ -955,6 +955,11 @@ chromium_configure() { third_party/crc32c/src/src/crc32c_arm64.cc || die fi + # skipping typecheck is only supported on amd64, bug #876157 + if ! use amd64; then + myconf_gn+=" devtools_skip_typecheck=false" + fi + einfo "Configuring Chromium..." set -- gn gen --args="${myconf_gn} ${EXTRA_GN}" out/Release echo "$@" diff --git a/www-client/chromium/chromium-107.0.5304.29.ebuild b/www-client/chromium/chromium-107.0.5304.29.ebuild index 94b63b95ac57..76ce6ce22dbd 100644 --- a/www-client/chromium/chromium-107.0.5304.29.ebuild +++ b/www-client/chromium/chromium-107.0.5304.29.ebuild @@ -972,6 +972,11 @@ chromium_configure() { third_party/crc32c/src/src/crc32c_arm64.cc || die fi + # skipping typecheck is only supported on amd64, bug #876157 + if ! use amd64; then + myconf_gn+=" devtools_skip_typecheck=false" + fi + einfo "Configuring Chromium..." set -- gn gen --args="${myconf_gn} ${EXTRA_GN}" out/Release echo "$@" diff --git a/www-client/chromium/chromium-108.0.5327.0.ebuild b/www-client/chromium/chromium-108.0.5327.0.ebuild index f0f89a7f409e..c7fa92deec98 100644 --- a/www-client/chromium/chromium-108.0.5327.0.ebuild +++ b/www-client/chromium/chromium-108.0.5327.0.ebuild @@ -972,6 +972,11 @@ chromium_configure() { third_party/crc32c/src/src/crc32c_arm64.cc || die fi + # skipping typecheck is only supported on amd64, bug #876157 + if ! use amd64; then + myconf_gn+=" devtools_skip_typecheck=false" + fi + einfo "Configuring Chromium..." set -- gn gen --args="${myconf_gn} ${EXTRA_GN}" out/Release echo "$@"