diff options
author | Michał Górny <mgorny@gentoo.org> | 2021-06-20 10:23:42 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2021-06-23 23:44:18 +0200 |
commit | 991ee6a9b2a150cfbe0bdd001cba00788da594f7 (patch) | |
tree | ee2f950da8f62430a3066baf986e24e85eb9278a /eclass/multibuild.eclass | |
parent | python-r1.eclass: Update doc for -2/-3 arg removal (diff) | |
download | gentoo-991ee6a9b2a150cfbe0bdd001cba00788da594f7.tar.gz gentoo-991ee6a9b2a150cfbe0bdd001cba00788da594f7.tar.bz2 gentoo-991ee6a9b2a150cfbe0bdd001cba00788da594f7.zip |
multibuild.eclass: Enable EAPI 8
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'eclass/multibuild.eclass')
-rw-r--r-- | eclass/multibuild.eclass | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/eclass/multibuild.eclass b/eclass/multibuild.eclass index 8f9612bc747e..37568ebf87cc 100644 --- a/eclass/multibuild.eclass +++ b/eclass/multibuild.eclass @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # @ECLASS: multibuild.eclass @@ -6,7 +6,7 @@ # Michał Górny <mgorny@gentoo.org> # @AUTHOR: # Author: Michał Górny <mgorny@gentoo.org> -# @SUPPORTED_EAPIS: 4 5 6 7 +# @SUPPORTED_EAPIS: 4 5 6 7 8 # @BLURB: A generic eclass for building multiple variants of packages. # @DESCRIPTION: # The multibuild eclass aims to provide a generic framework for building @@ -14,10 +14,10 @@ # implementations). case "${EAPI:-0}" in - 0|1|2|3) + [0-3]) die "Unsupported EAPI=${EAPI:-0} (too old) for ${ECLASS}" ;; - 4|5|6|7) + [4-8]) ;; *) die "Unsupported EAPI=${EAPI} (unknown) for ${ECLASS}" |