Gentoo Archives: gentoo-commits

From: Gilles Dartiguelongue <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libgdata/
Date: Sun, 27 Aug 2017 17:57:21
Message-Id: 1503856616.5057a5c782d119c73dce3791081fb814fbd8b3f3.eva@gentoo
1 commit: 5057a5c782d119c73dce3791081fb814fbd8b3f3
2 Author: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
3 AuthorDate: Sun Aug 27 17:01:54 2017 +0000
4 Commit: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 27 17:56:56 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5057a5c7
7
8 dev-libs/libgdata: version bump 0.17.8-r1 → 0.17.9
9
10 Drop GSETTINGS_BACKEND which is handled by eclass. Switch dbus wrapping
11 to dbus-run-session to avoid implicit dependency on X11 server.
12
13 Package-Manager: Portage-2.3.8, Repoman-2.3.3
14
15 dev-libs/libgdata/Manifest | 1 +
16 dev-libs/libgdata/libgdata-0.17.9.ebuild | 66 ++++++++++++++++++++++++++++++++
17 2 files changed, 67 insertions(+)
18
19 diff --git a/dev-libs/libgdata/Manifest b/dev-libs/libgdata/Manifest
20 index 98cc2607b4e..084c60707e9 100644
21 --- a/dev-libs/libgdata/Manifest
22 +++ b/dev-libs/libgdata/Manifest
23 @@ -1 +1,2 @@
24 DIST libgdata-0.17.8.tar.xz 1464812 SHA256 e5e735bfac219c6cbe4a14df481cb3cb4b1c4b8b5e70f9a105a884035bc3a161 SHA512 dfc4c825a7053a6fd7659d04c7077bed8539b4cf3ef3da1d5ece4da3ce17941900e960a300a50b284010ed890dcab87e4c4726403f04481c672832fd34b975b0 WHIRLPOOL e0772008cdf0816efe118f69f9bcc86d85de2a26fc2fd5127bcdb942af264536764da130ccb194a01f0bb97ad9bb070eec84c659e9e82b64a4f7eeb6b0602797
25 +DIST libgdata-0.17.9.tar.xz 1434700 SHA256 85c4f7674c0098ffaf060ae01b6b832cb277b3673d54ace3bdedaad6b127453a SHA512 90289309cbdc4ec6932bf385ddbfcc75c0c2f8b9ca356329298aaa37f6c3db7a16de20e5c947c16c595e43e729a664e4d6d3e2c5a60bb1e463a13d1306f374ce WHIRLPOOL c51322d21ba89d4a96c0a52307d760ff0f399bd5cfd62ee6cf02bc0a81aab1a576471e419aff14ebf9a2b6c330e48c3668133930c46f5614799803436798ad56
26
27 diff --git a/dev-libs/libgdata/libgdata-0.17.9.ebuild b/dev-libs/libgdata/libgdata-0.17.9.ebuild
28 new file mode 100644
29 index 00000000000..03f11210125
30 --- /dev/null
31 +++ b/dev-libs/libgdata/libgdata-0.17.9.ebuild
32 @@ -0,0 +1,66 @@
33 +# Copyright 1999-2017 Gentoo Foundation
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=6
37 +VALA_USE_DEPEND="vapigen"
38 +GNOME2_EAUTORECONF="yes"
39 +
40 +inherit gnome2 vala
41 +
42 +DESCRIPTION="GLib-based library for accessing online service APIs using the GData protocol"
43 +HOMEPAGE="https://wiki.gnome.org/Projects/libgdata"
44 +
45 +LICENSE="LGPL-2.1+"
46 +SLOT="0/22" # subslot = libgdata soname version
47 +
48 +IUSE="+crypt gnome-online-accounts +introspection static-libs test vala"
49 +REQUIRED_USE="
50 + gnome-online-accounts? ( crypt )
51 + vala? ( introspection )
52 +"
53 +
54 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
55 +
56 +RDEPEND="
57 + >=dev-libs/glib-2.44.0:2
58 + >=dev-libs/json-glib-0.15
59 + >=dev-libs/libxml2-2:2
60 + >=net-libs/liboauth-0.9.4
61 + >=net-libs/libsoup-2.55.90:2.4[introspection?]
62 + >=x11-libs/gdk-pixbuf-2.14:2
63 + crypt? ( app-crypt/gcr:= )
64 + gnome-online-accounts? ( >=net-libs/gnome-online-accounts-3.8:= )
65 + introspection? ( >=dev-libs/gobject-introspection-0.9.7:= )
66 +"
67 +DEPEND="${RDEPEND}
68 + >=dev-util/gtk-doc-am-1.25
69 + >=dev-util/intltool-0.40
70 + virtual/pkgconfig
71 + test? ( >=net-libs/uhttpmock-0.5 )
72 + vala? ( $(vala_depend) )
73 +"
74 +
75 +PATCHES=(
76 + "${FILESDIR}"/${PN}-0.17.8-disable-demos.patch
77 +)
78 +
79 +src_prepare() {
80 + use vala && vala_src_prepare
81 + gnome2_src_prepare
82 +}
83 +
84 +src_configure() {
85 + gnome2_src_configure \
86 + --disable-build-demos \
87 + $(use_enable crypt gnome) \
88 + $(use_enable gnome-online-accounts goa) \
89 + $(use_enable introspection) \
90 + $(use_enable vala) \
91 + $(use_enable static-libs static) \
92 + $(use_enable test always-build-tests)
93 +}
94 +
95 +src_test() {
96 + unset ORBIT_SOCKETDIR
97 + dbus-run-session emake check
98 +}