Gentoo Archives: gentoo-commits

From: "Gilles Dartiguelongue (eva)" <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/libgdata: ChangeLog libgdata-0.14.0.ebuild
Date: Sun, 01 Sep 2013 21:07:19
Message-Id: 20130901210713.3CA942004C@flycatcher.gentoo.org
1 eva 13/09/01 21:07:13
2
3 Modified: ChangeLog
4 Added: libgdata-0.14.0.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.1/cvs/Linux x86_64, signed Manifest commit with key C6085806)
9
10 Revision Changes Path
11 1.68 dev-libs/libgdata/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libgdata/ChangeLog?rev=1.68&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libgdata/ChangeLog?rev=1.68&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libgdata/ChangeLog?r1=1.67&r2=1.68
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libgdata/ChangeLog,v
20 retrieving revision 1.67
21 retrieving revision 1.68
22 diff -u -r1.67 -r1.68
23 --- ChangeLog 30 Aug 2013 22:42:28 -0000 1.67
24 +++ ChangeLog 1 Sep 2013 21:07:13 -0000 1.68
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-libs/libgdata
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libgdata/ChangeLog,v 1.67 2013/08/30 22:42:28 eva Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libgdata/ChangeLog,v 1.68 2013/09/01 21:07:13 eva Exp $
30 +
31 +*libgdata-0.14.0 (01 Sep 2013)
32 +
33 + 01 Sep 2013; Gilles Dartiguelongue <eva@g.o> +libgdata-0.14.0.ebuild:
34 + Version bump.
35
36 30 Aug 2013; Gilles Dartiguelongue <eva@g.o>
37 -libgdata-0.13.2-r2.ebuild, -libgdata-0.13.3.ebuild, libgdata-0.13.4.ebuild,
38
39
40
41 1.1 dev-libs/libgdata/libgdata-0.14.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libgdata/libgdata-0.14.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libgdata/libgdata-0.14.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: libgdata-0.14.0.ebuild
47 ===================================================================
48 # Copyright 1999-2013 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-libs/libgdata/libgdata-0.14.0.ebuild,v 1.1 2013/09/01 21:07:13 eva Exp $
51
52 EAPI="5"
53 GCONF_DEBUG="yes"
54 VALA_MIN_API_VERSION="0.20"
55 VALA_USE_DEPEND="vapigen"
56
57 inherit gnome2 vala
58
59 DESCRIPTION="GLib-based library for accessing online service APIs using the GData protocol"
60 HOMEPAGE="http://live.gnome.org/libgdata"
61
62 LICENSE="LGPL-2.1+"
63 SLOT="0/13" # subslot = libgdata soname version
64 IUSE="gnome +introspection static-libs vala"
65 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
66 REQUIRED_IUSE="vala? ( introspection )"
67
68 # gtk+ is needed for gdk
69 # configure checks for gtk:3, but only uses it for demos which are not installed
70 RDEPEND="
71 >=dev-libs/glib-2.31:2
72 >=dev-libs/libxml2-2:2
73 >=net-libs/liboauth-0.9.4
74 >=net-libs/libsoup-2.42.0:2.4[introspection?]
75 >=x11-libs/gdk-pixbuf-2.14:2
76 gnome? (
77 app-crypt/gcr:=
78 >=net-libs/gnome-online-accounts-3.2
79 >=net-libs/libsoup-gnome-2.37.91:2.4[introspection?] )
80 introspection? ( >=dev-libs/gobject-introspection-0.9.7 )
81 "
82 DEPEND="${RDEPEND}
83 >=dev-util/gtk-doc-am-1.14
84 >=dev-util/intltool-0.40
85 >=gnome-base/gnome-common-3.6
86 virtual/pkgconfig
87 vala? ( $(vala_depend) )
88 "
89
90 src_prepare() {
91 # Disable tests requiring network access, bug #307725
92 sed -e '/^TEST_PROGS = / s:\(.*\):TEST_PROGS = general perf calendar client-login-authorizer contacts documents oauth1-authorizer picasaweb youtube \nOLD_\1:' \
93 -i gdata/tests/Makefile.in || die "network test disable failed"
94
95 vala_src_prepare
96 gnome2_src_prepare
97 }
98
99 src_configure() {
100 DOCS="AUTHORS ChangeLog HACKING NEWS README"
101 gnome2_src_configure \
102 $(use_enable gnome) \
103 $(use_enable gnome goa) \
104 $(use_enable introspection) \
105 $(use_enable vala) \
106 $(use_enable static-libs static)
107 }
108
109 src_test() {
110 unset ORBIT_SOCKETDIR
111 unset DBUS_SESSION_BUS_ADDRESS
112 dbus-launch emake check || die "emake check failed"
113 }