Gentoo Archives: gentoo-commits

From: "Ulrich Müller" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/emacs:master commit in: eclass/
Date: Sun, 03 Apr 2022 18:29:24
Message-Id: 1649010531.23882c38da799bf52eea49586d4147c40f55903a.ulm@gentoo
1 commit: 23882c38da799bf52eea49586d4147c40f55903a
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Apr 3 18:28:51 2022 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Sun Apr 3 18:28:51 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/emacs.git/commit/?id=23882c38
7
8 elisp-common.eclass: Update EAPI conditional
9
10 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
11
12 eclass/elisp-common.eclass | 4 ++--
13 1 file changed, 2 insertions(+), 2 deletions(-)
14
15 diff --git a/eclass/elisp-common.eclass b/eclass/elisp-common.eclass
16 index a821e4a..47c8132 100644
17 --- a/eclass/elisp-common.eclass
18 +++ b/eclass/elisp-common.eclass
19 @@ -1,4 +1,4 @@
20 -# Copyright 1999-2021 Gentoo Authors
21 +# Copyright 1999-2022 Gentoo Authors
22 # Distributed under the terms of the GNU General Public License v2
23
24 # @ECLASS: elisp-common.eclass
25 @@ -165,7 +165,7 @@
26 # Again, with optional Emacs support, you should prepend "use emacs &&"
27 # to above calls of elisp-site-regen().
28
29 -case ${EAPI:-0} in
30 +case ${EAPI} in
31 6) inherit eapi7-ver ;;
32 7|8) ;;
33 *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;;