diff options
author | 2014-06-07 10:28:16 +0000 | |
---|---|---|
committer | 2014-06-07 10:28:16 +0000 | |
commit | a9b5e22819d673b8b6001567b6027e0cb08149af (patch) | |
tree | 89527052c131b03df32f8fbc4e6e282fa0155d04 /eclass | |
parent | Remove mask for app-editors:21 and :22, ebuild have been removed. (diff) | |
download | gentoo-2-a9b5e22819d673b8b6001567b6027e0cb08149af.tar.gz gentoo-2-a9b5e22819d673b8b6001567b6027e0cb08149af.tar.bz2 gentoo-2-a9b5e22819d673b8b6001567b6027e0cb08149af.zip |
Increase minimum Emacs version to 23, versions 21 and 22 have been removed.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ChangeLog | 5 | ||||
-rw-r--r-- | eclass/elisp.eclass | 10 |
2 files changed, 9 insertions, 6 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index 4d92d8d19532..1ff17afc1b53 100644 --- a/eclass/ChangeLog +++ b/eclass/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for eclass directory # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1281 2014/06/04 01:17:11 grknight Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1282 2014/06/07 10:28:16 ulm Exp $ + + 07 Jun 2014; Ulrich Müller <ulm@gentoo.org> elisp.eclass: + Increase minimum Emacs version to 23, versions 21 and 22 have been removed. 03 Jun 2014; Brian Evans <grknight@gentoo.org> mysql-v2.eclass: Sync mysql-v2 eclass from the mysql overlay. diff --git a/eclass/elisp.eclass b/eclass/elisp.eclass index 7037399e8324..7d6dfcfb533a 100644 --- a/eclass/elisp.eclass +++ b/eclass/elisp.eclass @@ -1,6 +1,6 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v 1.57 2013/03/16 08:55:30 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v 1.58 2014/06/07 10:28:16 ulm Exp $ # # @ECLASS: elisp.eclass # @MAINTAINER: @@ -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" ;; |