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 4C60D158090 for ; Tue, 17 May 2022 05:34:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 85676E096A; Tue, 17 May 2022 05:34:54 +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 6EC01E096A for ; Tue, 17 May 2022 05:34:54 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 A6013341A6C for ; Tue, 17 May 2022 05:34:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 000A3477 for ; Tue, 17 May 2022 05:34:49 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1652765629.b0a8cf700b591251e35fbefbf7e5bb826d0ae3af.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/pinentry/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/pinentry/pinentry-1.1.1-r1.ebuild app-crypt/pinentry/pinentry-1.2.0.ebuild X-VCS-Directories: app-crypt/pinentry/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: b0a8cf700b591251e35fbefbf7e5bb826d0ae3af X-VCS-Branch: master Date: Tue, 17 May 2022 05:34:49 +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: 0c7e6893-4549-439e-b194-d8775b44f7f9 X-Archives-Hash: 072e8457569d74fedd8ba6102a91c6ca commit: b0a8cf700b591251e35fbefbf7e5bb826d0ae3af Author: Sam James gentoo org> AuthorDate: Tue May 17 01:48:19 2022 +0000 Commit: Sam James gentoo org> CommitDate: Tue May 17 05:33:49 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0a8cf70 app-crypt/pinentry: [QA] drop (very) stale GCC version checks Signed-off-by: Sam James gentoo.org> app-crypt/pinentry/pinentry-1.1.1-r1.ebuild | 4 ++-- app-crypt/pinentry/pinentry-1.2.0.ebuild | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app-crypt/pinentry/pinentry-1.1.1-r1.ebuild b/app-crypt/pinentry/pinentry-1.1.1-r1.ebuild index 90e78ab84267..7611d6cd51e5 100644 --- a/app-crypt/pinentry/pinentry-1.1.1-r1.ebuild +++ b/app-crypt/pinentry/pinentry-1.1.1-r1.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 @@ -52,7 +52,7 @@ src_prepare() { } src_configure() { - [[ "$(gcc-major-version)" -ge 5 ]] && append-cxxflags -std=gnu++11 + append-cxxflags -std=gnu++11 export QTLIB="$(qt5_get_libdir)" diff --git a/app-crypt/pinentry/pinentry-1.2.0.ebuild b/app-crypt/pinentry/pinentry-1.2.0.ebuild index 367449ba15b4..f4a45f0f4b64 100644 --- a/app-crypt/pinentry/pinentry-1.2.0.ebuild +++ b/app-crypt/pinentry/pinentry-1.2.0.ebuild @@ -52,7 +52,7 @@ src_prepare() { } src_configure() { - [[ "$(gcc-major-version)" -ge 5 ]] && append-cxxflags -std=gnu++11 + append-cxxflags -std=gnu++11 export QTLIB="$(qt5_get_libdir)"