diff options
author | Ulrich Müller <ulm@gentoo.org> | 2021-04-13 09:38:55 +0200 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2021-04-19 22:08:16 +0200 |
commit | 40d155ab2779d6caf87dd7d086de464ad0d132be (patch) | |
tree | 7e3404b59f132e063dfb24db242e1e72ba173576 /eclass/elisp-common.eclass | |
parent | elisp.eclass: Drop support for EAPI 4 and 5 (diff) | |
download | gentoo-40d155ab2779d6caf87dd7d086de464ad0d132be.tar.gz gentoo-40d155ab2779d6caf87dd7d086de464ad0d132be.tar.bz2 gentoo-40d155ab2779d6caf87dd7d086de464ad0d132be.zip |
elisp-common.eclass: Drop support for EAPI 4
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'eclass/elisp-common.eclass')
-rw-r--r-- | eclass/elisp-common.eclass | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/eclass/elisp-common.eclass b/eclass/elisp-common.eclass index f7e3631a965c..90621cbe7b92 100644 --- a/eclass/elisp-common.eclass +++ b/eclass/elisp-common.eclass @@ -10,6 +10,7 @@ # Mamoru Komachi <usata@gentoo.org> # Christian Faulhammer <fauli@gentoo.org> # Ulrich Müller <ulm@gentoo.org> +# @SUPPORTED_EAPIS: 5 6 7 # @BLURB: Emacs-related installation utilities # @DESCRIPTION: # @@ -165,7 +166,7 @@ # to above calls of elisp-site-regen(). case ${EAPI:-0} in - 4|5|6) inherit eapi7-ver ;; + 5|6) inherit eapi7-ver ;; 7) ;; *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac @@ -361,7 +362,7 @@ elisp-modules-install() { shift # Don't bother inheriting multilib.eclass for get_libdir(), but # error out in old EAPIs that don't support it natively. - [[ ${EAPI} == [45] ]] \ + [[ ${EAPI} == 5 ]] \ && die "${ECLASS}: Dynamic modules not supported in EAPI ${EAPI}" ebegin "Installing dynamic modules for GNU Emacs support" ( # subshell to avoid pollution of calling environment @@ -390,7 +391,7 @@ elisp-site-file-install() { sf="${T}/${sf}" ebegin "Installing site initialisation file for GNU Emacs" [[ $1 = "${sf}" ]] || cp "$1" "${sf}" - if [[ ${EAPI} == [45] ]]; then + if [[ ${EAPI} == 5 ]]; then grep -q "@EMACSMODULES@" "${sf}" \ && die "${ECLASS}: Dynamic modules not supported in EAPI ${EAPI}" else |