Gentoo Archives: gentoo-commits

From: Lars Wendler <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Tue, 28 Sep 2021 08:45:33
Message-Id: 1632818723.f24ec7804324bc0db6b3f15ba62d6680caf2b1df.polynomial-c@gentoo
1 commit: f24ec7804324bc0db6b3f15ba62d6680caf2b1df
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Tue Sep 28 07:33:40 2021 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 28 08:45:23 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f24ec780
7
8 mozlinguas-v2.eclass: Support EAPI-8
9
10 Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
11
12 eclass/mozlinguas-v2.eclass | 4 ++--
13 1 file changed, 2 insertions(+), 2 deletions(-)
14
15 diff --git a/eclass/mozlinguas-v2.eclass b/eclass/mozlinguas-v2.eclass
16 index f8e3c95d882..5063445ae93 100644
17 --- a/eclass/mozlinguas-v2.eclass
18 +++ b/eclass/mozlinguas-v2.eclass
19 @@ -7,7 +7,7 @@
20 # @AUTHOR:
21 # Nirbheek Chauhan <nirbheek@g.o>
22 # Ian Stakenvicius <axs@g.o>
23 -# @SUPPORTED_EAPIS: 6 7
24 +# @SUPPORTED_EAPIS: 6 7 8
25 # @BLURB: Handle language packs for mozilla products
26 # @DESCRIPTION:
27 # Sets IUSE according to MOZ_LANGS (language packs available). Also exports
28 @@ -19,7 +19,7 @@ inherit mozextension
29 case "${EAPI:-0}" in
30 6)
31 inherit eapi7-ver ;;
32 - 7)
33 + 7|8)
34 ;;
35 *)
36 die "EAPI ${EAPI} is not supported, contact eclass maintainers" ;;