Gentoo Archives: gentoo-commits

From: "Michal Gorny (mgorny)" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-fs/eudev: eudev-1.3.ebuild eudev-1.4-r1.ebuild eudev-1.5.3.ebuild eudev-1.6.ebuild eudev-9999.ebuild eudev-1.5.3-r1.ebuild ChangeLog
Date: Mon, 28 Apr 2014 17:53:21
Message-Id: 20140428175315.B0A252004B@flycatcher.gentoo.org
1 mgorny 14/04/28 17:53:15
2
3 Modified: eudev-1.3.ebuild eudev-1.4-r1.ebuild
4 eudev-1.5.3.ebuild eudev-1.6.ebuild
5 eudev-9999.ebuild eudev-1.5.3-r1.ebuild ChangeLog
6 Log:
7 Replace multilib_build_binaries with multilib_is_native_abi, in order to put an end to the confusion introduced by having two functions, the proper one suggesting it is just for binaries.
8
9 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)
10
11 Revision Changes Path
12 1.17 sys-fs/eudev/eudev-1.3.ebuild
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/eudev/eudev-1.3.ebuild?rev=1.17&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/eudev/eudev-1.3.ebuild?rev=1.17&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/eudev/eudev-1.3.ebuild?r1=1.16&r2=1.17
17
18 Index: eudev-1.3.ebuild
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/sys-fs/eudev/eudev-1.3.ebuild,v
21 retrieving revision 1.16
22 retrieving revision 1.17
23 diff -u -r1.16 -r1.17
24 --- eudev-1.3.ebuild 28 Mar 2014 18:28:39 -0000 1.16
25 +++ eudev-1.3.ebuild 28 Apr 2014 17:53:15 -0000 1.17
26 @@ -1,6 +1,6 @@
27 # Copyright 1999-2014 Gentoo Foundation
28 # Distributed under the terms of the GNU General Public License v2
29 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/eudev/eudev-1.3.ebuild,v 1.16 2014/03/28 18:28:39 mgorny Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/eudev/eudev-1.3.ebuild,v 1.17 2014/04/28 17:53:15 mgorny Exp $
31
32 EAPI="5"
33
34 @@ -140,7 +140,7 @@
35
36 # Only build libudev for non-native_abi, and only install it to libdir,
37 # that means all options only apply to native_abi
38 - if multilib_build_binaries; then econf_args+=(
39 + if multilib_is_native_abi; then econf_args+=(
40 --with-rootlibdir=/$(get_libdir)
41 $(use_enable doc gtk-doc)
42 $(use_enable gudev)
43 @@ -161,7 +161,7 @@
44
45 multilib_src_compile()
46 {
47 - if ! multilib_build_binaries; then
48 + if ! multilib_is_native_abi; then
49 cd src/libudev || die "Could not change directory"
50 fi
51 emake
52 @@ -169,7 +169,7 @@
53
54 multilib_src_install()
55 {
56 - if ! multilib_build_binaries; then
57 + if ! multilib_is_native_abi; then
58 cd src/libudev || die "Could not change directory"
59 fi
60 emake DESTDIR="${D}" install
61 @@ -182,7 +182,7 @@
62 # but sandbox seems to evaluate the paths of the test i/o instead of the
63 # paths of the actual i/o that results.
64 # also only test for native abi
65 - if multilib_build_binaries; then
66 + if multilib_is_native_abi; then
67 addread /sys
68 addwrite /dev
69 addwrite /run
70
71
72
73 1.3 sys-fs/eudev/eudev-1.4-r1.ebuild
74
75 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/eudev/eudev-1.4-r1.ebuild?rev=1.3&view=markup
76 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/eudev/eudev-1.4-r1.ebuild?rev=1.3&content-type=text/plain
77 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/eudev/eudev-1.4-r1.ebuild?r1=1.2&r2=1.3
78
79 Index: eudev-1.4-r1.ebuild
80 ===================================================================
81 RCS file: /var/cvsroot/gentoo-x86/sys-fs/eudev/eudev-1.4-r1.ebuild,v
82 retrieving revision 1.2
83 retrieving revision 1.3
84 diff -u -r1.2 -r1.3
85 --- eudev-1.4-r1.ebuild 28 Mar 2014 18:28:39 -0000 1.2
86 +++ eudev-1.4-r1.ebuild 28 Apr 2014 17:53:15 -0000 1.3
87 @@ -1,6 +1,6 @@
88 # Copyright 1999-2014 Gentoo Foundation
89 # Distributed under the terms of the GNU General Public License v2
90 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/eudev/eudev-1.4-r1.ebuild,v 1.2 2014/03/28 18:28:39 mgorny Exp $
91 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/eudev/eudev-1.4-r1.ebuild,v 1.3 2014/04/28 17:53:15 mgorny Exp $
92
93 EAPI="5"
94
95 @@ -138,7 +138,7 @@
96
97 # Only build libudev for non-native_abi, and only install it to libdir,
98 # that means all options only apply to native_abi
99 - if multilib_build_binaries; then econf_args+=(
100 + if multilib_is_native_abi; then econf_args+=(
101 --with-rootlibdir=/$(get_libdir)
102 $(use_enable doc gtk-doc)
103 $(use_enable gudev)
104 @@ -159,7 +159,7 @@
105
106 multilib_src_compile()
107 {
108 - if ! multilib_build_binaries; then
109 + if ! multilib_is_native_abi; then
110 cd src/libudev || die "Could not change directory"
111 fi
112 emake
113 @@ -167,7 +167,7 @@
114
115 multilib_src_install()
116 {
117 - if ! multilib_build_binaries; then
118 + if ! multilib_is_native_abi; then
119 cd src/libudev || die "Could not change directory"
120 fi
121 emake DESTDIR="${D}" install
122 @@ -180,7 +180,7 @@
123 # but sandbox seems to evaluate the paths of the test i/o instead of the
124 # paths of the actual i/o that results.
125 # also only test for native abi
126 - if multilib_build_binaries; then
127 + if multilib_is_native_abi; then
128 addread /sys
129 addwrite /dev
130 addwrite /run
131
132
133
134 1.3 sys-fs/eudev/eudev-1.5.3.ebuild
135
136 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/eudev/eudev-1.5.3.ebuild?rev=1.3&view=markup
137 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/eudev/eudev-1.5.3.ebuild?rev=1.3&content-type=text/plain
138 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/eudev/eudev-1.5.3.ebuild?r1=1.2&r2=1.3
139
140 Index: eudev-1.5.3.ebuild
141 ===================================================================
142 RCS file: /var/cvsroot/gentoo-x86/sys-fs/eudev/eudev-1.5.3.ebuild,v
143 retrieving revision 1.2
144 retrieving revision 1.3
145 diff -u -r1.2 -r1.3
146 --- eudev-1.5.3.ebuild 28 Mar 2014 18:28:39 -0000 1.2
147 +++ eudev-1.5.3.ebuild 28 Apr 2014 17:53:15 -0000 1.3
148 @@ -1,6 +1,6 @@
149 # Copyright 1999-2014 Gentoo Foundation
150 # Distributed under the terms of the GNU General Public License v2
151 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/eudev/eudev-1.5.3.ebuild,v 1.2 2014/03/28 18:28:39 mgorny Exp $
152 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/eudev/eudev-1.5.3.ebuild,v 1.3 2014/04/28 17:53:15 mgorny Exp $
153
154 EAPI="5"
155
156 @@ -138,7 +138,7 @@
157
158 # Only build libudev for non-native_abi, and only install it to libdir,
159 # that means all options only apply to native_abi
160 - if multilib_build_binaries; then econf_args+=(
161 + if multilib_is_native_abi; then econf_args+=(
162 --with-rootlibdir=/$(get_libdir)
163 $(use_enable doc gtk-doc)
164 $(use_enable gudev)
165 @@ -159,7 +159,7 @@
166
167 multilib_src_compile()
168 {
169 - if ! multilib_build_binaries; then
170 + if ! multilib_is_native_abi; then
171 cd src/libudev || die "Could not change directory"
172 fi
173 emake
174 @@ -167,7 +167,7 @@
175
176 multilib_src_install()
177 {
178 - if ! multilib_build_binaries; then
179 + if ! multilib_is_native_abi; then
180 cd src/libudev || die "Could not change directory"
181 fi
182 emake DESTDIR="${D}" install
183 @@ -180,7 +180,7 @@
184 # but sandbox seems to evaluate the paths of the test i/o instead of the
185 # paths of the actual i/o that results.
186 # also only test for native abi
187 - if multilib_build_binaries; then
188 + if multilib_is_native_abi; then
189 addread /sys
190 addwrite /dev
191 addwrite /run
192
193
194
195 1.3 sys-fs/eudev/eudev-1.6.ebuild
196
197 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/eudev/eudev-1.6.ebuild?rev=1.3&view=markup
198 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/eudev/eudev-1.6.ebuild?rev=1.3&content-type=text/plain
199 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/eudev/eudev-1.6.ebuild?r1=1.2&r2=1.3
200
201 Index: eudev-1.6.ebuild
202 ===================================================================
203 RCS file: /var/cvsroot/gentoo-x86/sys-fs/eudev/eudev-1.6.ebuild,v
204 retrieving revision 1.2
205 retrieving revision 1.3
206 diff -u -r1.2 -r1.3
207 --- eudev-1.6.ebuild 15 Apr 2014 23:15:18 -0000 1.2
208 +++ eudev-1.6.ebuild 28 Apr 2014 17:53:15 -0000 1.3
209 @@ -1,6 +1,6 @@
210 # Copyright 1999-2014 Gentoo Foundation
211 # Distributed under the terms of the GNU General Public License v2
212 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/eudev/eudev-1.6.ebuild,v 1.2 2014/04/15 23:15:18 blueness Exp $
213 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/eudev/eudev-1.6.ebuild,v 1.3 2014/04/28 17:53:15 mgorny Exp $
214
215 EAPI="5"
216
217 @@ -145,7 +145,7 @@
218
219 # Only build libudev for non-native_abi, and only install it to libdir,
220 # that means all options only apply to native_abi
221 - if multilib_build_binaries; then
222 + if multilib_is_native_abi; then
223 econf_args+=(
224 --with-rootlibdir=/$(get_libdir)
225 $(use_enable doc gtk-doc)
226 @@ -165,7 +165,7 @@
227 }
228
229 multilib_src_compile() {
230 - if multilib_build_binaries; then
231 + if multilib_is_native_abi; then
232 emake
233 else
234 emake -C src/libudev
235 @@ -174,7 +174,7 @@
236 }
237
238 multilib_src_install() {
239 - if multilib_build_binaries; then
240 + if multilib_is_native_abi; then
241 emake DESTDIR="${D}" install
242 else
243 emake -C src/libudev DESTDIR="${D}" install
244 @@ -188,7 +188,7 @@
245 # but sandbox seems to evaluate the paths of the test i/o instead of the
246 # paths of the actual i/o that results.
247 # also only test for native abi
248 - if multilib_build_binaries; then
249 + if multilib_is_native_abi; then
250 addread /sys
251 addwrite /dev
252 addwrite /run
253
254
255
256 1.50 sys-fs/eudev/eudev-9999.ebuild
257
258 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/eudev/eudev-9999.ebuild?rev=1.50&view=markup
259 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/eudev/eudev-9999.ebuild?rev=1.50&content-type=text/plain
260 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/eudev/eudev-9999.ebuild?r1=1.49&r2=1.50
261
262 Index: eudev-9999.ebuild
263 ===================================================================
264 RCS file: /var/cvsroot/gentoo-x86/sys-fs/eudev/eudev-9999.ebuild,v
265 retrieving revision 1.49
266 retrieving revision 1.50
267 diff -u -r1.49 -r1.50
268 --- eudev-9999.ebuild 15 Apr 2014 23:15:18 -0000 1.49
269 +++ eudev-9999.ebuild 28 Apr 2014 17:53:15 -0000 1.50
270 @@ -1,6 +1,6 @@
271 # Copyright 1999-2014 Gentoo Foundation
272 # Distributed under the terms of the GNU General Public License v2
273 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/eudev/eudev-9999.ebuild,v 1.49 2014/04/15 23:15:18 blueness Exp $
274 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/eudev/eudev-9999.ebuild,v 1.50 2014/04/28 17:53:15 mgorny Exp $
275
276 EAPI="5"
277
278 @@ -145,7 +145,7 @@
279
280 # Only build libudev for non-native_abi, and only install it to libdir,
281 # that means all options only apply to native_abi
282 - if multilib_build_binaries; then
283 + if multilib_is_native_abi; then
284 econf_args+=(
285 --with-rootlibdir=/$(get_libdir)
286 $(use_enable doc gtk-doc)
287 @@ -165,7 +165,7 @@
288 }
289
290 multilib_src_compile() {
291 - if multilib_build_binaries; then
292 + if multilib_is_native_abi; then
293 emake
294 else
295 emake -C src/libudev
296 @@ -174,7 +174,7 @@
297 }
298
299 multilib_src_install() {
300 - if multilib_build_binaries; then
301 + if multilib_is_native_abi; then
302 emake DESTDIR="${D}" install
303 else
304 emake -C src/libudev DESTDIR="${D}" install
305 @@ -188,7 +188,7 @@
306 # but sandbox seems to evaluate the paths of the test i/o instead of the
307 # paths of the actual i/o that results.
308 # also only test for native abi
309 - if multilib_build_binaries; then
310 + if multilib_is_native_abi; then
311 addread /sys
312 addwrite /dev
313 addwrite /run
314
315
316
317 1.6 sys-fs/eudev/eudev-1.5.3-r1.ebuild
318
319 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/eudev/eudev-1.5.3-r1.ebuild?rev=1.6&view=markup
320 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/eudev/eudev-1.5.3-r1.ebuild?rev=1.6&content-type=text/plain
321 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/eudev/eudev-1.5.3-r1.ebuild?r1=1.5&r2=1.6
322
323 Index: eudev-1.5.3-r1.ebuild
324 ===================================================================
325 RCS file: /var/cvsroot/gentoo-x86/sys-fs/eudev/eudev-1.5.3-r1.ebuild,v
326 retrieving revision 1.5
327 retrieving revision 1.6
328 diff -u -r1.5 -r1.6
329 --- eudev-1.5.3-r1.ebuild 5 Apr 2014 20:28:17 -0000 1.5
330 +++ eudev-1.5.3-r1.ebuild 28 Apr 2014 17:53:15 -0000 1.6
331 @@ -1,6 +1,6 @@
332 # Copyright 1999-2014 Gentoo Foundation
333 # Distributed under the terms of the GNU General Public License v2
334 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/eudev/eudev-1.5.3-r1.ebuild,v 1.5 2014/04/05 20:28:17 jer Exp $
335 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/eudev/eudev-1.5.3-r1.ebuild,v 1.6 2014/04/28 17:53:15 mgorny Exp $
336
337 EAPI="5"
338
339 @@ -140,7 +140,7 @@
340
341 # Only build libudev for non-native_abi, and only install it to libdir,
342 # that means all options only apply to native_abi
343 - if multilib_build_binaries; then econf_args+=(
344 + if multilib_is_native_abi; then econf_args+=(
345 --with-rootlibdir=/$(get_libdir)
346 $(use_enable doc gtk-doc)
347 $(use_enable introspection)
348 @@ -160,7 +160,7 @@
349
350 multilib_src_compile()
351 {
352 - if multilib_build_binaries; then
353 + if multilib_is_native_abi; then
354 emake
355 else
356 emake -C src/libudev
357 @@ -170,7 +170,7 @@
358
359 multilib_src_install()
360 {
361 - if multilib_build_binaries; then
362 + if multilib_is_native_abi; then
363 emake DESTDIR="${D}" install
364 else
365 emake -C src/libudev DESTDIR="${D}" install
366 @@ -185,7 +185,7 @@
367 # but sandbox seems to evaluate the paths of the test i/o instead of the
368 # paths of the actual i/o that results.
369 # also only test for native abi
370 - if multilib_build_binaries; then
371 + if multilib_is_native_abi; then
372 addread /sys
373 addwrite /dev
374 addwrite /run
375
376
377
378 1.103 sys-fs/eudev/ChangeLog
379
380 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/eudev/ChangeLog?rev=1.103&view=markup
381 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/eudev/ChangeLog?rev=1.103&content-type=text/plain
382 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/eudev/ChangeLog?r1=1.102&r2=1.103
383
384 Index: ChangeLog
385 ===================================================================
386 RCS file: /var/cvsroot/gentoo-x86/sys-fs/eudev/ChangeLog,v
387 retrieving revision 1.102
388 retrieving revision 1.103
389 diff -u -r1.102 -r1.103
390 --- ChangeLog 15 Apr 2014 23:15:18 -0000 1.102
391 +++ ChangeLog 28 Apr 2014 17:53:15 -0000 1.103
392 @@ -1,6 +1,13 @@
393 # ChangeLog for sys-fs/eudev
394 # Copyright 1999- Gentoo Foundation; Distributed under the GPL v2
395 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/eudev/ChangeLog,v 1.102 2014/04/15 23:15:18 blueness Exp $
396 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/eudev/ChangeLog,v 1.103 2014/04/28 17:53:15 mgorny Exp $
397 +
398 + 28 Apr 2014; Michał Górny <mgorny@g.o> eudev-1.3.ebuild,
399 + eudev-1.4-r1.ebuild, eudev-1.5.3-r1.ebuild, eudev-1.5.3.ebuild,
400 + eudev-1.6.ebuild, eudev-9999.ebuild:
401 + Replace multilib_build_binaries with multilib_is_native_abi, in order to put
402 + an end to the confusion introduced by having two functions, the proper one
403 + suggesting it is just for binaries.
404
405 15 Apr 2014; Anthony G. Basile <blueness@g.o> eudev-1.6.ebuild,
406 eudev-9999.ebuild: