Gentoo Archives: gentoo-dev

From: Conrad Kostecki <conikost@g.o>
To: gentoo-dev@l.g.o
Subject: [gentoo-dev] [PATCH 1/2] eclass/aspell-dict-r1.eclass: add EAPI 8 support
Date: Thu, 24 Jun 2021 20:26:33
Message-Id: 20210624202619.20178-1-conikost@gentoo.org
1 This change adds EAPI 8 support.
2 No further changed required.
3
4 Signed-off-by: Conrad Kostecki <conikost@g.o>
5 ---
6 eclass/aspell-dict-r1.eclass | 4 ++--
7 1 file changed, 2 insertions(+), 2 deletions(-)
8
9 diff --git a/eclass/aspell-dict-r1.eclass b/eclass/aspell-dict-r1.eclass
10 index 24bc5ff2799..09f22dbf8c0 100644
11 --- a/eclass/aspell-dict-r1.eclass
12 +++ b/eclass/aspell-dict-r1.eclass
13 @@ -7,7 +7,7 @@
14 # @AUTHOR:
15 # Seemant Kulleen <seemant@g.o> (original author)
16 # David Seifert <soap@g.o> (-r1 author)
17 -# @SUPPORTED_EAPIS: 7
18 +# @SUPPORTED_EAPIS: 7 8
19 # @BLURB: An eclass to streamline the construction of ebuilds for new Aspell dictionaries.
20 # @DESCRIPTION:
21 # The aspell-dict-r1 eclass is designed to streamline the construction of ebuilds for
22 @@ -40,7 +40,7 @@ case ${EAPI:-0} in
23 [0-6])
24 die "${ECLASS} is banned in EAPI ${EAPI:-0}"
25 ;;
26 - 7)
27 + [7-8])
28 ;;
29 *)
30 die "Unknown EAPI ${EAPI:-0}"
31 --
32 2.31.1

Replies

Subject Author
[gentoo-dev] [PATCH 2/2] eclass/myspell-r2.eclass: add EAPI 8 support Conrad Kostecki <conikost@g.o>