Gentoo Archives: gentoo-commits

From: "Jim Ramsay (lack)" <lack@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in rox-base/rox: ChangeLog rox-2.7.ebuild rox-2.7-r2.ebuild rox-2.6.1.ebuild
Date: Wed, 02 Jan 2008 12:44:49
Message-Id: E1JA2xf-0004l7-8k@stork.gentoo.org
1 lack 08/01/02 12:44:43
2
3 Modified: ChangeLog rox-2.7.ebuild rox-2.7-r2.ebuild
4 rox-2.6.1.ebuild
5 Log:
6 Fixing compatibility of wrapper so it REALLY works with /bin/sh
7 (Portage version: 2.1.4_rc13)
8
9 Revision Changes Path
10 1.53 rox-base/rox/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/rox-base/rox/ChangeLog?rev=1.53&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/rox-base/rox/ChangeLog?rev=1.53&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/rox-base/rox/ChangeLog?r1=1.52&r2=1.53
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/rox-base/rox/ChangeLog,v
19 retrieving revision 1.52
20 retrieving revision 1.53
21 diff -u -r1.52 -r1.53
22 --- ChangeLog 2 Jan 2008 12:39:49 -0000 1.52
23 +++ ChangeLog 2 Jan 2008 12:44:42 -0000 1.53
24 @@ -1,6 +1,10 @@
25 # ChangeLog for rox-base/rox
26 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/rox-base/rox/ChangeLog,v 1.52 2008/01/02 12:39:49 lack Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/rox-base/rox/ChangeLog,v 1.53 2008/01/02 12:44:42 lack Exp $
29 +
30 + 02 Jan 2008; Jim Ramsay <lack@g.o> rox-2.6.1.ebuild,
31 + rox-2.7.ebuild, rox-2.7-r2.ebuild:
32 + Fixing compatibility of wrapper so it REALLY works with /bin/sh
33
34 02 Jan 2008; Jim Ramsay <lack@g.o> -rox-2.7-r1.ebuild,
35 rox-2.7-r2.ebuild:
36
37
38
39 1.2 rox-base/rox/rox-2.7.ebuild
40
41 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/rox-base/rox/rox-2.7.ebuild?rev=1.2&view=markup
42 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/rox-base/rox/rox-2.7.ebuild?rev=1.2&content-type=text/plain
43 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/rox-base/rox/rox-2.7.ebuild?r1=1.1&r2=1.2
44
45 Index: rox-2.7.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/rox-base/rox/rox-2.7.ebuild,v
48 retrieving revision 1.1
49 retrieving revision 1.2
50 diff -u -r1.1 -r1.2
51 --- rox-2.7.ebuild 30 Nov 2007 21:36:26 -0000 1.1
52 +++ rox-2.7.ebuild 2 Jan 2008 12:44:42 -0000 1.2
53 @@ -1,6 +1,6 @@
54 -# Copyright 1999-2007 Gentoo Foundation
55 +# Copyright 1999-2008 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 -# $Header: /var/cvsroot/gentoo-x86/rox-base/rox/rox-2.7.ebuild,v 1.1 2007/11/30 21:36:26 lack Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/rox-base/rox/rox-2.7.ebuild,v 1.2 2008/01/02 12:44:42 lack Exp $
59
60 inherit eutils multilib
61
62 @@ -79,13 +79,13 @@
63
64 cat >"${D}/usr/bin/${WRAPPERNAME}" <<EOF
65 #!/bin/sh
66 -if [[ "\${LIBDIRPATH}" ]]; then
67 +if [ "\${LIBDIRPATH}" ]; then
68 export LIBDIRPATH="\${LIBDIRPATH}:${LIBDIR}"
69 else
70 export LIBDIRPATH="${LIBDIR}"
71 fi
72
73 -if [[ "\${APPDIRPATH}" ]]; then
74 +if [ "\${APPDIRPATH}" ]; then
75 export APPDIRPATH="\${APPDIRPATH}:${APPDIR}"
76 else
77 export APPDIRPATH="${APPDIR}"
78
79
80
81 1.4 rox-base/rox/rox-2.7-r2.ebuild
82
83 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/rox-base/rox/rox-2.7-r2.ebuild?rev=1.4&view=markup
84 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/rox-base/rox/rox-2.7-r2.ebuild?rev=1.4&content-type=text/plain
85 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/rox-base/rox/rox-2.7-r2.ebuild?r1=1.3&r2=1.4
86
87 Index: rox-2.7-r2.ebuild
88 ===================================================================
89 RCS file: /var/cvsroot/gentoo-x86/rox-base/rox/rox-2.7-r2.ebuild,v
90 retrieving revision 1.3
91 retrieving revision 1.4
92 diff -u -r1.3 -r1.4
93 --- rox-2.7-r2.ebuild 2 Jan 2008 12:39:49 -0000 1.3
94 +++ rox-2.7-r2.ebuild 2 Jan 2008 12:44:42 -0000 1.4
95 @@ -1,6 +1,6 @@
96 # Copyright 1999-2008 Gentoo Foundation
97 # Distributed under the terms of the GNU General Public License v2
98 -# $Header: /var/cvsroot/gentoo-x86/rox-base/rox/rox-2.7-r2.ebuild,v 1.3 2008/01/02 12:39:49 lack Exp $
99 +# $Header: /var/cvsroot/gentoo-x86/rox-base/rox/rox-2.7-r2.ebuild,v 1.4 2008/01/02 12:44:42 lack Exp $
100
101 EAPI=1
102 inherit eutils multilib
103 @@ -87,13 +87,13 @@
104
105 cat >"${D}/usr/bin/${WRAPPERNAME}" <<EOF
106 #!/bin/sh
107 -if [[ "\${LIBDIRPATH}" ]]; then
108 +if [ "\${LIBDIRPATH}" ]; then
109 export LIBDIRPATH="\${LIBDIRPATH}:${LIBDIR}"
110 else
111 export LIBDIRPATH="${LIBDIR}"
112 fi
113
114 -if [[ "\${APPDIRPATH}" ]]; then
115 +if [ "\${APPDIRPATH}" ]; then
116 export APPDIRPATH="\${APPDIRPATH}:${APPDIR}"
117 else
118 export APPDIRPATH="${APPDIR}"
119
120
121
122 1.8 rox-base/rox/rox-2.6.1.ebuild
123
124 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/rox-base/rox/rox-2.6.1.ebuild?rev=1.8&view=markup
125 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/rox-base/rox/rox-2.6.1.ebuild?rev=1.8&content-type=text/plain
126 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/rox-base/rox/rox-2.6.1.ebuild?r1=1.7&r2=1.8
127
128 Index: rox-2.6.1.ebuild
129 ===================================================================
130 RCS file: /var/cvsroot/gentoo-x86/rox-base/rox/rox-2.6.1.ebuild,v
131 retrieving revision 1.7
132 retrieving revision 1.8
133 diff -u -r1.7 -r1.8
134 --- rox-2.6.1.ebuild 4 Nov 2007 14:15:54 -0000 1.7
135 +++ rox-2.6.1.ebuild 2 Jan 2008 12:44:42 -0000 1.8
136 @@ -1,6 +1,6 @@
137 -# Copyright 1999-2007 Gentoo Foundation
138 +# Copyright 1999-2008 Gentoo Foundation
139 # Distributed under the terms of the GNU General Public License v2
140 -# $Header: /var/cvsroot/gentoo-x86/rox-base/rox/rox-2.6.1.ebuild,v 1.7 2007/11/04 14:15:54 angelos Exp $
141 +# $Header: /var/cvsroot/gentoo-x86/rox-base/rox/rox-2.6.1.ebuild,v 1.8 2008/01/02 12:44:42 lack Exp $
142
143 inherit eutils multilib
144
145 @@ -79,13 +79,13 @@
146
147 cat >"${D}/usr/bin/${WRAPPERNAME}" <<EOF
148 #!/bin/sh
149 -if [[ "\${LIBDIRPATH}" ]]; then
150 +if [ "\${LIBDIRPATH}" ]; then
151 export LIBDIRPATH="\${LIBDIRPATH}:${LIBDIR}"
152 else
153 export LIBDIRPATH="${LIBDIR}"
154 fi
155
156 -if [[ "\${APPDIRPATH}" ]]; then
157 +if [ "\${APPDIRPATH}" ]; then
158 export APPDIRPATH="\${APPDIRPATH}:${APPDIR}"
159 else
160 export APPDIRPATH="${APPDIR}"
161
162
163
164 --
165 gentoo-commits@g.o mailing list