Gentoo Archives: gentoo-commits

From: "Ulrich Mueller (ulm)" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-editors/emacs-vcs: ChangeLog emacs-vcs-24.1.9999-r1.ebuild
Date: Sun, 24 Jun 2012 15:13:15
Message-Id: 20120624151305.6D0352004B@flycatcher.gentoo.org
1 ulm 12/06/24 15:13:05
2
3 Modified: ChangeLog emacs-vcs-24.1.9999-r1.ebuild
4 Log:
5 Store version information in system-configuration-options variable.
6
7 (Portage version: 2.1.11.1/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.103 app-editors/emacs-vcs/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/emacs-vcs/ChangeLog?rev=1.103&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/emacs-vcs/ChangeLog?rev=1.103&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/emacs-vcs/ChangeLog?r1=1.102&r2=1.103
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-editors/emacs-vcs/ChangeLog,v
19 retrieving revision 1.102
20 retrieving revision 1.103
21 diff -u -r1.102 -r1.103
22 --- ChangeLog 10 Jun 2012 18:34:48 -0000 1.102
23 +++ ChangeLog 24 Jun 2012 15:13:05 -0000 1.103
24 @@ -1,6 +1,9 @@
25 # ChangeLog for app-editors/emacs-vcs
26 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs-vcs/ChangeLog,v 1.102 2012/06/10 18:34:48 ulm Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs-vcs/ChangeLog,v 1.103 2012/06/24 15:13:05 ulm Exp $
29 +
30 + 24 Jun 2012; Ulrich Müller <ulm@g.o> emacs-vcs-24.1.9999-r1.ebuild:
31 + Store version information in system-configuration-options variable.
32
33 10 Jun 2012; Ulrich Müller <ulm@g.o> emacs-vcs-24.1.9999-r1.ebuild:
34 Game score files moved to app-emacs/emacs-common-gentoo. Configure doesn't
35
36
37
38 1.6 app-editors/emacs-vcs/emacs-vcs-24.1.9999-r1.ebuild
39
40 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/emacs-vcs/emacs-vcs-24.1.9999-r1.ebuild?rev=1.6&view=markup
41 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/emacs-vcs/emacs-vcs-24.1.9999-r1.ebuild?rev=1.6&content-type=text/plain
42 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/emacs-vcs/emacs-vcs-24.1.9999-r1.ebuild?r1=1.5&r2=1.6
43
44 Index: emacs-vcs-24.1.9999-r1.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/app-editors/emacs-vcs/emacs-vcs-24.1.9999-r1.ebuild,v
47 retrieving revision 1.5
48 retrieving revision 1.6
49 diff -u -r1.5 -r1.6
50 --- emacs-vcs-24.1.9999-r1.ebuild 10 Jun 2012 18:34:48 -0000 1.5
51 +++ emacs-vcs-24.1.9999-r1.ebuild 24 Jun 2012 15:13:05 -0000 1.6
52 @@ -1,6 +1,6 @@
53 # Copyright 1999-2012 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs-vcs/emacs-vcs-24.1.9999-r1.ebuild,v 1.5 2012/06/10 18:34:48 ulm Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs-vcs/emacs-vcs-24.1.9999-r1.ebuild,v 1.6 2012/06/24 15:13:05 ulm Exp $
57
58 EAPI=4
59
60 @@ -191,10 +191,10 @@
61 myconf="${myconf} --without-x --without-ns"
62 fi
63
64 + # Save version information in the Emacs binary. It will be available
65 + # in variable "system-configuration-options".
66 + myconf="${myconf} GENTOO_PACKAGE=${CATEGORY}/${PF}"
67 if [[ ${PV##*.} = 9999 ]]; then
68 - # These variables are not needed for building. We add them to
69 - # configure options because they are stored in the Emacs binary
70 - # and available in variable "system-configuration-options".
71 myconf="${myconf} EBZR_BRANCH=${EBZR_BRANCH} EBZR_REVNO=${EBZR_REVNO}"
72 fi
73
74 @@ -230,8 +230,6 @@
75 # cleanup, otherwise emacs will be dumped again in src_install
76 (cd src; emake versionclean)
77 fi
78 - # set last component of emacs-version to (package revision + 1)
79 - touch src/emacs-${FULL_VERSION}.${PR#r}
80 emake CC="$(tc-getCC)"
81 }