Gentoo Archives: gentoo-commits

From: "Robin H. Johnson (robbat2)" <robbat2@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-db/mysql: mysql-5.0.60.ebuild mysql-5.0.44-r2.ebuild mysql-5.0.38.ebuild mysql-5.0.32.ebuild mysql-5.0.44-r1.ebuild ChangeLog mysql-5.0.42.ebuild mysql-5.0.56.ebuild mysql-5.0.44.ebuild mysql-5.0.54.ebuild mysql-5.0.34.ebuild mysql-5.0.40.ebuild mysql-5.0.26-r2.ebuild
Date: Thu, 29 May 2008 19:37:04
Message-Id: E1K1nvm-0007Uz-Ee@stork.gentoo.org
1 robbat2 08/05/29 19:36:58
2
3 Modified: mysql-5.0.60.ebuild mysql-5.0.44-r2.ebuild
4 mysql-5.0.38.ebuild mysql-5.0.32.ebuild
5 mysql-5.0.44-r1.ebuild ChangeLog
6 mysql-5.0.42.ebuild mysql-5.0.56.ebuild
7 mysql-5.0.44.ebuild mysql-5.0.54.ebuild
8 mysql-5.0.34.ebuild mysql-5.0.40.ebuild
9 mysql-5.0.26-r2.ebuild
10 Log:
11 Convert all all FEATURES=userpriv tests to be UID -eq 0 to make Paludis et al happy.
12 (Portage version: 2.1.5.2)
13
14 Revision Changes Path
15 1.2 dev-db/mysql/mysql-5.0.60.ebuild
16
17 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/mysql/mysql-5.0.60.ebuild?rev=1.2&view=markup
18 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/mysql/mysql-5.0.60.ebuild?rev=1.2&content-type=text/plain
19 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/mysql/mysql-5.0.60.ebuild?r1=1.1&r2=1.2
20
21 Index: mysql-5.0.60.ebuild
22 ===================================================================
23 RCS file: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.0.60.ebuild,v
24 retrieving revision 1.1
25 retrieving revision 1.2
26 diff -p -w -b -B -u -u -r1.1 -r1.2
27 --- mysql-5.0.60.ebuild 29 May 2008 05:51:04 -0000 1.1
28 +++ mysql-5.0.60.ebuild 29 May 2008 19:36:57 -0000 1.2
29 @@ -1,6 +1,6 @@
30 # Copyright 1999-2008 Gentoo Foundation
31 # Distributed under the terms of the GNU General Public License v2
32 -# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.0.60.ebuild,v 1.1 2008/05/29 05:51:04 robbat2 Exp $
33 +# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.0.60.ebuild,v 1.2 2008/05/29 19:36:57 robbat2 Exp $
34
35 MY_EXTRAS_VER="20080529"
36 SERVER_URI="http://mirror.provenscaling.com/mysql/enterprise/source/5.0/${P}.tar.gz"
37 @@ -20,8 +20,8 @@ EPATCH_EXCLUDE=''
38 src_test() {
39 make check || die "make check failed"
40 if ! use "minimal" ; then
41 - if ! hasq "userpriv" ${FEATURES} ; then
42 - die "Testing with FEATURES=-userpriv is no longer supported by upstream"
43 + if [[ $UID -eq 0 ]]; then
44 + die "Testing with FEATURES=-userpriv is no longer supported by upstream. Tests MUST be run as non-root."
45 fi
46 cd "${S}"
47 einfo ">>> Test phase [test]: ${CATEGORY}/${PF}"
48
49
50
51 1.10 dev-db/mysql/mysql-5.0.44-r2.ebuild
52
53 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/mysql/mysql-5.0.44-r2.ebuild?rev=1.10&view=markup
54 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/mysql/mysql-5.0.44-r2.ebuild?rev=1.10&content-type=text/plain
55 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/mysql/mysql-5.0.44-r2.ebuild?r1=1.9&r2=1.10
56
57 Index: mysql-5.0.44-r2.ebuild
58 ===================================================================
59 RCS file: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.0.44-r2.ebuild,v
60 retrieving revision 1.9
61 retrieving revision 1.10
62 diff -p -w -b -B -u -u -r1.9 -r1.10
63 --- mysql-5.0.44-r2.ebuild 11 Dec 2007 09:43:44 -0000 1.9
64 +++ mysql-5.0.44-r2.ebuild 29 May 2008 19:36:57 -0000 1.10
65 @@ -1,6 +1,6 @@
66 -# Copyright 1999-2007 Gentoo Foundation
67 +# Copyright 1999-2008 Gentoo Foundation
68 # Distributed under the terms of the GNU General Public License v2
69 -# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.0.44-r2.ebuild,v 1.9 2007/12/11 09:43:44 vapier Exp $
70 +# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.0.44-r2.ebuild,v 1.10 2008/05/29 19:36:57 robbat2 Exp $
71
72 MY_EXTRAS_VER="20071115"
73
74 @@ -15,7 +15,7 @@ EPATCH_EXCLUDE=''
75 src_test() {
76 make check || die "make check failed"
77 if ! use "minimal" ; then
78 - if ! hasq "userpriv" ${FEATURES} ; then
79 + if [[ $UID -eq 0 ]]; then
80 die "Testing with FEATURES=-userpriv is no longer supported by upstream"
81 fi
82 cd "${S}"
83
84
85
86 1.13 dev-db/mysql/mysql-5.0.38.ebuild
87
88 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/mysql/mysql-5.0.38.ebuild?rev=1.13&view=markup
89 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/mysql/mysql-5.0.38.ebuild?rev=1.13&content-type=text/plain
90 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/mysql/mysql-5.0.38.ebuild?r1=1.12&r2=1.13
91
92 Index: mysql-5.0.38.ebuild
93 ===================================================================
94 RCS file: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.0.38.ebuild,v
95 retrieving revision 1.12
96 retrieving revision 1.13
97 diff -p -w -b -B -u -u -r1.12 -r1.13
98 --- mysql-5.0.38.ebuild 24 Jun 2007 21:20:25 -0000 1.12
99 +++ mysql-5.0.38.ebuild 29 May 2008 19:36:57 -0000 1.13
100 @@ -1,6 +1,6 @@
101 -# Copyright 1999-2007 Gentoo Foundation
102 +# Copyright 1999-2008 Gentoo Foundation
103 # Distributed under the terms of the GNU General Public License v2
104 -# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.0.38.ebuild,v 1.12 2007/06/24 21:20:25 vapier Exp $
105 +# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.0.38.ebuild,v 1.13 2008/05/29 19:36:57 robbat2 Exp $
106
107 MY_EXTRAS_VER="20070415"
108 SERVER_URI="ftp://ftp.mysql.com/pub/mysql/src/mysql-${PV//_/-}.tar.gz"
109 @@ -26,7 +26,7 @@ src_test() {
110 # Ensure that parallel runs don't die
111 export MTR_BUILD_THREAD="$((${RANDOM} % 100))"
112
113 - if ! hasq "userpriv" ${FEATURES} ; then
114 + if [[ $UID -eq 0 ]]; then
115 mysql_disable_test "im_daemon_life_cycle" "fails as root"
116 mysql_disable_test "im_life_cycle" "fails as root"
117 mysql_disable_test "im_options_set" "fails as root"
118
119
120
121 1.4 dev-db/mysql/mysql-5.0.32.ebuild
122
123 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/mysql/mysql-5.0.32.ebuild?rev=1.4&view=markup
124 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/mysql/mysql-5.0.32.ebuild?rev=1.4&content-type=text/plain
125 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/mysql/mysql-5.0.32.ebuild?r1=1.3&r2=1.4
126
127 Index: mysql-5.0.32.ebuild
128 ===================================================================
129 RCS file: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.0.32.ebuild,v
130 retrieving revision 1.3
131 retrieving revision 1.4
132 diff -p -w -b -B -u -u -r1.3 -r1.4
133 --- mysql-5.0.32.ebuild 12 Jan 2007 17:58:32 -0000 1.3
134 +++ mysql-5.0.32.ebuild 29 May 2008 19:36:57 -0000 1.4
135 @@ -1,6 +1,6 @@
136 -# Copyright 1999-2007 Gentoo Foundation
137 +# Copyright 1999-2008 Gentoo Foundation
138 # Distributed under the terms of the GNU General Public License v2
139 -# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.0.32.ebuild,v 1.3 2007/01/12 17:58:32 chtekk Exp $
140 +# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.0.32.ebuild,v 1.4 2008/05/29 19:36:57 robbat2 Exp $
141
142 MY_EXTRAS_VER="20070108"
143 SERVER_URI="ftp://ftp.mysql.com/pub/mysql/src/mysql-${PV//_/-}.tar.gz"
144 @@ -22,7 +22,7 @@ src_test() {
145 # mysqladmin start before dir creation
146 mkdir -p "${S}"/mysql-test/var{,/log}
147
148 - if ! hasq "userpriv" ${FEATURES} ; then
149 + if [[ $UID -eq 0 ]]; then
150 mysql_disable_test "im_daemon_life_cycle" "fails as root"
151 mysql_disable_test "im_life_cycle" "fails as root"
152 mysql_disable_test "im_options_set" "fails as root"
153
154
155
156 1.8 dev-db/mysql/mysql-5.0.44-r1.ebuild
157
158 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/mysql/mysql-5.0.44-r1.ebuild?rev=1.8&view=markup
159 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/mysql/mysql-5.0.44-r1.ebuild?rev=1.8&content-type=text/plain
160 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/mysql/mysql-5.0.44-r1.ebuild?r1=1.7&r2=1.8
161
162 Index: mysql-5.0.44-r1.ebuild
163 ===================================================================
164 RCS file: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.0.44-r1.ebuild,v
165 retrieving revision 1.7
166 retrieving revision 1.8
167 diff -p -w -b -B -u -u -r1.7 -r1.8
168 --- mysql-5.0.44-r1.ebuild 11 Dec 2007 09:43:44 -0000 1.7
169 +++ mysql-5.0.44-r1.ebuild 29 May 2008 19:36:57 -0000 1.8
170 @@ -1,6 +1,6 @@
171 -# Copyright 1999-2007 Gentoo Foundation
172 +# Copyright 1999-2008 Gentoo Foundation
173 # Distributed under the terms of the GNU General Public License v2
174 -# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.0.44-r1.ebuild,v 1.7 2007/12/11 09:43:44 vapier Exp $
175 +# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.0.44-r1.ebuild,v 1.8 2008/05/29 19:36:57 robbat2 Exp $
176
177 MY_EXTRAS_VER="20070710"
178
179 @@ -15,7 +15,7 @@ EPATCH_EXCLUDE=''
180 src_test() {
181 make check || die "make check failed"
182 if ! use "minimal" ; then
183 - if ! hasq "userpriv" ${FEATURES} ; then
184 + if [[ $UID -eq 0 ]]; then
185 die "Testing with FEATURES=-userpriv is no longer supported by upstream"
186 fi
187 cd "${S}"
188
189
190
191 1.451 dev-db/mysql/ChangeLog
192
193 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/mysql/ChangeLog?rev=1.451&view=markup
194 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/mysql/ChangeLog?rev=1.451&content-type=text/plain
195 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/mysql/ChangeLog?r1=1.450&r2=1.451
196
197 Index: ChangeLog
198 ===================================================================
199 RCS file: /var/cvsroot/gentoo-x86/dev-db/mysql/ChangeLog,v
200 retrieving revision 1.450
201 retrieving revision 1.451
202 diff -p -w -b -B -u -u -r1.450 -r1.451
203 --- ChangeLog 29 May 2008 05:51:04 -0000 1.450
204 +++ ChangeLog 29 May 2008 19:36:57 -0000 1.451
205 @@ -1,6 +1,14 @@
206 # ChangeLog for dev-db/mysql
207 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
208 -# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/ChangeLog,v 1.450 2008/05/29 05:51:04 robbat2 Exp $
209 +# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/ChangeLog,v 1.451 2008/05/29 19:36:57 robbat2 Exp $
210 +
211 + 29 May 2008; Robin H. Johnson <robbat2@g.o> mysql-5.0.26-r2.ebuild,
212 + mysql-5.0.32.ebuild, mysql-5.0.34.ebuild, mysql-5.0.38.ebuild,
213 + mysql-5.0.40.ebuild, mysql-5.0.42.ebuild, mysql-5.0.44.ebuild,
214 + mysql-5.0.44-r1.ebuild, mysql-5.0.44-r2.ebuild, mysql-5.0.54.ebuild,
215 + mysql-5.0.56.ebuild, mysql-5.0.60.ebuild:
216 + Convert all all FEATURES=userpriv tests to be UID -eq 0 to make Paludis et
217 + al happy.
218
219 *mysql-5.0.60 (29 May 2008)
220
221
222
223
224 1.10 dev-db/mysql/mysql-5.0.42.ebuild
225
226 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/mysql/mysql-5.0.42.ebuild?rev=1.10&view=markup
227 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/mysql/mysql-5.0.42.ebuild?rev=1.10&content-type=text/plain
228 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/mysql/mysql-5.0.42.ebuild?r1=1.9&r2=1.10
229
230 Index: mysql-5.0.42.ebuild
231 ===================================================================
232 RCS file: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.0.42.ebuild,v
233 retrieving revision 1.9
234 retrieving revision 1.10
235 diff -p -w -b -B -u -u -r1.9 -r1.10
236 --- mysql-5.0.42.ebuild 24 Jun 2007 21:20:25 -0000 1.9
237 +++ mysql-5.0.42.ebuild 29 May 2008 19:36:57 -0000 1.10
238 @@ -1,6 +1,6 @@
239 -# Copyright 1999-2007 Gentoo Foundation
240 +# Copyright 1999-2008 Gentoo Foundation
241 # Distributed under the terms of the GNU General Public License v2
242 -# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.0.42.ebuild,v 1.9 2007/06/24 21:20:25 vapier Exp $
243 +# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.0.42.ebuild,v 1.10 2008/05/29 19:36:57 robbat2 Exp $
244
245 MY_EXTRAS_VER="20070415"
246 SERVER_URI="ftp://ftp.mysql.com/pub/mysql/src/mysql-${PV//_/-}.tar.gz"
247 @@ -29,7 +29,7 @@ src_test() {
248 # Ensure that parallel runs don't die
249 export MTR_BUILD_THREAD="$((${RANDOM} % 100))"
250
251 - if ! hasq "userpriv" ${FEATURES} ; then
252 + if [[ $UID -eq 0 ]]; then
253 mysql_disable_test "im_daemon_life_cycle" "fails as root"
254 mysql_disable_test "im_life_cycle" "fails as root"
255 mysql_disable_test "im_options_set" "fails as root"
256
257
258
259 1.3 dev-db/mysql/mysql-5.0.56.ebuild
260
261 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/mysql/mysql-5.0.56.ebuild?rev=1.3&view=markup
262 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/mysql/mysql-5.0.56.ebuild?rev=1.3&content-type=text/plain
263 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/mysql/mysql-5.0.56.ebuild?r1=1.2&r2=1.3
264
265 Index: mysql-5.0.56.ebuild
266 ===================================================================
267 RCS file: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.0.56.ebuild,v
268 retrieving revision 1.2
269 retrieving revision 1.3
270 diff -p -w -b -B -u -u -r1.2 -r1.3
271 --- mysql-5.0.56.ebuild 10 Mar 2008 02:58:09 -0000 1.2
272 +++ mysql-5.0.56.ebuild 29 May 2008 19:36:57 -0000 1.3
273 @@ -1,6 +1,6 @@
274 # Copyright 1999-2008 Gentoo Foundation
275 # Distributed under the terms of the GNU General Public License v2
276 -# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.0.56.ebuild,v 1.2 2008/03/10 02:58:09 robbat2 Exp $
277 +# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.0.56.ebuild,v 1.3 2008/05/29 19:36:57 robbat2 Exp $
278
279 MY_EXTRAS_VER="20080310"
280 SERVER_URI="http://mirror.provenscaling.com/mysql/enterprise/source/5.0/${P}.tar.gz"
281 @@ -20,7 +20,7 @@ EPATCH_EXCLUDE=''
282 src_test() {
283 make check || die "make check failed"
284 if ! use "minimal" ; then
285 - if ! hasq "userpriv" ${FEATURES} ; then
286 + if [[ $UID -eq 0 ]]; then
287 die "Testing with FEATURES=-userpriv is no longer supported by upstream"
288 fi
289 cd "${S}"
290
291
292
293 1.6 dev-db/mysql/mysql-5.0.44.ebuild
294
295 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/mysql/mysql-5.0.44.ebuild?rev=1.6&view=markup
296 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/mysql/mysql-5.0.44.ebuild?rev=1.6&content-type=text/plain
297 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/mysql/mysql-5.0.44.ebuild?r1=1.5&r2=1.6
298
299 Index: mysql-5.0.44.ebuild
300 ===================================================================
301 RCS file: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.0.44.ebuild,v
302 retrieving revision 1.5
303 retrieving revision 1.6
304 diff -p -w -b -B -u -u -r1.5 -r1.6
305 --- mysql-5.0.44.ebuild 25 Aug 2007 22:35:52 -0000 1.5
306 +++ mysql-5.0.44.ebuild 29 May 2008 19:36:57 -0000 1.6
307 @@ -1,6 +1,6 @@
308 -# Copyright 1999-2007 Gentoo Foundation
309 +# Copyright 1999-2008 Gentoo Foundation
310 # Distributed under the terms of the GNU General Public License v2
311 -# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.0.44.ebuild,v 1.5 2007/08/25 22:35:52 vapier Exp $
312 +# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.0.44.ebuild,v 1.6 2008/05/29 19:36:57 robbat2 Exp $
313
314 MY_EXTRAS_VER="20070710"
315 SERVER_URI="ftp://ftp.mysql.com/pub/mysql/src/mysql-${PV//_/-}.tar.gz"
316 @@ -29,7 +29,7 @@ src_test() {
317 # Ensure that parallel runs don't die
318 export MTR_BUILD_THREAD="$((${RANDOM} % 100))"
319
320 - if ! hasq "userpriv" ${FEATURES} ; then
321 + if [[ $UID -eq 0 ]]; then
322 # As of 5.0.38, these work with the sandbox
323 # but they break if you are root
324 for t in \
325
326
327
328 1.11 dev-db/mysql/mysql-5.0.54.ebuild
329
330 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/mysql/mysql-5.0.54.ebuild?rev=1.11&view=markup
331 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/mysql/mysql-5.0.54.ebuild?rev=1.11&content-type=text/plain
332 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/mysql/mysql-5.0.54.ebuild?r1=1.10&r2=1.11
333
334 Index: mysql-5.0.54.ebuild
335 ===================================================================
336 RCS file: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.0.54.ebuild,v
337 retrieving revision 1.10
338 retrieving revision 1.11
339 diff -p -w -b -B -u -u -r1.10 -r1.11
340 --- mysql-5.0.54.ebuild 28 Jan 2008 07:06:09 -0000 1.10
341 +++ mysql-5.0.54.ebuild 29 May 2008 19:36:57 -0000 1.11
342 @@ -1,6 +1,6 @@
343 # Copyright 1999-2008 Gentoo Foundation
344 # Distributed under the terms of the GNU General Public License v2
345 -# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.0.54.ebuild,v 1.10 2008/01/28 07:06:09 jer Exp $
346 +# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.0.54.ebuild,v 1.11 2008/05/29 19:36:57 robbat2 Exp $
347
348 MY_EXTRAS_VER="20080124"
349 SERVER_URI="http://mirror.provenscaling.com/mysql/enterprise/source/5.0/${P}.tar.gz"
350 @@ -16,7 +16,7 @@ EPATCH_EXCLUDE=''
351 src_test() {
352 make check || die "make check failed"
353 if ! use "minimal" ; then
354 - if ! hasq "userpriv" ${FEATURES} ; then
355 + if [[ $UID -eq 0 ]]; then
356 die "Testing with FEATURES=-userpriv is no longer supported by upstream"
357 fi
358 cd "${S}"
359
360
361
362 1.4 dev-db/mysql/mysql-5.0.34.ebuild
363
364 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/mysql/mysql-5.0.34.ebuild?rev=1.4&view=markup
365 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/mysql/mysql-5.0.34.ebuild?rev=1.4&content-type=text/plain
366 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/mysql/mysql-5.0.34.ebuild?r1=1.3&r2=1.4
367
368 Index: mysql-5.0.34.ebuild
369 ===================================================================
370 RCS file: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.0.34.ebuild,v
371 retrieving revision 1.3
372 retrieving revision 1.4
373 diff -p -w -b -B -u -u -r1.3 -r1.4
374 --- mysql-5.0.34.ebuild 6 Mar 2007 16:11:48 -0000 1.3
375 +++ mysql-5.0.34.ebuild 29 May 2008 19:36:57 -0000 1.4
376 @@ -1,6 +1,6 @@
377 -# Copyright 1999-2007 Gentoo Foundation
378 +# Copyright 1999-2008 Gentoo Foundation
379 # Distributed under the terms of the GNU General Public License v2
380 -# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.0.34.ebuild,v 1.3 2007/03/06 16:11:48 chtekk Exp $
381 +# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.0.34.ebuild,v 1.4 2008/05/29 19:36:57 robbat2 Exp $
382
383 MY_EXTRAS_VER="20070217"
384 SERVER_URI="ftp://ftp.mysql.com/pub/mysql/src/mysql-${PV//_/-}.tar.gz"
385 @@ -22,7 +22,7 @@ src_test() {
386 # mysqladmin start before dir creation
387 mkdir -p "${S}"/mysql-test/var{,/log}
388
389 - if ! hasq "userpriv" ${FEATURES} ; then
390 + if [[ $UID -eq 0 ]]; then
391 mysql_disable_test "im_daemon_life_cycle" "fails as root"
392 mysql_disable_test "im_life_cycle" "fails as root"
393 mysql_disable_test "im_options_set" "fails as root"
394
395
396
397 1.10 dev-db/mysql/mysql-5.0.40.ebuild
398
399 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/mysql/mysql-5.0.40.ebuild?rev=1.10&view=markup
400 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/mysql/mysql-5.0.40.ebuild?rev=1.10&content-type=text/plain
401 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/mysql/mysql-5.0.40.ebuild?r1=1.9&r2=1.10
402
403 Index: mysql-5.0.40.ebuild
404 ===================================================================
405 RCS file: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.0.40.ebuild,v
406 retrieving revision 1.9
407 retrieving revision 1.10
408 diff -p -w -b -B -u -u -r1.9 -r1.10
409 --- mysql-5.0.40.ebuild 24 Jun 2007 21:20:25 -0000 1.9
410 +++ mysql-5.0.40.ebuild 29 May 2008 19:36:57 -0000 1.10
411 @@ -1,6 +1,6 @@
412 -# Copyright 1999-2007 Gentoo Foundation
413 +# Copyright 1999-2008 Gentoo Foundation
414 # Distributed under the terms of the GNU General Public License v2
415 -# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.0.40.ebuild,v 1.9 2007/06/24 21:20:25 vapier Exp $
416 +# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.0.40.ebuild,v 1.10 2008/05/29 19:36:57 robbat2 Exp $
417
418 MY_EXTRAS_VER="20070415"
419 SERVER_URI="ftp://ftp.mysql.com/pub/mysql/src/mysql-${PV//_/-}.tar.gz"
420 @@ -29,7 +29,7 @@ src_test() {
421 # Ensure that parallel runs don't die
422 export MTR_BUILD_THREAD="$((${RANDOM} % 100))"
423
424 - if ! hasq "userpriv" ${FEATURES} ; then
425 + if [[ $UID -eq 0 ]]; then
426 mysql_disable_test "im_daemon_life_cycle" "fails as root"
427 mysql_disable_test "im_life_cycle" "fails as root"
428 mysql_disable_test "im_options_set" "fails as root"
429
430
431
432 1.3 dev-db/mysql/mysql-5.0.26-r2.ebuild
433
434 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/mysql/mysql-5.0.26-r2.ebuild?rev=1.3&view=markup
435 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/mysql/mysql-5.0.26-r2.ebuild?rev=1.3&content-type=text/plain
436 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/mysql/mysql-5.0.26-r2.ebuild?r1=1.2&r2=1.3
437
438 Index: mysql-5.0.26-r2.ebuild
439 ===================================================================
440 RCS file: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.0.26-r2.ebuild,v
441 retrieving revision 1.2
442 retrieving revision 1.3
443 diff -p -w -b -B -u -u -r1.2 -r1.3
444 --- mysql-5.0.26-r2.ebuild 12 Jan 2007 17:58:32 -0000 1.2
445 +++ mysql-5.0.26-r2.ebuild 29 May 2008 19:36:57 -0000 1.3
446 @@ -1,6 +1,6 @@
447 -# Copyright 1999-2007 Gentoo Foundation
448 +# Copyright 1999-2008 Gentoo Foundation
449 # Distributed under the terms of the GNU General Public License v2
450 -# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.0.26-r2.ebuild,v 1.2 2007/01/12 17:58:32 chtekk Exp $
451 +# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.0.26-r2.ebuild,v 1.3 2008/05/29 19:36:57 robbat2 Exp $
452
453 MY_EXTRAS_VER="20070105"
454 SERVER_URI="mirror://mysql/Downloads/MySQL-${PV%.*}/mysql-${PV//_/-}.tar.gz"
455 @@ -22,7 +22,7 @@ src_test() {
456 # mysqladmin start before dir creation
457 mkdir -p "${S}"/mysql-test/var{,/log}
458
459 - if ! hasq "userpriv" ${FEATURES} ; then
460 + if [[ $UID -eq 0 ]]; then
461 mysql_disable_test "im_daemon_life_cycle" "fails as root"
462 mysql_disable_test "im_life_cycle" "fails as root"
463 mysql_disable_test "im_options_set" "fails as root"
464
465
466
467 --
468 gentoo-commits@l.g.o mailing list