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 BB37515800A for ; Mon, 14 Aug 2023 10:16:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 07FD12BC025; Mon, 14 Aug 2023 10:16:18 +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 pigeon.gentoo.org (Postfix) with ESMTPS id 7B1C72BC025 for ; Mon, 14 Aug 2023 10:16:17 +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 81922335D17 for ; Mon, 14 Aug 2023 10:16:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D5A84F89 for ; Mon, 14 Aug 2023 10:16:14 +0000 (UTC) From: "Marek Szuba" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Marek Szuba" Message-ID: <1692007245.f12ab208fc51d893e7ffc18b1e17479f337bb89b.marecki@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/easyeffects/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/easyeffects/easyeffects-7.0.7.ebuild X-VCS-Directories: media-sound/easyeffects/ X-VCS-Committer: marecki X-VCS-Committer-Name: Marek Szuba X-VCS-Revision: f12ab208fc51d893e7ffc18b1e17479f337bb89b X-VCS-Branch: master Date: Mon, 14 Aug 2023 10:16:14 +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: a7ec75e3-3f45-467f-9672-673a2cf72f61 X-Archives-Hash: 439e078da9b4fef6792d16afe70326b6 commit: f12ab208fc51d893e7ffc18b1e17479f337bb89b Author: Marek Szuba gentoo org> AuthorDate: Mon Aug 14 10:00:45 2023 +0000 Commit: Marek Szuba gentoo org> CommitDate: Mon Aug 14 10:00:45 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f12ab208 media-sound/easyeffects: allow building with >=sys-devel/clang-16 Closes: https://bugs.gentoo.org/910310 Signed-off-by: Marek Szuba gentoo.org> media-sound/easyeffects/easyeffects-7.0.7.ebuild | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/media-sound/easyeffects/easyeffects-7.0.7.ebuild b/media-sound/easyeffects/easyeffects-7.0.7.ebuild index 480d947feca9..14f68e4eecc4 100644 --- a/media-sound/easyeffects/easyeffects-7.0.7.ebuild +++ b/media-sound/easyeffects/easyeffects-7.0.7.ebuild @@ -58,9 +58,10 @@ BDEPEND="dev-libs/appstream-glib pkg_pretend() { if [[ ${MERGE_TYPE} != "binary" ]] ; then if ! tc-is-gcc; then - die "Since version 6.3.0 ${PN} only supports GCC due to required level of C++20 support" - fi - if [[ $(gcc-major-version) -lt 11 ]] ; then + if ! tc-is-clang || [[ $(clang-major-version) -lt 16 ]]; then + die "${PN} can only be built with GCC or >=Clang-16 due to required level of C++20 support" + fi + elif [[ $(gcc-major-version) -lt 11 ]] ; then die "Since version 6.2.5 ${PN} requires GCC 11 or newer to build (Bug #848072)" fi fi