Gentoo Archives: gentoo-commits

From: "Caleb Tennis (caleb)" <caleb@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-benchmarks/siege: ChangeLog siege-2.66.ebuild
Date: Sun, 28 Dec 2008 00:32:18
Message-Id: E1LGjZo-0005q5-Dn@stork.gentoo.org
1 caleb 08/12/28 00:32:16
2
3 Modified: ChangeLog siege-2.66.ebuild
4 Log:
5 stabilize amd64, and fix some unquoted variables
6 (Portage version: 2.2_rc18/cvs/Linux 2.6.18-xenU-ec2-v1.0 i686)
7
8 Revision Changes Path
9 1.45 app-benchmarks/siege/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-benchmarks/siege/ChangeLog?rev=1.45&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-benchmarks/siege/ChangeLog?rev=1.45&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-benchmarks/siege/ChangeLog?r1=1.44&r2=1.45
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/app-benchmarks/siege/ChangeLog,v
18 retrieving revision 1.44
19 retrieving revision 1.45
20 diff -u -r1.44 -r1.45
21 --- ChangeLog 5 Jul 2008 09:11:37 -0000 1.44
22 +++ ChangeLog 28 Dec 2008 00:32:11 -0000 1.45
23 @@ -1,6 +1,9 @@
24 # ChangeLog for app-benchmarks/siege
25 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/siege/ChangeLog,v 1.44 2008/07/05 09:11:37 loki_val Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/siege/ChangeLog,v 1.45 2008/12/28 00:32:11 caleb Exp $
28 +
29 + 28 Dec 2008; Caleb Tennis <caleb@g.o> siege-2.66.ebuild:
30 + amd64 stable
31
32 05 Jul 2008; Peter Alfredsen <loki_val@g.o> -siege-2.60.ebuild,
33 -siege-2.61-r1.ebuild, -siege-2.64-r1.ebuild, -siege-2.65.ebuild,
34
35
36
37 1.6 app-benchmarks/siege/siege-2.66.ebuild
38
39 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-benchmarks/siege/siege-2.66.ebuild?rev=1.6&view=markup
40 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-benchmarks/siege/siege-2.66.ebuild?rev=1.6&content-type=text/plain
41 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-benchmarks/siege/siege-2.66.ebuild?r1=1.5&r2=1.6
42
43 Index: siege-2.66.ebuild
44 ===================================================================
45 RCS file: /var/cvsroot/gentoo-x86/app-benchmarks/siege/siege-2.66.ebuild,v
46 retrieving revision 1.5
47 retrieving revision 1.6
48 diff -u -r1.5 -r1.6
49 --- siege-2.66.ebuild 5 Jul 2008 09:11:37 -0000 1.5
50 +++ siege-2.66.ebuild 28 Dec 2008 00:32:11 -0000 1.6
51 @@ -1,6 +1,6 @@
52 # Copyright 1999-2008 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 -# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/siege/siege-2.66.ebuild,v 1.5 2008/07/05 09:11:37 loki_val Exp $
55 +# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/siege/siege-2.66.ebuild,v 1.6 2008/12/28 00:32:11 caleb Exp $
56
57 WANT_AUTOMAKE=1.9
58
59 @@ -11,7 +11,7 @@
60 SRC_URI="ftp://sid.joedog.org/pub/${PN}/${P}.tar.gz"
61
62 LICENSE="GPL-2"
63 -KEYWORDS="~amd64 ~hppa ~mips ppc x86"
64 +KEYWORDS="amd64 ~hppa ~mips ppc x86"
65 SLOT="0"
66 IUSE="debug ssl"
67
68 @@ -19,9 +19,9 @@
69
70 src_unpack() {
71 unpack ${A}
72 - cd ${S}
73 + cd "${S}"
74
75 - epatch ${FILESDIR}/${PN}-2.60-gentoo.diff
76 + epatch "${FILESDIR}/${PN}"-2.60-gentoo.diff
77
78 # use of \b causes the T in "Transactions" to be displayed
79 # on the last column of the previous line.
80 @@ -48,13 +48,13 @@
81 # interpreted by bash sending the contents to stderr
82 # instead of ${HOME}/.siegerc
83 sed -i -e 's|\${}|\\${}|' -e 's|\$(HOME)|\\$(HOME)|' \
84 - ${D}/usr/bin/siege.config
85 + "${D}"/usr/bin/siege.config
86
87 dodoc AUTHORS ChangeLog INSTALL MACHINES README* KNOWNBUGS \
88 siegerc-example urls.txt || die "dodoc failed"
89 - dobashcompletion ${FILESDIR}/${PN}.bash-completion
90 + dobashcompletion "${FILESDIR}/${PN}".bash-completion
91
92 - for x in $(find ${D}/usr/bin -name '*.pl') ; do mv "${x}" "${x%.*}" ; done
93 + for x in $(find "${D}"/usr/bin -name '*.pl') ; do mv "${x}" "${x%.*}" ; done
94 }
95
96 pkg_postinst() {