commit:     a20e0a01a098319a9261eafc1c5db7ccda909dae
Author:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 13 07:24:42 2021 +0000
Commit:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Mon Apr 19 20:08:15 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a20e0a01

elisp-common.eclass: Drop deprecated elisp-need-emacs()

Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>

 eclass/elisp-common.eclass | 21 ---------------------
 1 file changed, 21 deletions(-)

diff --git a/eclass/elisp-common.eclass b/eclass/elisp-common.eclass
index bdf97f41303..f7e3631a965 100644
--- a/eclass/elisp-common.eclass
+++ b/eclass/elisp-common.eclass
@@ -276,27 +276,6 @@ elisp-check-emacs-version() {
        fi
 }
 
-# Test if the eselected Emacs version is at least the major version
-# of GNU Emacs specified as argument.
-# Return 0 if true, 1 if false, 2 if trouble.
-# Deprecated, use elisp-check-emacs-version instead.
-
-elisp-need-emacs() {
-       local need_emacs=$1 have_emacs
-       have_emacs=$(elisp-emacs-version) || return 2
-       einfo "Emacs version: ${have_emacs}"
-       if [[ ${have_emacs} =~ XEmacs|Lucid ]]; then
-               eerror "This package needs GNU Emacs."
-               return 1
-       fi
-       if ! [[ ${have_emacs%%.*} -ge ${need_emacs%%.*} ]]; then
-               eerror "This package needs at least Emacs ${need_emacs%%.*}."
-               eerror "Use \"eselect emacs\" to select the active version."
-               return 1
-       fi
-       return 0
-}
-
 # @FUNCTION: elisp-compile
 # @USAGE: <list of elisp files>
 # @DESCRIPTION:

Reply via email to