From fb4728b063f6e805dc4e0054a408efa65591c2f6 Mon Sep 17 00:00:00 2001 From: Conrad Kostecki Date: Sun, 4 Jul 2021 17:46:29 +0200 Subject: eclass/myspell-r2.eclass: add EAPI 8 support This change adds EAPI 8 support. No further changes required. Signed-off-by: Conrad Kostecki --- eclass/myspell-r2.eclass | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'eclass') diff --git a/eclass/myspell-r2.eclass b/eclass/myspell-r2.eclass index e4d9ae69af3a..c163e4677991 100644 --- a/eclass/myspell-r2.eclass +++ b/eclass/myspell-r2.eclass @@ -6,7 +6,7 @@ # Conrad Kostecki # @AUTHOR: # Tomáš Chvátal -# @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" -- cgit v1.2.3-65-gdbad