commit:     fb4728b063f6e805dc4e0054a408efa65591c2f6
Author:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Sun Jul  4 15:46:29 2021 +0000
Commit:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Wed Jul  7 19:47:26 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb4728b0

eclass/myspell-r2.eclass: add EAPI 8 support

This change adds EAPI 8 support. No further changes required.

Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>

 eclass/myspell-r2.eclass | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/eclass/myspell-r2.eclass b/eclass/myspell-r2.eclass
index e4d9ae69af3..c163e467799 100644
--- a/eclass/myspell-r2.eclass
+++ b/eclass/myspell-r2.eclass
@@ -6,7 +6,7 @@
 # Conrad Kostecki <conik...@gentoo.org>
 # @AUTHOR:
 # Tomáš Chvátal <scarab...@gentoo.org>
-# @SUPPORTED_EAPIS: 5 6 7
+# @SUPPORTED_EAPIS: 5 6 7 8
 # @BLURB: An eclass to streamline the construction of ebuilds for new Myspell 
dictionaries.
 # @DESCRIPTION:
 # The myspell-r2 eclass is designed to streamline the construction of ebuilds 
for
@@ -34,7 +34,7 @@ case ${EAPI:-0} in
        [0-4])
                die "${ECLASS} is banned in EAPI ${EAPI:-0}"
                ;;
-       [5-7])
+       [5-8])
                ;;
        *)
                die "Unknown EAPI ${EAPI:-0}"
@@ -46,7 +46,7 @@ EXPORT_FUNCTIONS src_unpack src_install
 # Basically no extra deps needed.
 # Unzip is required for .oxt libreoffice extensions
 # which are just fancy zip files.
-if [[ ${EAPI:-0} == 7 ]]; then
+if [[ ${EAPI:-0} != [56] ]]; then
        BDEPEND="app-arch/unzip"
 else
        DEPEND="app-arch/unzip"

Reply via email to