commit: a944f156cd96f0587bffc4756cf8922e35776f40 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org> AuthorDate: Thu Oct 20 07:53:11 2022 +0000 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org> CommitDate: Fri Oct 28 18:07:41 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a944f156
elisp.eclass: Drop EAPI 6 support Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org> eclass/elisp.eclass | 9 +++------ 1 file 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 <[email protected]> # Christian Faulhammer <[email protected]> # Ulrich Müller <[email protected]> -# @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:
