diff options
author | Matt Smith <matt@offtopica.uk> | 2021-07-18 15:29:46 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2021-08-03 13:13:50 +0200 |
commit | 421d7a318b766cd83a7bb042279c8364ed947094 (patch) | |
tree | ec58d35991c63ce0f6b11315a1531dca0f09037f /eclass/optfeature.eclass | |
parent | dev-python/rq: Remove old (diff) | |
download | gentoo-421d7a318b766cd83a7bb042279c8364ed947094.tar.gz gentoo-421d7a318b766cd83a7bb042279c8364ed947094.tar.bz2 gentoo-421d7a318b766cd83a7bb042279c8364ed947094.zip |
optfeature.eclass: EAPI 8 support
Signed-off-by: Matt Smith <matt@offtopica.uk>
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'eclass/optfeature.eclass')
-rw-r--r-- | eclass/optfeature.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/optfeature.eclass b/eclass/optfeature.eclass index 8fc346c3ac6a..b853f61be32a 100644 --- a/eclass/optfeature.eclass +++ b/eclass/optfeature.eclass @@ -4,11 +4,11 @@ # @ECLASS: optfeature.eclass # @MAINTAINER: # base-system@gentoo.org -# @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 |