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.7f903fb49892330c151e8184998887b69aeecd30.conikost@gentoo
1 commit: 7f903fb49892330c151e8184998887b69aeecd30
2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jul 4 15:43:45 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=7f903fb4
7
8 eclass/aspell-dict-r1.eclass: standardise error message
9
10 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
11
12 eclass/aspell-dict-r1.eclass | 5 +----
13 1 file changed, 1 insertion(+), 4 deletions(-)
14
15 diff --git a/eclass/aspell-dict-r1.eclass b/eclass/aspell-dict-r1.eclass
16 index 09f22dbf8c0..a779bf96e82 100644
17 --- a/eclass/aspell-dict-r1.eclass
18 +++ b/eclass/aspell-dict-r1.eclass
19 @@ -37,13 +37,10 @@ readonly ASPELL_SPELLANG=${PN/aspell-/}
20 # If the value needs to be overridden, it needs to be overridden before inheriting the eclass.
21
22 case ${EAPI:-0} in
23 - [0-6])
24 - die "${ECLASS} is banned in EAPI ${EAPI:-0}"
25 - ;;
26 [7-8])
27 ;;
28 *)
29 - die "Unknown EAPI ${EAPI:-0}"
30 + die "${ECLASS}: EAPI ${EAPI:-0} not supported"
31 ;;
32 esac