Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Wed, 23 Jun 2021 21:44:37
Message-Id: 1624484658.991ee6a9b2a150cfbe0bdd001cba00788da594f7.mgorny@gentoo
1 commit: 991ee6a9b2a150cfbe0bdd001cba00788da594f7
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jun 20 08:23:42 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Jun 23 21:44:18 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=991ee6a9
7
8 multibuild.eclass: Enable EAPI 8
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 eclass/multibuild.eclass | 8 ++++----
13 1 file changed, 4 insertions(+), 4 deletions(-)
14
15 diff --git a/eclass/multibuild.eclass b/eclass/multibuild.eclass
16 index 8f9612bc747..37568ebf87c 100644
17 --- a/eclass/multibuild.eclass
18 +++ b/eclass/multibuild.eclass
19 @@ -1,4 +1,4 @@
20 -# Copyright 1999-2020 Gentoo Authors
21 +# Copyright 1999-2021 Gentoo Authors
22 # Distributed under the terms of the GNU General Public License v2
23
24 # @ECLASS: multibuild.eclass
25 @@ -6,7 +6,7 @@
26 # Michał Górny <mgorny@g.o>
27 # @AUTHOR:
28 # Author: Michał Górny <mgorny@g.o>
29 -# @SUPPORTED_EAPIS: 4 5 6 7
30 +# @SUPPORTED_EAPIS: 4 5 6 7 8
31 # @BLURB: A generic eclass for building multiple variants of packages.
32 # @DESCRIPTION:
33 # The multibuild eclass aims to provide a generic framework for building
34 @@ -14,10 +14,10 @@
35 # implementations).
36
37 case "${EAPI:-0}" in
38 - 0|1|2|3)
39 + [0-3])
40 die "Unsupported EAPI=${EAPI:-0} (too old) for ${ECLASS}"
41 ;;
42 - 4|5|6|7)
43 + [4-8])
44 ;;
45 *)
46 die "Unsupported EAPI=${EAPI} (unknown) for ${ECLASS}"