public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Mart Raudsepp" <leio@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libgdata/
Date: Thu, 20 Apr 2017 12:09:25 +0000 (UTC)	[thread overview]
Message-ID: <1492690129.4d0b6d76f1ea04171f00b7854ded56bebc95c3a1.leio@gentoo> (raw)

commit:     4d0b6d76f1ea04171f00b7854ded56bebc95c3a1
Author:     Mart Raudsepp <leio <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 20 12:03:09 2017 +0000
Commit:     Mart Raudsepp <leio <AT> gentoo <DOT> org>
CommitDate: Thu Apr 20 12:08:49 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d0b6d76

dev-libs/libgdata: bump to 0.17.8, should fix google calendars/task sync

 dev-libs/libgdata/Manifest               |  1 +
 dev-libs/libgdata/libgdata-0.17.8.ebuild | 62 ++++++++++++++++++++++++++++++++
 2 files changed, 63 insertions(+)

diff --git a/dev-libs/libgdata/Manifest b/dev-libs/libgdata/Manifest
index ca06ba6fde1..9aa58d6fa85 100644
--- a/dev-libs/libgdata/Manifest
+++ b/dev-libs/libgdata/Manifest
@@ -1,2 +1,3 @@
 DIST libgdata-0.17.6.tar.xz 1526804 SHA256 8b6a3ff1db23bd9e5ebbcc958b29b769a898f892eed4798222d562ba69df30b0 SHA512 940e5155b0cda0604e09efcdeabbfcb54ebe97b40d1086823802d3a49fdb7fcfc97749ae218c15d30e4981d01e34d1ae3bed01c1ee9a283063761527a9405731 WHIRLPOOL d3d36ae14e2e6502a42766f3efd75001d50c8376cfe4c3e3addbbe30e2455323f399f813eb18d78f88a83353507f01fe0d8e312e8f05dc6bf2d28a38e5ba73f0
 DIST libgdata-0.17.7.tar.xz 1448528 SHA256 8a663ef314a6d20b73c762072e0c1353fa7ec1ca3c2dee6fb85927cbda0d44fd SHA512 92ded8480262f59b6b2f8271fbb77b9b75905ca53f80a24bcf239fd06ead219ffa8af4b576b38368297c1a4f49722b3960202b8ea2b03011781d5fdfa77bbfd6 WHIRLPOOL 73ca7fad7c444f9bd8fe0e31082f79c99bf7091aa142071df70384fdc48649b15ff1b4d772dafdcdc1ec702cda2ad49cec3a67c4e80a56cd0a11ea05aff3cea7
+DIST libgdata-0.17.8.tar.xz 1464812 SHA256 e5e735bfac219c6cbe4a14df481cb3cb4b1c4b8b5e70f9a105a884035bc3a161 SHA512 dfc4c825a7053a6fd7659d04c7077bed8539b4cf3ef3da1d5ece4da3ce17941900e960a300a50b284010ed890dcab87e4c4726403f04481c672832fd34b975b0 WHIRLPOOL e0772008cdf0816efe118f69f9bcc86d85de2a26fc2fd5127bcdb942af264536764da130ccb194a01f0bb97ad9bb070eec84c659e9e82b64a4f7eeb6b0602797

diff --git a/dev-libs/libgdata/libgdata-0.17.8.ebuild b/dev-libs/libgdata/libgdata-0.17.8.ebuild
new file mode 100644
index 00000000000..461d36db68b
--- /dev/null
+++ b/dev-libs/libgdata/libgdata-0.17.8.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+VALA_USE_DEPEND="vapigen"
+
+inherit gnome2 vala
+
+DESCRIPTION="GLib-based library for accessing online service APIs using the GData protocol"
+HOMEPAGE="https://wiki.gnome.org/Projects/libgdata"
+
+LICENSE="LGPL-2.1+"
+SLOT="0/22" # subslot = libgdata soname version
+
+IUSE="+crypt gnome-online-accounts +introspection static-libs test vala"
+REQUIRED_USE="
+	gnome-online-accounts? ( crypt )
+	vala? ( introspection )
+"
+
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+
+# configure checks for gtk:3, but only uses it for demos which are not installed
+RDEPEND="
+	>=dev-libs/glib-2.38.0:2
+	>=dev-libs/json-glib-0.15
+	>=dev-libs/libxml2-2:2
+	>=net-libs/liboauth-0.9.4
+	>=net-libs/libsoup-2.55.90:2.4[introspection?]
+	>=x11-libs/gdk-pixbuf-2.14:2
+	crypt? ( app-crypt/gcr:= )
+	gnome-online-accounts? ( >=net-libs/gnome-online-accounts-3.8:= )
+	introspection? ( >=dev-libs/gobject-introspection-0.9.7:= )
+"
+DEPEND="${RDEPEND}
+	>=dev-util/gtk-doc-am-1.25
+	>=dev-util/intltool-0.40
+	virtual/pkgconfig
+	test? ( >=net-libs/uhttpmock-0.5 )
+	vala? ( $(vala_depend) )
+"
+
+src_prepare() {
+	use vala && vala_src_prepare
+	gnome2_src_prepare
+}
+
+src_configure() {
+	gnome2_src_configure \
+		$(use_enable crypt gnome) \
+		$(use_enable gnome-online-accounts goa) \
+		$(use_enable introspection) \
+		$(use_enable vala) \
+		$(use_enable static-libs static) \
+		$(use_enable test always-build-tests)
+}
+
+src_test() {
+	unset ORBIT_SOCKETDIR
+	export GSETTINGS_BACKEND="memory" #486412
+	dbus-launch emake check
+}


             reply	other threads:[~2017-04-20 12:09 UTC|newest]

Thread overview: 64+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-04-20 12:09 Mart Raudsepp [this message]
  -- strict thread matches above, loose matches on Subject: below --
2022-10-30  1:50 [gentoo-commits] repo/gentoo:master commit in: dev-libs/libgdata/ Matt Turner
2022-10-01 17:16 Matt Turner
2022-09-28 13:03 Matt Turner
2022-05-26  4:45 WANG Xuerui
2022-04-17 19:02 Matt Turner
2021-08-02 16:42 Marek Szuba
2021-05-29 15:27 Sam James
2021-05-28 19:20 Sam James
2021-05-28 19:18 Sam James
2021-05-28 19:11 Sam James
2021-04-13 15:03 Sam James
2021-04-12 21:59 Matt Turner
2020-11-08 15:15 Matt Turner
2020-07-29 11:23 Mart Raudsepp
2020-07-29  4:49 Sam James
2020-02-28 20:14 Mart Raudsepp
2020-02-09 15:56 Mart Raudsepp
2019-12-25 19:52 Mart Raudsepp
2019-12-09  0:10 Aaron Bauman
2019-12-08 11:59 Mikle Kolyada
2019-12-08 11:58 Mikle Kolyada
2019-08-25 12:31 Mart Raudsepp
2019-08-24 18:30 Mart Raudsepp
2019-07-05  3:26 Sobhan Mohammadpour
2019-05-23  6:39 Aaron Bauman
2019-01-18 21:00 Mart Raudsepp
2018-11-01 20:42 Mart Raudsepp
2018-01-16 20:33 Mart Raudsepp
2017-11-23 20:47 Sergei Trofimovich
2017-11-06 20:49 Tobias Klausmann
2017-09-03  5:03 Mart Raudsepp
2017-09-02 23:33 Gilles Dartiguelongue
2017-09-02 23:33 Gilles Dartiguelongue
2017-08-27 17:57 Gilles Dartiguelongue
2017-07-07 10:12 Agostino Sarubbo
2017-07-02 22:05 Gilles Dartiguelongue
2017-06-30  4:58 Alexis Ballier
2017-04-30  9:58 Jeroen Roovers
2017-04-23 21:23 Agostino Sarubbo
2017-04-22 19:08 Tobias Klausmann
2017-04-22 17:53 Tobias Klausmann
2017-04-12 10:10 Jeroen Roovers
2017-03-16 23:40 Mart Raudsepp
2017-03-16 13:24 Jeroen Roovers
2017-03-15 13:48 Mart Raudsepp
2017-03-15 11:44 Mart Raudsepp
2017-03-14 22:07 Mart Raudsepp
2017-02-21  9:16 Tobias Klausmann
2017-02-15 19:24 Mart Raudsepp
2016-10-08  9:51 Pacho Ramos
2016-09-17 14:03 Gilles Dartiguelongue
2016-07-02 10:43 Pacho Ramos
2016-07-02 10:43 Pacho Ramos
2016-03-19 13:14 Agostino Sarubbo
2016-03-17 10:10 Tobias Klausmann
2016-03-06 16:43 Mikle Kolyada
2015-12-30 14:57 Jeroen Roovers
2015-12-30 10:24 Pacho Ramos
2015-12-30 10:24 Pacho Ramos
2015-12-13 22:10 Gilles Dartiguelongue
2015-12-13 22:10 Gilles Dartiguelongue
2015-11-18  5:47 Jeroen Roovers
2015-09-20 18:45 Pacho Ramos

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1492690129.4d0b6d76f1ea04171f00b7854ded56bebc95c3a1.leio@gentoo \
    --to=leio@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox