From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 483CA1387FD for ; Sat, 7 Jun 2014 10:32:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1B6DFE08E8; Sat, 7 Jun 2014 10:32:34 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B0099E08E8 for ; Sat, 7 Jun 2014 10:32:33 +0000 (UTC) Received: from spoonbill.gentoo.org (spoonbill.gentoo.org [81.93.255.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E134B33BE56 for ; Sat, 7 Jun 2014 10:32:32 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id A84AF181A9 for ; Sat, 7 Jun 2014 10:32:31 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1402137154.2dccd92ace00253911b517e2adbd41fe99eeea57.ulm@gentoo> Subject: [gentoo-commits] proj/emacs:master commit in: eclass/ X-VCS-Repository: proj/emacs X-VCS-Files: eclass/ChangeLog eclass/elisp.eclass X-VCS-Directories: eclass/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 2dccd92ace00253911b517e2adbd41fe99eeea57 X-VCS-Branch: master Date: Sat, 7 Jun 2014 10:32:31 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 35973222-bfeb-4be2-9f35-33a2e94dc410 X-Archives-Hash: 94f4a1064dd813834aa0b33dadf10279 commit: 2dccd92ace00253911b517e2adbd41fe99eeea57 Author: Ulrich Müller gentoo org> AuthorDate: Sat Jun 7 10:32:34 2014 +0000 Commit: Ulrich Müller gentoo 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 + + * elisp.eclass (DEPEND): Increase minimum Emacs version to 23. + (elisp_pkg_setup): Ditto. + 2014-05-18 Ulrich Müller * 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" ;;