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 9C61D158090 for ; Tue, 17 May 2022 05:34:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B7D10E0965; Tue, 17 May 2022 05:34:53 +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 9AA70E0965 for ; Tue, 17 May 2022 05:34:53 +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 BA31B341A6F 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 2532D47E for ; Tue, 17 May 2022 05:34:50 +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: <1652765631.b4ab47a864c32b557ff605b950a168d02d54a773.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-office/gnucash/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-office/gnucash/gnucash-4.4.ebuild app-office/gnucash/gnucash-4.5.ebuild app-office/gnucash/gnucash-4.8.ebuild X-VCS-Directories: app-office/gnucash/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: b4ab47a864c32b557ff605b950a168d02d54a773 X-VCS-Branch: master Date: Tue, 17 May 2022 05:34:50 +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: 21682a4d-5bff-4c03-b7d7-ff09fb13d059 X-Archives-Hash: 236bc767c6b2b0cae3997ca50dbad4d9 commit: b4ab47a864c32b557ff605b950a168d02d54a773 Author: Sam James gentoo org> AuthorDate: Tue May 17 01:48:39 2022 +0000 Commit: Sam James gentoo org> CommitDate: Tue May 17 05:33:51 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4ab47a8 app-office/gnucash: [QA] drop (very) stale GCC version checks Signed-off-by: Sam James gentoo.org> app-office/gnucash/gnucash-4.4.ebuild | 18 +----------------- app-office/gnucash/gnucash-4.5.ebuild | 18 +----------------- app-office/gnucash/gnucash-4.8.ebuild | 16 ---------------- 3 files changed, 2 insertions(+), 50 deletions(-) diff --git a/app-office/gnucash/gnucash-4.4.ebuild b/app-office/gnucash/gnucash-4.4.ebuild index 09ce9038f1bf..8f020d3cb3eb 100644 --- a/app-office/gnucash/gnucash-4.4.ebuild +++ b/app-office/gnucash/gnucash-4.4.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 @@ -82,10 +82,6 @@ BDEPEND=" dev-lang/swig dev-util/cmake virtual/pkgconfig - || ( - >=sys-devel/gcc-8:* - >=sys-devel/clang-6:* - ) " PDEPEND="doc? ( @@ -102,18 +98,6 @@ PATCHES=( S="${WORKDIR}/${PN}-$(ver_cut 1-2)" -pkg_pretend() { - if tc-is-gcc; then - if [[ $(gcc-major-version) -lt 8 ]]; then - die "GnuCash needs at least GCC version 8." - fi - elif tc-is-clang; then - if [[ $(clang-major-version) -lt 6 ]]; then - die "GnuCash needs at least clang version 6." - fi - fi -} - pkg_setup() { use python && python-single-r1_pkg_setup xdg_environment_reset diff --git a/app-office/gnucash/gnucash-4.5.ebuild b/app-office/gnucash/gnucash-4.5.ebuild index 7c45aa93aa2c..11cdf2fabdfe 100644 --- a/app-office/gnucash/gnucash-4.5.ebuild +++ b/app-office/gnucash/gnucash-4.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 @@ -86,10 +86,6 @@ BDEPEND=" dev-lang/swig dev-util/cmake virtual/pkgconfig - || ( - >=sys-devel/gcc-8:* - >=sys-devel/clang-6:* - ) " PDEPEND="doc? ( @@ -104,18 +100,6 @@ PATCHES=( S="${WORKDIR}/${PN}-$(ver_cut 1-2)" -pkg_pretend() { - if tc-is-gcc; then - if [[ $(gcc-major-version) -lt 8 ]]; then - die "GnuCash needs at least GCC version 8." - fi - elif tc-is-clang; then - if [[ $(clang-major-version) -lt 6 ]]; then - die "GnuCash needs at least clang version 6." - fi - fi -} - pkg_setup() { use python && python-single-r1_pkg_setup xdg_environment_reset diff --git a/app-office/gnucash/gnucash-4.8.ebuild b/app-office/gnucash/gnucash-4.8.ebuild index 9bfefda763d3..621b83ea81b0 100644 --- a/app-office/gnucash/gnucash-4.8.ebuild +++ b/app-office/gnucash/gnucash-4.8.ebuild @@ -86,10 +86,6 @@ BDEPEND=" dev-lang/swig dev-util/cmake virtual/pkgconfig - || ( - >=sys-devel/gcc-8:* - >=sys-devel/clang-6:* - ) " PDEPEND="doc? ( @@ -104,18 +100,6 @@ PATCHES=( S="${WORKDIR}/${PN}-$(ver_cut 1-2)" -pkg_pretend() { - if tc-is-gcc; then - if [[ $(gcc-major-version) -lt 8 ]]; then - die "GnuCash needs at least GCC version 8." - fi - elif tc-is-clang; then - if [[ $(clang-major-version) -lt 6 ]]; then - die "GnuCash needs at least clang version 6." - fi - fi -} - pkg_setup() { use python && python-single-r1_pkg_setup xdg_environment_reset