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 BAABB1387FD for ; Wed, 11 Jun 2014 09:13:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 67DF5E0920; Wed, 11 Jun 2014 09:13:39 +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 00245E0920 for ; Wed, 11 Jun 2014 09:13:38 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 033C233FFFF for ; Wed, 11 Jun 2014 09:13:38 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2178) id 3E82D2004E; Wed, 11 Jun 2014 09:13:36 +0000 (UTC) From: "Ulrich Mueller (ulm)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, ulm@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in eclass: elisp-common.eclass X-VCS-Repository: gentoo-x86 X-VCS-Files: elisp-common.eclass X-VCS-Directories: eclass X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Mueller Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20140611091336.3E82D2004E@flycatcher.gentoo.org> Date: Wed, 11 Jun 2014 09:13:36 +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: f8ff4399-0b49-4bdc-8b5b-d3af3f425e1d X-Archives-Hash: b8d5f885691e1ff8294c73f6f644006a ulm 14/06/11 09:13:36 Modified: elisp-common.eclass Log: Update version number in example. Revision Changes Path 1.90 eclass/elisp-common.eclass file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/elisp-common.eclass?rev=1.90&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/elisp-common.eclass?rev=1.90&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/elisp-common.eclass?r1=1.89&r2=1.90 Index: elisp-common.eclass =================================================================== RCS file: /var/cvsroot/gentoo-x86/eclass/elisp-common.eclass,v retrieving revision 1.89 retrieving revision 1.90 diff -u -r1.89 -r1.90 --- elisp-common.eclass 24 May 2014 08:48:40 -0000 1.89 +++ elisp-common.eclass 11 Jun 2014 09:13:36 -0000 1.90 @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/elisp-common.eclass,v 1.89 2014/05/24 08:48:40 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/elisp-common.eclass,v 1.90 2014/06/11 09:13:36 ulm Exp $ # # @ECLASS: elisp-common.eclass # @MAINTAINER: @@ -30,15 +30,15 @@ # to your DEPEND/RDEPEND line and use the functions provided here to # bring the files to the correct locations. # -# If your package requires a minimum Emacs version, e.g. Emacs 23, then -# the dependency should be on >=virtual/emacs-23 instead. Because the +# If your package requires a minimum Emacs version, e.g. Emacs 24, then +# the dependency should be on >=virtual/emacs-24 instead. Because the # user can select the Emacs executable with eselect, you should also # make sure that the active Emacs version is sufficient. This can be # tested with function elisp-need-emacs(), which would typically be # called from pkg_setup(), as in the following example: # # @CODE -# elisp-need-emacs 23 || die "Emacs version too low" +# elisp-need-emacs 24 || die "Emacs version too low" # @CODE # # Please note that such tests should be limited to packages that are