Gentoo Archives: gentoo-commits

From: "Ulrich Müller" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Sat, 26 Jun 2021 17:11:17
Message-Id: 1624727159.d929f33a2b6d44a1a94685ec81eef2a6ccc4b7c8.ulm@gentoo
1 commit: d929f33a2b6d44a1a94685ec81eef2a6ccc4b7c8
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jun 25 06:52:08 2021 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Sat Jun 26 17:05:59 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d929f33a
7
8 l10n.eclass: Minor touchup of EAPI conditional
9
10 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
11
12 eclass/l10n.eclass | 4 ++--
13 1 file changed, 2 insertions(+), 2 deletions(-)
14
15 diff --git a/eclass/l10n.eclass b/eclass/l10n.eclass
16 index 5cf3931b7bf..a9d7d2f76be 100644
17 --- a/eclass/l10n.eclass
18 +++ b/eclass/l10n.eclass
19 @@ -15,8 +15,8 @@
20 # determining the cross-section between the user's set LINGUAS and what
21 # is offered by the package.
22
23 -case ${EAPI:-0} in
24 - [567]) ;;
25 +case ${EAPI} in
26 + 5|6|7) ;;
27 *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;;
28 esac