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 8B61A158064 for ; Fri, 3 May 2024 11:42:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 193EEE2AC3; Fri, 3 May 2024 11:42:23 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 B6A26E2ABF for ; Fri, 3 May 2024 11:42:22 +0000 (UTC) From: Sam James To: gentoo-dev@lists.gentoo.org Cc: base-system@gentoo.org, Sam James Subject: [gentoo-dev] [PATCH v2 3/3] gnuconfig.eclass: drop EAPI 5 support Date: Fri, 3 May 2024 12:41:48 +0100 Message-ID: <20240503114151.571218-3-sam@gentoo.org> X-Mailer: git-send-email 2.45.0 In-Reply-To: <20240503114151.571218-1-sam@gentoo.org> References: <20240503114151.571218-1-sam@gentoo.org> Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-dev@lists.gentoo.org Reply-to: gentoo-dev@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Archives-Salt: 0ddb55bf-fe69-4a91-a963-6c38682cf0e4 X-Archives-Hash: aebee7835e0cac7ac7c943cd96e71ad8 autotools.eclass hasn't had EAPI 5 support for ~2 years since 50710f3d0e8f19fab5571d9596c336314e96b5cf so this wasn't being used anyway (non-autotools.eclass use of gnuconfig.eclass is very niche). Signed-off-by: Sam James --- eclass/gnuconfig.eclass | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/eclass/gnuconfig.eclass b/eclass/gnuconfig.eclass index df3c748676082..fb73087aeacf4 100644 --- a/eclass/gnuconfig.eclass +++ b/eclass/gnuconfig.eclass @@ -6,7 +6,7 @@ # Sam James # @AUTHOR: # Will Woods -# @SUPPORTED_EAPIS: 5 6 7 8 +# @SUPPORTED_EAPIS: 6 7 8 # @BLURB: Refresh bundled gnuconfig files (config.guess, config.sub) # @DESCRIPTION: # This eclass is used to automatically update files that typically come with @@ -17,7 +17,7 @@ # case ${EAPI:-0} in - 5|6|7|8) ;; + 6|7|8) ;; *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac @@ -39,7 +39,7 @@ GNUCONFIG_DEPEND="sys-devel/gnuconfig" : "${GNUCONFIG_AUTO_DEPEND:=yes}" if [[ ${GNUCONFIG_AUTO_DEPEND} != "no" ]] ; then case ${EAPI} in - 5|6) DEPEND=${GNUCONFIG_DEPEND} ;; + 6) DEPEND=${GNUCONFIG_DEPEND} ;; *) BDEPEND=${GNUCONFIG_DEPEND} ;; esac fi @@ -122,7 +122,7 @@ gnuconfig_findnewest() { local prefix case ${EAPI} in - 5|6) + 6) prefix="${EPREFIX}" ;; *) -- 2.45.0