commit:     2dccd92ace00253911b517e2adbd41fe99eeea57
Author:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Sat Jun  7 10:32:34 2014 +0000
Commit:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Sat Jun  7 10:32:34 2014 +0000
URL:        
http://git.overlays.gentoo.org/gitweb/?p=proj/emacs.git;a=commit;h=2dccd92a

Increase minimum Emacs version to 23, versions 21 and 22 have been removed.

---
 eclass/ChangeLog    | 5 +++++
 eclass/elisp.eclass | 8 ++++----
 2 files changed, 9 insertions(+), 4 deletions(-)

diff --git a/eclass/ChangeLog b/eclass/ChangeLog
index a246178..0664efe 100644
--- a/eclass/ChangeLog
+++ b/eclass/ChangeLog
@@ -1,3 +1,8 @@
+2014-06-07  Ulrich Müller  <[email protected]>
+
+       * elisp.eclass (DEPEND): Increase minimum Emacs version to 23.
+       (elisp_pkg_setup): Ditto.
+
 2014-05-18  Ulrich Müller  <[email protected]>
 
        * elisp-common.eclass (elisp-site-regen): Die on errors.

diff --git a/eclass/elisp.eclass b/eclass/elisp.eclass
index 2919f26..61d7288 100644
--- a/eclass/elisp.eclass
+++ b/eclass/elisp.eclass
@@ -1,4 +1,4 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Header: $
 #
@@ -29,7 +29,7 @@
 # @ECLASS-VARIABLE: NEED_EMACS
 # @DEFAULT_UNSET
 # @DESCRIPTION:
-# If you need anything different from Emacs 21, use the NEED_EMACS
+# If you need anything different from Emacs 23, use the NEED_EMACS
 # variable before inheriting elisp.eclass.  Set it to the major version
 # your package uses and the dependency will be adjusted.
 
@@ -74,7 +74,7 @@ case "${EAPI:-0}" in
                pkg_{setup,postinst,postrm} ;;
 esac
 
-DEPEND=">=virtual/emacs-${NEED_EMACS:-21}"
+DEPEND=">=virtual/emacs-${NEED_EMACS:-23}"
 RDEPEND="${DEPEND}"
 
 # @FUNCTION: elisp_pkg_setup
@@ -83,7 +83,7 @@ RDEPEND="${DEPEND}"
 # version requirement of the NEED_EMACS variable.
 
 elisp_pkg_setup() {
-       elisp-need-emacs "${NEED_EMACS:-21}"
+       elisp-need-emacs "${NEED_EMACS:-23}"
        case $? in
                0) ;;
                1) die "Emacs version too low" ;;

Reply via email to