commit:     096ca89d70894e7e56fbc0ecea0b8d8ad73d6119
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 12 13:02:08 2021 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Fri Mar 12 15:13:26 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=096ca89d

mozlinguas-v2.eclass: Drop pre-EAPI-6 support, support EAPI-7

Closes: https://bugs.gentoo.org/770280
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 eclass/mozlinguas-v2.eclass | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/eclass/mozlinguas-v2.eclass b/eclass/mozlinguas-v2.eclass
index 7795a856728..be01ef6aca5 100644
--- a/eclass/mozlinguas-v2.eclass
+++ b/eclass/mozlinguas-v2.eclass
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 # @ECLASS: mozlinguas-v2.eclass
@@ -7,7 +7,7 @@
 # @AUTHOR:
 # Nirbheek Chauhan <nirbh...@gentoo.org>
 # Ian Stakenvicius <a...@gentoo.org>
-# @SUPPORTED_EAPIS: 2 3 4 5 6
+# @SUPPORTED_EAPIS: 6 7
 # @BLURB: Handle language packs for mozilla products
 # @DESCRIPTION:
 # Sets IUSE according to MOZ_LANGS (language packs available). Also exports
@@ -17,16 +17,16 @@
 inherit mozextension
 
 case "${EAPI:-0}" in
-       0|1)
-               die "EAPI ${EAPI:-0} does not support the '->' SRC_URI 
operator";;
-       2|3|4|5|6)
-               inherit eapi7-ver
-               EXPORT_FUNCTIONS src_unpack src_compile src_install;;
-
+       6)
+               inherit eapi7-ver ;;
+       7)
+               ;;
        *)
-               die "EAPI ${EAPI} is not supported, contact eclass 
maintainers";;
+               die "EAPI ${EAPI} is not supported, contact eclass maintainers" 
;;
 esac
 
+EXPORT_FUNCTIONS src_unpack src_compile src_install
+
 # @ECLASS-VARIABLE: MOZ_LANGS
 # @DESCRIPTION:
 # Array containing the list of language pack xpis available for

Reply via email to