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 56F3E158091 for ; Tue, 31 May 2022 22:11:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 88450E0900; Tue, 31 May 2022 22:11:31 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 7170FE0900 for ; Tue, 31 May 2022 22:11:31 +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 B4DDC341AF0 for ; Tue, 31 May 2022 22:11:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5574BD3 for ; Tue, 31 May 2022 22:11:28 +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: <1654035081.eef1288b2f659e19eb6656d28cc89d4606fefc24.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-6.2.5.ebuild X-VCS-Directories: media-sound/easyeffects/ X-VCS-Committer: marecki X-VCS-Committer-Name: Marek Szuba X-VCS-Revision: eef1288b2f659e19eb6656d28cc89d4606fefc24 X-VCS-Branch: master Date: Tue, 31 May 2022 22:11:28 +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: d1c89664-2852-4900-b1e5-9a88dff79ec6 X-Archives-Hash: 022fe84d5368b223ebda12d819e77a55 commit: eef1288b2f659e19eb6656d28cc89d4606fefc24 Author: Marek Szuba gentoo org> AuthorDate: Tue May 31 22:09:07 2022 +0000 Commit: Marek Szuba gentoo org> CommitDate: Tue May 31 22:11:21 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eef1288b media-sound/easyeffects-6.2.5: die if <=gcc-10 is used Upstream has made a conscious decision not to support older gcc version any more, see the comments in https://github.com/wwmm/easyeffects/issues/1510 . Closes: https://bugs.gentoo.org/848072 Signed-off-by: Marek Szuba gentoo.org> media-sound/easyeffects/easyeffects-6.2.5.ebuild | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/media-sound/easyeffects/easyeffects-6.2.5.ebuild b/media-sound/easyeffects/easyeffects-6.2.5.ebuild index fe870ff42fa7..098fd480a549 100644 --- a/media-sound/easyeffects/easyeffects-6.2.5.ebuild +++ b/media-sound/easyeffects/easyeffects-6.2.5.ebuild @@ -3,7 +3,7 @@ EAPI=8 -inherit gnome2-utils flag-o-matic meson +inherit gnome2-utils flag-o-matic meson toolchain-funcs DESCRIPTION="Limiter, auto volume and many other plugins for PipeWire applications" HOMEPAGE="https://github.com/wwmm/easyeffects" @@ -63,6 +63,10 @@ pkg_pretend() { if ! test-flag-CXX -std=c++20 ; then die "${PN} requires degree of C++20 support only available since GCC 10 or Clang 10" fi + + if tc-is-gcc && [[ $(gcc-major-version) -lt 11 ]] ; then + die "Since version 6.2.5 ${PN} requires GCC 11 or newer to build (Bug #848072)" + fi fi }