commit: 421d7a318b766cd83a7bb042279c8364ed947094 Author: Matt Smith <matt <AT> offtopica <DOT> uk> AuthorDate: Sun Jul 18 13:29:46 2021 +0000 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> CommitDate: Tue Aug 3 11:13:50 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=421d7a31
optfeature.eclass: EAPI 8 support Signed-off-by: Matt Smith <matt <AT> offtopica.uk> Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org> eclass/optfeature.eclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eclass/optfeature.eclass b/eclass/optfeature.eclass index 8fc346c3ac6..b853f61be32 100644 --- a/eclass/optfeature.eclass +++ b/eclass/optfeature.eclass @@ -4,11 +4,11 @@ # @ECLASS: optfeature.eclass # @MAINTAINER: # [email protected] -# @SUPPORTED_EAPIS: 0 1 2 3 4 5 6 7 +# @SUPPORTED_EAPIS: 0 1 2 3 4 5 6 7 8 # @BLURB: Advertise optional functionality that might be useful to users case ${EAPI:-0} in - [0-7]) ;; + [0-8]) ;; *) die "Unsupported EAPI=${EAPI} (unknown) for ${ECLASS}" ;; esac
