Gentoo Archives: gentoo-commits

From: "Ulrich Mueller (ulm)" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in eclass: elisp-common.eclass ChangeLog
Date: Sat, 01 Sep 2012 09:39:17
Message-Id: 20120901093908.3257520E88@flycatcher.gentoo.org
1 ulm 12/09/01 09:39:08
2
3 Modified: elisp-common.eclass ChangeLog
4 Log:
5 Suppress warning message in elisp-site-regen for initial installation.
6
7 Revision Changes Path
8 1.82 eclass/elisp-common.eclass
9
10 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/elisp-common.eclass?rev=1.82&view=markup
11 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/elisp-common.eclass?rev=1.82&content-type=text/plain
12 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/elisp-common.eclass?r1=1.81&r2=1.82
13
14 Index: elisp-common.eclass
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/eclass/elisp-common.eclass,v
17 retrieving revision 1.81
18 retrieving revision 1.82
19 diff -u -r1.81 -r1.82
20 --- elisp-common.eclass 18 Jul 2012 14:28:55 -0000 1.81
21 +++ elisp-common.eclass 1 Sep 2012 09:39:07 -0000 1.82
22 @@ -1,6 +1,6 @@
23 # Copyright 1999-2012 Gentoo Foundation
24 # Distributed under the terms of the GNU General Public License v2
25 -# $Header: /var/cvsroot/gentoo-x86/eclass/elisp-common.eclass,v 1.81 2012/07/18 14:28:55 vapier Exp $
26 +# $Header: /var/cvsroot/gentoo-x86/eclass/elisp-common.eclass,v 1.82 2012/09/01 09:39:07 ulm Exp $
27 #
28 # @ECLASS: elisp-common.eclass
29 # @MAINTAINER:
30 @@ -386,7 +386,8 @@
31 mv "${T}"/site-gentoo.el "${sitelisp}"/site-gentoo.el
32 eend
33 case ${#sflist[@]} in
34 - 0) ewarn "... Huh? No site initialisation files found." ;;
35 + 0) [[ ${PN} = emacs-common-gentoo ]] \
36 + || ewarn "... Huh? No site initialisation files found." ;;
37 1) einfo "... ${#sflist[@]} site initialisation file included." ;;
38 *) einfo "... ${#sflist[@]} site initialisation files included." ;;
39 esac
40
41
42
43 1.385 eclass/ChangeLog
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.385&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.385&content-type=text/plain
47 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.384&r2=1.385
48
49 Index: ChangeLog
50 ===================================================================
51 RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
52 retrieving revision 1.384
53 retrieving revision 1.385
54 diff -u -r1.384 -r1.385
55 --- ChangeLog 30 Aug 2012 23:52:59 -0000 1.384
56 +++ ChangeLog 1 Sep 2012 09:39:07 -0000 1.385
57 @@ -1,6 +1,9 @@
58 # ChangeLog for eclass directory
59 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
60 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.384 2012/08/30 23:52:59 mpagano Exp $
61 +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.385 2012/09/01 09:39:07 ulm Exp $
62 +
63 + 01 Sep 2012; Ulrich Müller <ulm@g.o> elisp-common.eclass:
64 + Suppress warning message in elisp-site-regen for initial installation.
65
66 30 Aug 2012; Michael Pagano <mpagano@g.o> linux-mod.eclass:
67 Minor typo fix to documentation line. Bug #419469