Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Sun, 31 Jul 2022 11:03:15
Message-Id: 1659265369.29652ac0094650353643b1cf468da345a67f99e3.soap@gentoo
1 commit: 29652ac0094650353643b1cf468da345a67f99e3
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jul 31 11:02:49 2022 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sun Jul 31 11:02:49 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29652ac0
7
8 stardict.eclass: remove EAPI 6 and 7
9
10 Closes: https://github.com/gentoo/gentoo/pull/26681
11 Signed-off-by: David Seifert <soap <AT> gentoo.org>
12
13 eclass/stardict.eclass | 4 ++--
14 1 file changed, 2 insertions(+), 2 deletions(-)
15
16 diff --git a/eclass/stardict.eclass b/eclass/stardict.eclass
17 index b7cffde544eb..1ca6d10d6d78 100644
18 --- a/eclass/stardict.eclass
19 +++ b/eclass/stardict.eclass
20 @@ -6,7 +6,7 @@
21 # No maintainer <maintainer-needed@g.o>
22 # @AUTHOR:
23 # Alastair Tse <liquidx@g.o>
24 -# @SUPPORTED_EAPIS: 6 7 8
25 +# @SUPPORTED_EAPIS: 8
26 # @BLURB: Convenience class to do stardict dictionary installations.
27 # @DESCRIPTION:
28 # Usage:
29 @@ -17,7 +17,7 @@
30 # * DICT_SUFFIX - SRC_URI after the prefix.
31
32 case ${EAPI} in
33 - 6|7|8) ;;
34 + 8) ;;
35 *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;;
36 esac