public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Matt Turner" <mattst88@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libgdata/
Date: Mon, 12 Apr 2021 21:59:50 +0000 (UTC)	[thread overview]
Message-ID: <1618264768.f79495c93ce4f6abd0bf07b4395e8f907f487244.mattst88@gentoo> (raw)

commit:     f79495c93ce4f6abd0bf07b4395e8f907f487244
Author:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 12 21:38:09 2021 +0000
Commit:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Mon Apr 12 21:59:28 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f79495c9

dev-libs/libgdata: Version bump to 0.18.1

Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>

 dev-libs/libgdata/Manifest               |  1 +
 dev-libs/libgdata/libgdata-0.18.1.ebuild | 64 ++++++++++++++++++++++++++++++++
 2 files changed, 65 insertions(+)

diff --git a/dev-libs/libgdata/Manifest b/dev-libs/libgdata/Manifest
index cde43ae21df..beb10551742 100644
--- a/dev-libs/libgdata/Manifest
+++ b/dev-libs/libgdata/Manifest
@@ -1,2 +1,3 @@
 DIST libgdata-0.17.12.tar.xz 845420 BLAKE2B 636ff5ba7df48f671cdb5da09c011f620619051e30470bb3ebb400f8c093e89885e0c3c7ac54e569cff2c350bd08f7e346f1529c07c41f570b7255002fc69c44 SHA512 22571c9b0cecbaf617fc8fa43a312bba4eaf36267264546f55c9c9067514cc6ae1db755536c7413427ebf6121115512dcab4201549c128fb1a25afe75a3daa2b
 DIST libgdata-0.17.13.tar.xz 849888 BLAKE2B a364f6175828dcf6d870ddf8489da3703b987587639675ed5cbe851de8761d918da9ef91531d2b992ef5188b51f00f4bc13c3ce3b36afe6d07c4e162a93b2889 SHA512 b074097bd3cc78951638f0d726a948c9ba994c64c85c0cfe713c3d87419a9a96b66688bde88732dfb529325dca2b8251bd161337532bffaf9564f7f5819b9343
+DIST libgdata-0.18.1.tar.xz 851584 BLAKE2B 860cc42c4d0bdbdd6ca1a1001ec7ea5acc26dd1339052365554123e6524fddce65704a11614c8a081eb3eef10395fb1b4d2dfd3cf942dd1ae3556507af4c7c52 SHA512 15ff708760ca5023b692fd565c26a7c3acf035073534c0cd3f1f90e46ee0c60d14dedf360d3ac146d37135e200d9c2bc4b657e81468d0efde4821a9219875b98

diff --git a/dev-libs/libgdata/libgdata-0.18.1.ebuild b/dev-libs/libgdata/libgdata-0.18.1.ebuild
new file mode 100644
index 00000000000..4b2bee552d9
--- /dev/null
+++ b/dev-libs/libgdata/libgdata-0.18.1.ebuild
@@ -0,0 +1,64 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+VALA_USE_DEPEND="vapigen"
+
+inherit gnome.org meson vala xdg
+
+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 gtk-doc +introspection test vala"
+REQUIRED_USE="vala? ( introspection )"
+RESTRICT="!test? ( test )"
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+
+RDEPEND="
+	>=dev-libs/glib-2.44.0:2
+	>=dev-libs/json-glib-0.15[introspection?]
+	>=dev-libs/libxml2-2:2
+	>=net-libs/libsoup-2.55.90:2.4[introspection?,vala?]
+	crypt? ( app-crypt/gcr:= )
+	gnome-online-accounts? ( >=net-libs/gnome-online-accounts-3.8:=[introspection?,vala?] )
+	introspection? ( >=dev-libs/gobject-introspection-1.54:= )
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+	dev-util/glib-utils
+	gtk-doc? ( >=dev-util/gtk-doc-1.25
+		app-text/docbook-xml-dtd:4.3 )
+	>=sys-devel/gettext-0.19.8
+	virtual/pkgconfig
+	test? ( >=net-libs/uhttpmock-0.5.0
+		>=x11-libs/gdk-pixbuf-2.14:2
+	)
+	vala? ( $(vala_depend) )
+"
+
+src_prepare() {
+	use vala && vala_src_prepare
+	xdg_src_prepare
+	# Don't waste time building a couple small demos that aren't installed
+	sed -i -e '/subdir.*demos/d' meson.build || die
+}
+
+src_configure() {
+	local emesonargs=(
+		-Dgtk=disabled # only for demos
+		$(meson_feature crypt gnome)
+		$(meson_feature gnome-online-accounts goa)
+		-Doauth1=disabled
+		$(meson_use test always_build_tests)
+		-Dinstalled_tests=false
+		-Dman=true
+		$(meson_use gtk-doc gtk_doc)
+		$(meson_use introspection)
+		$(meson_use vala vapi)
+	)
+	meson_src_configure
+}


             reply	other threads:[~2021-04-12 21:59 UTC|newest]

Thread overview: 64+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-04-12 21:59 Matt Turner [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
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-20 12:09 Mart Raudsepp
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=1618264768.f79495c93ce4f6abd0bf07b4395e8f907f487244.mattst88@gentoo \
    --to=mattst88@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