Gentoo Archives: gentoo-commits

From: "Peter Volkov (pva)" <pva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-db/xindice: xindice-1.0-r4.ebuild ChangeLog
Date: Thu, 11 Sep 2008 06:56:07
Message-Id: E1Kdg60-0004rf-Cm@stork.gentoo.org
1 pva 08/09/11 06:56:04
2
3 Modified: xindice-1.0-r4.ebuild ChangeLog
4 Log:
5 enewuser/enewgroup die on their own, no need to || die. Fixed quotation.
6 (Portage version: 2.2_rc8/cvs/Linux 2.6.25-gentoo-r7 i686)
7
8 Revision Changes Path
9 1.5 dev-db/xindice/xindice-1.0-r4.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/xindice/xindice-1.0-r4.ebuild?rev=1.5&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/xindice/xindice-1.0-r4.ebuild?rev=1.5&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/xindice/xindice-1.0-r4.ebuild?r1=1.4&r2=1.5
14
15 Index: xindice-1.0-r4.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-db/xindice/xindice-1.0-r4.ebuild,v
18 retrieving revision 1.4
19 retrieving revision 1.5
20 diff -u -r1.4 -r1.5
21 --- xindice-1.0-r4.ebuild 9 Apr 2007 11:35:09 -0000 1.4
22 +++ xindice-1.0-r4.ebuild 11 Sep 2008 06:56:03 -0000 1.5
23 @@ -1,6 +1,6 @@
24 -# Copyright 1999-2007 Gentoo Foundation
25 +# Copyright 1999-2008 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-db/xindice/xindice-1.0-r4.ebuild,v 1.4 2007/04/09 11:35:09 betelgeuse Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-db/xindice/xindice-1.0-r4.ebuild,v 1.5 2008/09/11 06:56:03 pva Exp $
29
30 inherit eutils java-pkg-2 java-ant-2
31
32 @@ -21,16 +21,16 @@
33 S=${WORKDIR}/xml-${P}
34
35 pkg_setup() {
36 - enewgroup ${PN} || die "Adding group ${PN} failed"
37 - enewuser ${PN} -1 /bin/sh /var/run/${PN} ${PN} || die "Adding user ${PN} failed"
38 + enewgroup ${PN}
39 + enewuser ${PN} -1 /bin/sh /var/run/${PN} ${PN}
40
41 java-pkg-2_pkg_setup
42 }
43
44 src_unpack() {
45 unpack ${A}
46 - cd ${S}
47 - epatch ${FILESDIR}/${P}-r3.patch
48 + cd "${S}"
49 + epatch "${FILESDIR}"/${P}-r3.patch
50 }
51
52 src_compile() {
53 @@ -41,19 +41,19 @@
54 src_install() {
55 export TARGET=/opt/${PN}
56 keepdir /var/run/${PN}
57 - chown ${PN}:${PN} ${D}/var/run/${PN}
58 + chown ${PN}:${PN} "${D}"/var/run/${PN}
59 dodir ${TARGET}
60 dodir ${TARGET}/java
61 - cp -pPR bin config icons docs logs idl ${D}${TARGET}
62 + cp -pPR bin config icons docs logs idl "${D}"${TARGET}
63 cd java
64 - cp -pPR lib tests examples ${D}${TARGET}/java
65 + cp -pPR lib tests examples "${D}"${TARGET}/java
66 cd ..
67 dodoc docs/LICENSE docs/README docs/FAQ docs/TODO docs/VERSIONS docs/AUTHORS
68 dohtml docs/AdministratorsGuide.html docs/DevelopersGuide.html docs/UsersGuide.html docs/ToolsReference.html docs/feather.gif docs/index.html docs/xindice.jpg
69 - doenvd ${FILESDIR}/21${PN}
70 - newinitd ${FILESDIR}/${PN}-r2 ${PN}
71 + doenvd "${FILESDIR}"/21${PN}
72 + newinitd "${FILESDIR}"/${PN}-r2 ${PN}
73 insinto ${TARGET}
74 doins start
75 keepdir /opt/${PN}/db
76 - chown -R ${PN}:${PN} ${D}/opt/${PN}
77 + chown -R ${PN}:${PN} "${D}"/opt/${PN}
78 }
79
80
81
82 1.16 dev-db/xindice/ChangeLog
83
84 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/xindice/ChangeLog?rev=1.16&view=markup
85 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/xindice/ChangeLog?rev=1.16&content-type=text/plain
86 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/xindice/ChangeLog?r1=1.15&r2=1.16
87
88 Index: ChangeLog
89 ===================================================================
90 RCS file: /var/cvsroot/gentoo-x86/dev-db/xindice/ChangeLog,v
91 retrieving revision 1.15
92 retrieving revision 1.16
93 diff -u -r1.15 -r1.16
94 --- ChangeLog 9 Apr 2007 11:36:15 -0000 1.15
95 +++ ChangeLog 11 Sep 2008 06:56:03 -0000 1.16
96 @@ -1,6 +1,9 @@
97 # ChangeLog for dev-db/xindice
98 -# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
99 -# $Header: /var/cvsroot/gentoo-x86/dev-db/xindice/ChangeLog,v 1.15 2007/04/09 11:36:15 betelgeuse Exp $
100 +# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
101 +# $Header: /var/cvsroot/gentoo-x86/dev-db/xindice/ChangeLog,v 1.16 2008/09/11 06:56:03 pva Exp $
102 +
103 + 11 Sep 2008; Peter Volkov <pva@g.o> xindice-1.0-r4.ebuild:
104 + enewuser/enewgroup die on their own, no need to || die. Fixed quotation.
105
106 09 Apr 2007; Petteri Räty <betelgeuse@g.o> -xindice-1.0-r3.ebuild:
107 Remove old version.