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: Thu, 03 May 2018 10:58:43
Message-Id: 1525345033.55f6bd03470f4bb068ee0ed7f835b055c3cce218.ulm@gentoo
1 commit: 55f6bd03470f4bb068ee0ed7f835b055c3cce218
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Thu May 3 10:55:38 2018 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Thu May 3 10:57:13 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=55f6bd03
7
8 elisp.eclass: Support EAPI 7.
9
10 Trivial update, therefore not posted for review.
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 67459730aa6..4447f12532c 100644
17 --- a/eclass/elisp.eclass
18 +++ b/eclass/elisp.eclass
19 @@ -1,4 +1,4 @@
20 -# Copyright 1999-2017 Gentoo Foundation
21 +# Copyright 1999-2018 Gentoo Foundation
22 # Distributed under the terms of the GNU General Public License v2
23
24 # @ECLASS: elisp.eclass
25 @@ -75,7 +75,7 @@ case ${EAPI:-0} in
26 inherit epatch
27 EXPORT_FUNCTIONS src_{unpack,prepare,configure,compile,install} \
28 pkg_{setup,postinst,postrm} ;;
29 - 6)
30 + 6|7)
31 EXPORT_FUNCTIONS src_{unpack,prepare,configure,compile,install} \
32 pkg_{setup,postinst,postrm} ;;
33 *) die "${ECLASS}: EAPI ${EAPI} not supported" ;;