diff options
author | Ulrich Müller <ulm@gentoo.org> | 2022-10-20 09:53:11 +0200 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2022-10-28 20:07:41 +0200 |
commit | a944f156cd96f0587bffc4756cf8922e35776f40 (patch) | |
tree | 3ca3e5afa5b1e1a525fd12d387202da2a16f0257 /eclass/elisp.eclass | |
parent | sys-fs/exfatprogs: add 1.2.0 (diff) | |
download | gentoo-a944f156cd96f0587bffc4756cf8922e35776f40.tar.gz gentoo-a944f156cd96f0587bffc4756cf8922e35776f40.tar.bz2 gentoo-a944f156cd96f0587bffc4756cf8922e35776f40.zip |
elisp.eclass: Drop EAPI 6 support
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'eclass/elisp.eclass')
-rw-r--r-- | eclass/elisp.eclass | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/eclass/elisp.eclass b/eclass/elisp.eclass index 6b6679df5c5d..7c05948c0f57 100644 --- a/eclass/elisp.eclass +++ b/eclass/elisp.eclass @@ -9,7 +9,7 @@ # Jeremy Maitin-Shepard <jbms@attbi.com> # Christian Faulhammer <fauli@gentoo.org> # Ulrich Müller <ulm@gentoo.org> -# @SUPPORTED_EAPIS: 6 7 8 +# @SUPPORTED_EAPIS: 7 8 # @PROVIDES: elisp-common # @BLURB: Eclass for Emacs Lisp packages # @DESCRIPTION: @@ -65,7 +65,7 @@ inherit elisp-common case ${EAPI} in - 6|7|8) ;; + 7|8) ;; *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac @@ -73,10 +73,7 @@ EXPORT_FUNCTIONS src_{unpack,prepare,configure,compile,install} \ pkg_{setup,postinst,postrm} RDEPEND=">=app-editors/emacs-${NEED_EMACS}:*" -case ${EAPI} in - 6) DEPEND="${RDEPEND}" ;; - *) BDEPEND="${RDEPEND}" ;; -esac +BDEPEND="${RDEPEND}" # @FUNCTION: elisp_pkg_setup # @DESCRIPTION: |