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:02:19
Message-Id: 1649008923.2aeffb609341215e89690d22065f5ea2aeaa11e0.ulm@gentoo
1 commit: 2aeffb609341215e89690d22065f5ea2aeaa11e0
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Apr 3 18:02:03 2022 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Sun Apr 3 18:02:03 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/emacs.git/commit/?id=2aeffb60
7
8 elisp.eclass: Update EAPI conditional
9
10 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
11
12 eclass/elisp.eclass | 4 ++--
13 1 file changed, 2 insertions(+), 2 deletions(-)
14
15 diff --git a/eclass/elisp.eclass b/eclass/elisp.eclass
16 index 2fea311..6b6679d 100644
17 --- a/eclass/elisp.eclass
18 +++ b/eclass/elisp.eclass
19 @@ -1,4 +1,4 @@
20 -# Copyright 2002-2021 Gentoo Authors
21 +# Copyright 2002-2022 Gentoo Authors
22 # Distributed under the terms of the GNU General Public License v2
23
24 # @ECLASS: elisp.eclass
25 @@ -64,7 +64,7 @@
26
27 inherit elisp-common
28
29 -case ${EAPI:-0} in
30 +case ${EAPI} in
31 6|7|8) ;;
32 *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;;
33 esac