diff options
author | Conrad Kostecki <conikost@gentoo.org> | 2021-07-04 17:40:10 +0200 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2021-07-07 21:47:25 +0200 |
commit | 9961f2fcb0d8065e06ba760c4dfdf75b21071c6e (patch) | |
tree | 66e6cbba3c6520de4f16c07ae58bbd9dabf5dfd1 /eclass | |
parent | sys-kernel/gentoo-kernel-bin: Bump to 5.4.130 (diff) | |
download | gentoo-9961f2fcb0d8065e06ba760c4dfdf75b21071c6e.tar.gz gentoo-9961f2fcb0d8065e06ba760c4dfdf75b21071c6e.tar.bz2 gentoo-9961f2fcb0d8065e06ba760c4dfdf75b21071c6e.zip |
eclass/aspell-dict-r1.eclass: add EAPI 8 support
This change adds EAPI 8 support. No further changes required.
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/aspell-dict-r1.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/aspell-dict-r1.eclass b/eclass/aspell-dict-r1.eclass index 24bc5ff27996..09f22dbf8c0c 100644 --- a/eclass/aspell-dict-r1.eclass +++ b/eclass/aspell-dict-r1.eclass @@ -7,7 +7,7 @@ # @AUTHOR: # Seemant Kulleen <seemant@gentoo.org> (original author) # David Seifert <soap@gentoo.org> (-r1 author) -# @SUPPORTED_EAPIS: 7 +# @SUPPORTED_EAPIS: 7 8 # @BLURB: An eclass to streamline the construction of ebuilds for new Aspell dictionaries. # @DESCRIPTION: # The aspell-dict-r1 eclass is designed to streamline the construction of ebuilds for @@ -40,7 +40,7 @@ case ${EAPI:-0} in [0-6]) die "${ECLASS} is banned in EAPI ${EAPI:-0}" ;; - 7) + [7-8]) ;; *) die "Unknown EAPI ${EAPI:-0}" |