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-emacs/jde: jde-2.3.5.1.ebuild ChangeLog
Date: Sat, 06 Oct 2007 19:37:51
Message-Id: E1IeFK1-0001fG-AL@stork.gentoo.org
1 ulm 07/10/06 19:28:21
2
3 Modified: jde-2.3.5.1.ebuild ChangeLog
4 Log:
5 Minor QA: quote some variables, remove redundant virtual/emacs dependency.
6 (Portage version: 2.1.3.12)
7
8 Revision Changes Path
9 1.6 app-emacs/jde/jde-2.3.5.1.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/jde/jde-2.3.5.1.ebuild?rev=1.6&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/jde/jde-2.3.5.1.ebuild?rev=1.6&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/jde/jde-2.3.5.1.ebuild?r1=1.5&r2=1.6
14
15 Index: jde-2.3.5.1.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/app-emacs/jde/jde-2.3.5.1.ebuild,v
18 retrieving revision 1.5
19 retrieving revision 1.6
20 diff -u -r1.5 -r1.6
21 --- jde-2.3.5.1.ebuild 13 Aug 2006 08:36:06 -0000 1.5
22 +++ jde-2.3.5.1.ebuild 6 Oct 2007 19:28:20 -0000 1.6
23 @@ -1,6 +1,6 @@
24 -# Copyright 1999-2006 Gentoo Foundation
25 +# Copyright 1999-2007 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/jde/jde-2.3.5.1.ebuild,v 1.5 2006/08/13 08:36:06 grobian Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-emacs/jde/jde-2.3.5.1.ebuild,v 1.6 2007/10/06 19:28:20 ulm Exp $
29
30 inherit elisp eutils
31
32 @@ -10,20 +10,19 @@
33
34 LICENSE="GPL-2"
35 SLOT="0"
36 -KEYWORDS="amd64 ppc ~ppc-macos x86"
37 +KEYWORDS="amd64 ppc x86"
38 IUSE=""
39
40 -DEPEND="virtual/emacs
41 - >=virtual/jdk-1.3
42 +DEPEND=">=virtual/jdk-1.3
43 app-emacs/elib
44 >=app-emacs/cedet-1.0_beta3"
45
46 -SITEFILE=70jde-gentoo.el
47 +SITEFILE=70${PN}-gentoo.el
48
49 -S=${WORKDIR}/${P}
50 +S="${WORKDIR}/${P}"
51
52 src_compile() {
53 - cd ${S}/lisp
54 + cd "${S}"/lisp
55 cat >jde-compile-script-init <<EOF
56 (load "${SITELISP}/cedet/common/cedet")
57 (add-to-list 'load-path "$PWD")
58 @@ -33,14 +32,15 @@
59
60 src_install() {
61 dodir ${SITELISP}/${PN}
62 - cp -r java ${D}/${SITELISP}/${PN}/
63 + cp -r java "${D}"/${SITELISP}/${PN}/
64 dodir /usr/share/doc/${P}
65 - cp -r doc/* ${D}/usr/share/doc/${P}/
66 - cd ${S}/lisp
67 + cp -r doc/* "${D}"/usr/share/doc/${P}/
68 + cd "${S}"/lisp
69 elisp-install ${PN}/lisp *.el *.elc *.bnf
70 - cp ${FILESDIR}/${PV}-${SITEFILE} ${S}/${SITEFILE}; elisp-site-file-install ${S}/${SITEFILE}
71 + cp "${FILESDIR}"/${PV}-${SITEFILE} "${S}"/${SITEFILE}
72 + elisp-site-file-install "${S}"/${SITEFILE}
73 dodoc ChangeLog ReleaseNotes.txt
74 - find ${D} -type f -print0 |xargs -0 chmod 644
75 + find "${D}" -type f -print0 |xargs -0 chmod 644
76 exeinto /usr/bin
77 doexe jtags*
78 }
79
80
81
82 1.28 app-emacs/jde/ChangeLog
83
84 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/jde/ChangeLog?rev=1.28&view=markup
85 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/jde/ChangeLog?rev=1.28&content-type=text/plain
86 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/jde/ChangeLog?r1=1.27&r2=1.28
87
88 Index: ChangeLog
89 ===================================================================
90 RCS file: /var/cvsroot/gentoo-x86/app-emacs/jde/ChangeLog,v
91 retrieving revision 1.27
92 retrieving revision 1.28
93 diff -u -r1.27 -r1.28
94 --- ChangeLog 24 May 2007 20:35:39 -0000 1.27
95 +++ ChangeLog 6 Oct 2007 19:28:20 -0000 1.28
96 @@ -1,6 +1,10 @@
97 # ChangeLog for app-emacs/jde
98 # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
99 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/jde/ChangeLog,v 1.27 2007/05/24 20:35:39 opfer Exp $
100 +# $Header: /var/cvsroot/gentoo-x86/app-emacs/jde/ChangeLog,v 1.28 2007/10/06 19:28:20 ulm Exp $
101 +
102 + 06 Oct 2007; Ulrich Mueller <ulm@g.o> jde-2.3.5.1.ebuild:
103 + Minor QA: quote some variables, remove redundant virtual/emacs dependency.
104 + Drop ~ppc-macos keyword.
105
106 24 May 2007; Christian Faulhammer <opfer@g.o> ChangeLog:
107 corrected ChangeLog, so it conforms to our standards
108
109
110
111 --
112 gentoo-commits@g.o mailing list