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 6791D158064 for ; Fri, 3 May 2024 11:43:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AD453E2ACA; Fri, 3 May 2024 11:43:35 +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 97B71E2ABF for ; Fri, 3 May 2024 11:43:35 +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 DD813343062 for ; Fri, 3 May 2024 11:43:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4923019D9 for ; Fri, 3 May 2024 11:43:33 +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: <1714736459.1bb3b5e672ba80e446b4c9dc27918a80c97c1be9.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/gnuconfig.eclass X-VCS-Directories: eclass/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 1bb3b5e672ba80e446b4c9dc27918a80c97c1be9 X-VCS-Branch: master Date: Fri, 3 May 2024 11:43:33 +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: e1111360-d070-48e0-9ff8-ad6583ad3bc0 X-Archives-Hash: 1252a0593eeed97e97889ec732532718 commit: 1bb3b5e672ba80e446b4c9dc27918a80c97c1be9 Author: Sam James gentoo org> AuthorDate: Fri May 3 11:40:27 2024 +0000 Commit: Sam James gentoo org> CommitDate: Fri May 3 11:40:59 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1bb3b5e6 gnuconfig.eclass: drop EAPI 5 support 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 gentoo.org> eclass/gnuconfig.eclass | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/eclass/gnuconfig.eclass b/eclass/gnuconfig.eclass index df3c74867608..fb73087aeacf 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}" ;; *)