Mailing List Archive

[PATCH 1/8] gnuconfig.eclass: Support EAPI 8
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
Re: [PATCH 1/8] gnuconfig.eclass: Support EAPI 8 [ In reply to ]
> On 21 Jun 2021, at 17:49, Ulrich Müller <ulm@gentoo.org> wrote:
>
> Signed-off-by: Ulrich Müller <ulm@gentoo.org>
> ---
> eclass/gnuconfig.eclass | 9 +++------
> 1 file changed, 3 insertions(+), 6 deletions(-)

I'm happy with the whole series. Thanks for working on this.

sam
Re: [PATCH 1/8] gnuconfig.eclass: Support EAPI 8 [ In reply to ]
>>>>> On Mon, 21 Jun 2021, Sam James wrote:

> I'm happy with the whole series. Thanks for working on this.

Merged.