diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2021-03-12 13:37:08 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2021-03-12 16:10:43 +0100 |
commit | 43389b4d17a337d126f3c81f84ffe3987d1c1b68 (patch) | |
tree | 6062d9a5f2f5e9efd021eb96d53bd858af804d06 /eclass/aspell-dict-r1.eclass | |
parent | app-dicts/aspell-sr: EAPI-7 bump (diff) | |
download | gentoo-43389b4d17a337d126f3c81f84ffe3987d1c1b68.tar.gz gentoo-43389b4d17a337d126f3c81f84ffe3987d1c1b68.tar.bz2 gentoo-43389b4d17a337d126f3c81f84ffe3987d1c1b68.zip |
aspell-dict-r1.eclass: Drop EAPI-6 support
Bug: https://bugs.gentoo.org/770259
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'eclass/aspell-dict-r1.eclass')
-rw-r--r-- | eclass/aspell-dict-r1.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/aspell-dict-r1.eclass b/eclass/aspell-dict-r1.eclass index e44e9eb1eb6c..89f7b954dd68 100644 --- a/eclass/aspell-dict-r1.eclass +++ b/eclass/aspell-dict-r1.eclass @@ -7,7 +7,7 @@ # @AUTHOR: # Original author: Seemant Kulleen # -r1 author: David Seifert -# @SUPPORTED_EAPIS: 6 7 +# @SUPPORTED_EAPIS: 7 # @BLURB: An eclass to streamline the construction of ebuilds for new aspell dicts # @DESCRIPTION: # The aspell-dict-r1 eclass is designed to streamline the construction of @@ -31,10 +31,10 @@ # it needs to be overridden before inheriting the eclass. case ${EAPI:-0} in - [0-5]) + [0-6]) die "aspell-dict-r1.eclass is banned in EAPI ${EAPI:-0}" ;; - [67]) + 7) ;; *) die "Unknown EAPI ${EAPI:-0}" |