Gentoo Archives: gentoo-commits

From: Conrad Kostecki <conikost@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Wed, 07 Jul 2021 19:49:52
Message-Id: 1625687245.9961f2fcb0d8065e06ba760c4dfdf75b21071c6e.conikost@gentoo
1 commit: 9961f2fcb0d8065e06ba760c4dfdf75b21071c6e
2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jul 4 15:40:10 2021 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Wed Jul 7 19:47:25 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9961f2fc
7
8 eclass/aspell-dict-r1.eclass: add EAPI 8 support
9
10 This change adds EAPI 8 support. No further changes required.
11
12 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
13
14 eclass/aspell-dict-r1.eclass | 4 ++--
15 1 file changed, 2 insertions(+), 2 deletions(-)
16
17 diff --git a/eclass/aspell-dict-r1.eclass b/eclass/aspell-dict-r1.eclass
18 index 24bc5ff2799..09f22dbf8c0 100644
19 --- a/eclass/aspell-dict-r1.eclass
20 +++ b/eclass/aspell-dict-r1.eclass
21 @@ -7,7 +7,7 @@
22 # @AUTHOR:
23 # Seemant Kulleen <seemant@g.o> (original author)
24 # David Seifert <soap@g.o> (-r1 author)
25 -# @SUPPORTED_EAPIS: 7
26 +# @SUPPORTED_EAPIS: 7 8
27 # @BLURB: An eclass to streamline the construction of ebuilds for new Aspell dictionaries.
28 # @DESCRIPTION:
29 # The aspell-dict-r1 eclass is designed to streamline the construction of ebuilds for
30 @@ -40,7 +40,7 @@ case ${EAPI:-0} in
31 [0-6])
32 die "${ECLASS} is banned in EAPI ${EAPI:-0}"
33 ;;
34 - 7)
35 + [7-8])
36 ;;
37 *)
38 die "Unknown EAPI ${EAPI:-0}"