public inbox for gentoo-dev@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-dev] [PATCH 1/8] gnuconfig.eclass: Support EAPI 8
@ 2021-06-21 16:49 Ulrich Müller
  2021-06-21 16:49 ` [gentoo-dev] [PATCH 2/8] toolchain-funcs.eclass: " Ulrich Müller
                   ` (7 more replies)
  0 siblings, 8 replies; 15+ messages in thread
From: Ulrich Müller @ 2021-06-21 16:49 UTC (permalink / raw
  To: gentoo-dev; +Cc: Ulrich Müller

Signed-off-by: Ulrich Müller <ulm@gentoo.org>
---
 eclass/gnuconfig.eclass | 9 +++------
 1 file changed, 3 insertions(+), 6 deletions(-)

diff --git a/eclass/gnuconfig.eclass b/eclass/gnuconfig.eclass
index 173df6fd25e9..58bdcfd660a6 100644
--- a/eclass/gnuconfig.eclass
+++ b/eclass/gnuconfig.eclass
@@ -6,7 +6,7 @@
 # Sam James <sam@gentoo.org>
 # @AUTHOR:
 # Will Woods <wwoods@gentoo.org>
-# @SUPPORTED_EAPIS: 5 6 7
+# @SUPPORTED_EAPIS: 5 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,11 +17,8 @@
 #
 
 case ${EAPI:-0} in
-	5|6|7)
-		;;
-	*)
-		die "EAPI ${EAPI} is unsupported!"
-		;;
+	5|6|7|8) ;;
+	*) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;;
 esac
 
 if [[ -z ${_GNUCONFIG_ECLASS} ]] ; then
-- 
2.32.0



^ permalink raw reply related	[flat|nested] 15+ messages in thread

end of thread, other threads:[~2021-06-23 10:24 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-06-21 16:49 [gentoo-dev] [PATCH 1/8] gnuconfig.eclass: Support EAPI 8 Ulrich Müller
2021-06-21 16:49 ` [gentoo-dev] [PATCH 2/8] toolchain-funcs.eclass: " Ulrich Müller
2021-06-21 17:09   ` Sergei Trofimovich
2021-06-21 16:49 ` [gentoo-dev] [PATCH 3/8] multilib.eclass: " Ulrich Müller
2021-06-21 17:10   ` Sergei Trofimovich
2021-06-21 16:49 ` [gentoo-dev] [PATCH 4/8] multilib.eclass: Update a comment Ulrich Müller
2021-06-21 17:11   ` Sergei Trofimovich
2021-06-21 16:49 ` [gentoo-dev] [PATCH 5/8] libtool.eclass: Support EAPI 8 Ulrich Müller
2021-06-21 16:49 ` [gentoo-dev] [PATCH 6/8] flag-o-matic.eclass: " Ulrich Müller
2021-06-21 17:12   ` Sergei Trofimovich
2021-06-21 16:49 ` [gentoo-dev] [PATCH 7/8] git-r3.eclass: Support EAPI 8, drop support for EAPI 4 Ulrich Müller
2021-06-21 17:25   ` Michał Górny
2021-06-21 16:49 ` [gentoo-dev] [PATCH 8/8] git-r3.eclass: Remove git-2 backwards compatibility code Ulrich Müller
2021-06-21 20:39 ` [gentoo-dev] [PATCH 1/8] gnuconfig.eclass: Support EAPI 8 Sam James
2021-06-23 10:23   ` Ulrich Mueller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox