diff options
author | Ulrich Müller <ulm@gentoo.org> | 2018-05-03 12:55:38 +0200 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2018-05-03 12:57:13 +0200 |
commit | 55f6bd03470f4bb068ee0ed7f835b055c3cce218 (patch) | |
tree | 79335d94ff93f4696edcef4961d5c5f08c0e1144 /eclass | |
parent | app-office/skrooge: amd64 stable wrt bug #654368 (diff) | |
download | gentoo-55f6bd03470f4bb068ee0ed7f835b055c3cce218.tar.gz gentoo-55f6bd03470f4bb068ee0ed7f835b055c3cce218.tar.bz2 gentoo-55f6bd03470f4bb068ee0ed7f835b055c3cce218.zip |
elisp.eclass: Support EAPI 7.
Trivial update, therefore not posted for review.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/elisp.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/elisp.eclass b/eclass/elisp.eclass index 67459730aa61..4447f12532c2 100644 --- a/eclass/elisp.eclass +++ b/eclass/elisp.eclass @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # @ECLASS: elisp.eclass @@ -75,7 +75,7 @@ case ${EAPI:-0} in inherit epatch EXPORT_FUNCTIONS src_{unpack,prepare,configure,compile,install} \ pkg_{setup,postinst,postrm} ;; - 6) + 6|7) EXPORT_FUNCTIONS src_{unpack,prepare,configure,compile,install} \ pkg_{setup,postinst,postrm} ;; *) die "${ECLASS}: EAPI ${EAPI} not supported" ;; |