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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 25A8D158086 for ; Sat, 1 Jan 2022 14:12:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 02AB12BC016; Sat, 1 Jan 2022 14:12:15 +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 451082BC016 for ; Sat, 1 Jan 2022 14:12:12 +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 DF48A34317B for ; Sat, 1 Jan 2022 14:12:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2534C26A for ; Sat, 1 Jan 2022 14:12:08 +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: <1641046257.3d14f524eb0d5369e57a0f13127bcd5341732a09.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.1.5.ebuild X-VCS-Directories: media-sound/easyeffects/ X-VCS-Committer: marecki X-VCS-Committer-Name: Marek Szuba X-VCS-Revision: 3d14f524eb0d5369e57a0f13127bcd5341732a09 X-VCS-Branch: master Date: Sat, 1 Jan 2022 14:12: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: cf70c02d-7981-454f-9be1-6d89f3e14ad0 X-Archives-Hash: 9470823052c9fad7d9567f4dadc2157d commit: 3d14f524eb0d5369e57a0f13127bcd5341732a09 Author: Marek Szuba gentoo org> AuthorDate: Sat Jan 1 14:01:04 2022 +0000 Commit: Marek Szuba gentoo org> CommitDate: Sat Jan 1 14:10:57 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d14f524 media-sound/easyeffects: update "no C++20 support" error message gcc versions older than 10 require -std value "c++2a" rather than "c++20". Since tests and research conducted by the user who reported this problem show that easyeffects-6 cannot be built using gcc-9 owing to the fact the library has only been available in gcc since 10.1 (fortunately we do not have to handle the 10.0 case here because the oldest gcc-10 version currently in the tree is 10.3.0), along with the age of gcc-9, we shan't even bother even bother patching meson.build to support the old value. Closes: https://bugs.gentoo.org/830256 Signed-off-by: Marek Szuba gentoo.org> media-sound/easyeffects/easyeffects-6.1.5.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/media-sound/easyeffects/easyeffects-6.1.5.ebuild b/media-sound/easyeffects/easyeffects-6.1.5.ebuild index e2384d6fb9ab..7a4a2e6d2b7d 100644 --- a/media-sound/easyeffects/easyeffects-6.1.5.ebuild +++ b/media-sound/easyeffects/easyeffects-6.1.5.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -61,7 +61,7 @@ BDEPEND="dev-libs/appstream-glib pkg_pretend() { if [[ ${MERGE_TYPE} != "binary" ]] ; then if ! test-flag-CXX -std=c++20 ; then - die "You need at least GCC 8 or Clang 10 for C++20-specific compiler flags" + die "${PN} requires degree of C++20 support only available since GCC 10 or Clang 10" fi fi }