Gentoo Archives: gentoo-commits

From: "Alexis Ballier (aballier)" <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/glib: ChangeLog glib-2.28.8.ebuild
Date: Mon, 04 Jul 2011 19:42:27
Message-Id: 20110704194216.5A10C2004B@flycatcher.gentoo.org
1 aballier 11/07/04 19:42:16
2
3 Modified: ChangeLog glib-2.28.8.ebuild
4 Log:
5 implicit . argument to find is a GNUism that fails with BSDs find; the die call following it made glib impossile to build on G/FreeBSD
6
7 (Portage version: 2.2.0_alpha43/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.475 dev-libs/glib/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/ChangeLog?rev=1.475&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/ChangeLog?rev=1.475&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/ChangeLog?r1=1.474&r2=1.475
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v
19 retrieving revision 1.474
20 retrieving revision 1.475
21 diff -u -r1.474 -r1.475
22 --- ChangeLog 4 Jul 2011 10:51:44 -0000 1.474
23 +++ ChangeLog 4 Jul 2011 19:42:16 -0000 1.475
24 @@ -1,6 +1,10 @@
25 # ChangeLog for dev-libs/glib
26 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v 1.474 2011/07/04 10:51:44 pacho Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v 1.475 2011/07/04 19:42:16 aballier Exp $
29 +
30 + 04 Jul 2011; Alexis Ballier <aballier@g.o> glib-2.28.8.ebuild:
31 + implicit . argument to find is a GNUism that fails with BSDs find; the die
32 + call following it made glib impossile to build on G/FreeBSD
33
34 04 Jul 2011; Pacho Ramos <pacho@g.o> glib-2.28.8.ebuild:
35 Fix warning about skipped tests being shown even when tests are disabled by
36
37
38
39 1.7 dev-libs/glib/glib-2.28.8.ebuild
40
41 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild?rev=1.7&view=markup
42 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild?rev=1.7&content-type=text/plain
43 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild?r1=1.6&r2=1.7
44
45 Index: glib-2.28.8.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild,v
48 retrieving revision 1.6
49 retrieving revision 1.7
50 diff -u -r1.6 -r1.7
51 --- glib-2.28.8.ebuild 4 Jul 2011 10:51:44 -0000 1.6
52 +++ glib-2.28.8.ebuild 4 Jul 2011 19:42:16 -0000 1.7
53 @@ -1,6 +1,6 @@
54 # Copyright 1999-2011 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild,v 1.6 2011/07/04 10:51:44 pacho Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/glib-2.28.8.ebuild,v 1.7 2011/07/04 19:42:16 aballier Exp $
58
59 EAPI="3"
60 GNOME_TARBALL_SUFFIX="xz"
61 @@ -77,7 +77,7 @@
62
63 if ! use test; then
64 # don't waste time building tests
65 - sed 's/^\(.*\SUBDIRS .*\=.*\)tests\(.*\)$/\1\2/' -i $(find -name Makefile.am -o -name Makefile.in) || die
66 + sed 's/^\(.*\SUBDIRS .*\=.*\)tests\(.*\)$/\1\2/' -i $(find . -name Makefile.am -o -name Makefile.in) || die
67 else
68 # Disable tests requiring dev-util/desktop-file-utils when not installed, bug #286629
69 if ! has_version dev-util/desktop-file-utils ; then