Gentoo Archives: gentoo-commits

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