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 849281580C6 for ; Wed, 5 Apr 2023 21:05:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A8F58E079C; Wed, 5 Apr 2023 21:05:16 +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 87ADAE079C for ; Wed, 5 Apr 2023 21:05:16 +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 02D3C335D4C for ; Wed, 5 Apr 2023 21:05:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 695A6A16 for ; Wed, 5 Apr 2023 21:05:13 +0000 (UTC) From: "James Le Cuirot" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "James Le Cuirot" Message-ID: <1680728684.d4d1a7d02e2e2e8642925d76f2c7ba3045033eaf.chewi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-client/vivaldi-snapshot/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-client/vivaldi-snapshot/vivaldi-snapshot-5.8.2970.3.ebuild X-VCS-Directories: www-client/vivaldi-snapshot/ X-VCS-Committer: chewi X-VCS-Committer-Name: James Le Cuirot X-VCS-Revision: d4d1a7d02e2e2e8642925d76f2c7ba3045033eaf X-VCS-Branch: master Date: Wed, 5 Apr 2023 21:05: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: ff0a1d19-4193-4c74-b0b1-3f80e4b65bf9 X-Archives-Hash: 377afb1ab6309272913bf57114cca731 commit: d4d1a7d02e2e2e8642925d76f2c7ba3045033eaf Author: James Le Cuirot gentoo org> AuthorDate: Wed Apr 5 20:59:16 2023 +0000 Commit: James Le Cuirot gentoo org> CommitDate: Wed Apr 5 21:04:44 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4d1a7d0 www-client/vivaldi-snapshot: Check for CPU_FREQ in Linux kernel config Vivaldi reportedly crashes without a CPU frequency driver present. The reporter mentioned X86_AMD_PSTATE and X86_INTEL_PSTATE specifically, but linux-info.eclass is quite basic. Even if I made this conditional on the amd64 USE flag, my AMD system does not have X86_INTEL_PSTATE enabled. CPU_FREQ will not guarantee that you have any appropriate driver enabled, but at least it will nudge you in the right direction. This is arguably a Chromium bug anyway, so hopefully it will be addressed upstream. Closes: https://bugs.gentoo.org/903518 Signed-off-by: James Le Cuirot gentoo.org> www-client/vivaldi-snapshot/vivaldi-snapshot-5.8.2970.3.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/www-client/vivaldi-snapshot/vivaldi-snapshot-5.8.2970.3.ebuild b/www-client/vivaldi-snapshot/vivaldi-snapshot-5.8.2970.3.ebuild index 9c296c0f9dbd..28280ba78958 100644 --- a/www-client/vivaldi-snapshot/vivaldi-snapshot-5.8.2970.3.ebuild +++ b/www-client/vivaldi-snapshot/vivaldi-snapshot-5.8.2970.3.ebuild @@ -84,7 +84,7 @@ CHROMIUM_LANGS=" zh-TW " -inherit chromium-2 desktop unpacker xdg +inherit chromium-2 desktop linux-info unpacker xdg VIVALDI_PN="${PN/%vivaldi/vivaldi-stable}" VIVALDI_HOME="opt/${PN}" @@ -145,6 +145,7 @@ RDEPEND=" " QA_PREBUILT="*" +CONFIG_CHECK="~CPU_FREQ" S="${WORKDIR}" src_unpack() {