From: "Mart Raudsepp" <leio@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-plugins/grilo-plugins/
Date: Sun, 22 Mar 2020 17:53:02 +0000 (UTC) [thread overview]
Message-ID: <1584899566.4554e8abee74f26fe85a0adf89c93c978cd2adaa.leio@gentoo> (raw)
commit: 4554e8abee74f26fe85a0adf89c93c978cd2adaa
Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 22 17:46:49 2020 +0000
Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
CommitDate: Sun Mar 22 17:52:46 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4554e8ab
media-plugins/grilo-plugins: bump to 0.3.11
Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>
media-plugins/grilo-plugins/Manifest | 1 +
.../grilo-plugins/grilo-plugins-0.3.11.ebuild | 105 +++++++++++++++++++++
2 files changed, 106 insertions(+)
diff --git a/media-plugins/grilo-plugins/Manifest b/media-plugins/grilo-plugins/Manifest
index 4559a0f272f..e7119f03104 100644
--- a/media-plugins/grilo-plugins/Manifest
+++ b/media-plugins/grilo-plugins/Manifest
@@ -1 +1,2 @@
+DIST grilo-plugins-0.3.11.tar.xz 1449408 BLAKE2B 8ed9bd49f779eadb486a13be3bbdee0df797ebffb7833eaf2632cbb6fac90b33e2f3c92223c7e6d268257aabd710e0b9fd6c8e9395bfae776990a64e7537b41a SHA512 eefeabf333568d06ce77ba865f2dc96592428ae41c459f51e2ea7f37914c2b3d52778e5548b7d49059f1e4b83c8c07e5a8798272c5ced0259de1900d9e3f6991
DIST grilo-plugins-0.3.9.tar.xz 1418148 BLAKE2B 438aac490f2e099c40f5df15d8b3958dc29c4344e4846a3ff452561f60bf041fe2975b6c67b634f5f54721fd69e53f86c5008eadb3a402cbc8b479e805ab8221 SHA512 4700b08cab53afe0899edf7859a2e18608f6ed2016a9139694e8f1eb628c5b7318b04fe1633406fd1685a8dd54d1632b886352eac3192d52a1c1a1ac55896479
diff --git a/media-plugins/grilo-plugins/grilo-plugins-0.3.11.ebuild b/media-plugins/grilo-plugins/grilo-plugins-0.3.11.ebuild
new file mode 100644
index 00000000000..c47920d3ac6
--- /dev/null
+++ b/media-plugins/grilo-plugins/grilo-plugins-0.3.11.ebuild
@@ -0,0 +1,105 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit gnome.org meson xdg
+
+DESCRIPTION="A collection of plugins for the Grilo framework"
+HOMEPAGE="https://wiki.gnome.org/Projects/Grilo"
+
+LICENSE="LGPL-2.1+"
+SLOT="0.3"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+IUSE="daap chromaprint flickr freebox gnome-online-accounts lua test thetvdb tracker upnp-av +youtube"
+RESTRICT="!test? ( test )"
+
+# GOA is only optionally used by flickr and lua-factory plugins (checked at v0.3.8)
+# json-glib used by tmdb and lua; tmdb currently non-optional
+# TODO: validate upnp-av dleyna deps
+RDEPEND="
+ >=dev-libs/glib-2.44:2
+ >=media-libs/grilo-0.3.8:${SLOT}=[network,playlist]
+ freebox? (
+ net-dns/avahi[dbus] )
+ >=dev-libs/gom-0.3.2-r1
+ chromaprint? (
+ media-libs/gstreamer:1.0
+ media-libs/gst-plugins-base:1.0
+ media-plugins/gst-plugins-chromaprint:1.0 )
+ dev-libs/json-glib
+ daap? (
+ >=net-libs/libdmapsharing-2.9.12:3.0 )
+ media-libs/libmediaart:2.0
+ net-libs/libsoup:2.4
+ dev-libs/libxml2:2
+ flickr? (
+ net-libs/liboauth )
+ dev-db/sqlite:3
+ >=dev-libs/totem-pl-parser-3.4.1
+ tracker? (
+ >=app-misc/tracker-2.3.0:= )
+ upnp-av? (
+ net-libs/dleyna-connector-dbus
+ net-misc/dleyna-server )
+ lua? (
+ >=dev-lang/lua-5.3
+ app-arch/libarchive
+ dev-libs/libxml2:2 )
+ thetvdb? (
+ app-arch/libarchive )
+ youtube? (
+ >=dev-libs/libgdata-0.9.1:= )
+
+ gnome-online-accounts? ( >=net-libs/gnome-online-accounts-3.17.91:= )
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+ app-text/docbook-xml-dtd:4.5
+ dev-util/itstool
+ >=sys-devel/gettext-0.19.8
+ upnp-av? ( >=dev-util/gdbus-codegen-2.44 )
+ virtual/pkgconfig
+ lua? ( dev-util/gperf )
+"
+
+PATCHES=(
+ "${FILESDIR}"/0.3.8-meson-goa.patch # Support controlling g-o-a dep via 'goa' meson_options
+)
+
+src_prepare() {
+ xdg_src_prepare
+ sed -i -e "s:'GETTEXT_PACKAGE', meson.project_name():'GETTEXT_PACKAGE', 'grilo-plugins-${SLOT%/*}':" meson.build || die
+ sed -i -e "s:meson.project_name():'grilo-plugins-${SLOT%/*}':" po/meson.build || die
+ sed -i -e "s:meson.project_name():'grilo-plugins-${SLOT%/*}':" help/meson.build || die
+}
+
+src_configure() {
+ local emesonargs=(
+ -Denable-bookmarks=yes
+ -Denable-chromaprint=$(usex chromaprint yes no)
+ -Denable-dleyna=$(usex upnp-av yes no)
+ -Denable-dmap=$(usex daap yes no)
+ -Denable-filesystem=yes
+ -Denable-flickr=$(usex flickr yes no)
+ -Denable-freebox=$(usex freebox yes no)
+ -Denable-gravatar=yes
+ -Denable-jamendo=yes
+ -Denable-local-metadata=yes
+ -Denable-lua-factory=$(usex lua yes no)
+ -Denable-magnatune=yes
+ -Denable-metadata-store=yes
+ -Denable-opensubtitles=yes
+ -Denable-optical-media=yes
+ -Denable-podcasts=yes
+ -Denable-raitv=yes
+ -Denable-shoutcast=yes
+ -Denable-thetvdb=$(usex thetvdb yes no)
+ -Denable-tmdb=yes
+ -Denable-tracker=$(usex tracker yes no)
+ -Denable-vimeo=yes
+ -Denable-youtube=$(usex youtube yes no)
+ -Dgoa=$(usex gnome-online-accounts enabled disabled)
+ )
+ meson_src_configure
+}
next reply other threads:[~2020-03-22 17:53 UTC|newest]
Thread overview: 56+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-03-22 17:53 Mart Raudsepp [this message]
-- strict thread matches above, loose matches on Subject: below --
2023-08-14 14:34 [gentoo-commits] repo/gentoo:master commit in: media-plugins/grilo-plugins/ Matt Turner
2023-07-27 8:29 WANG Xuerui
2023-06-19 16:01 Matt Turner
2023-06-19 15:30 Matt Turner
2023-06-09 7:16 Arthur Zamarin
2023-06-09 6:58 Arthur Zamarin
2023-06-09 0:53 Sam James
2023-06-06 2:24 Matt Turner
2022-10-14 14:29 Matt Turner
2022-09-19 1:38 Sam James
2022-09-12 16:01 Sam James
2022-09-12 16:00 Sam James
2022-08-17 0:28 Matt Turner
2022-02-07 19:03 Matt Turner
2022-01-24 3:39 Sam James
2022-01-20 10:02 Jakov Smolić
2021-11-11 13:52 Pacho Ramos
2021-08-27 15:19 Yixun Lan
2021-04-21 4:28 Matt Turner
2021-04-15 23:06 Matt Turner
2021-03-04 0:23 Sam James
2020-07-04 15:07 Mart Raudsepp
2020-06-29 15:42 Mikle Kolyada
2020-06-28 14:19 Thomas Deutschmann
2019-12-23 22:23 Mart Raudsepp
2019-12-08 11:52 Mikle Kolyada
2019-12-08 11:41 Mikle Kolyada
2019-09-23 9:22 Mart Raudsepp
2019-08-25 16:46 Mart Raudsepp
2019-05-18 23:05 Mart Raudsepp
2019-02-17 16:05 Mart Raudsepp
2019-02-15 14:52 Mart Raudsepp
2019-02-12 15:28 Mart Raudsepp
2018-12-02 17:27 Mart Raudsepp
2018-07-28 21:50 Mart Raudsepp
2018-07-15 23:35 Mart Raudsepp
2018-02-19 20:03 Mart Raudsepp
2018-02-19 7:50 Jason Zaman
2018-01-17 6:42 Thomas Deutschmann
2017-09-13 7:28 Gilles Dartiguelongue
2017-08-19 17:17 Gilles Dartiguelongue
2017-08-19 17:17 Gilles Dartiguelongue
2017-07-14 15:25 Alexis Ballier
2017-06-17 8:32 Sergei Trofimovich
2017-04-04 21:04 Markus Meier
2017-03-23 3:16 Mart Raudsepp
2017-03-23 3:16 Mart Raudsepp
2016-09-11 19:00 Gilles Dartiguelongue
2016-03-06 20:12 Mikle Kolyada
2015-12-26 14:20 Pacho Ramos
2015-11-26 10:51 Gilles Dartiguelongue
2015-11-15 14:23 Pacho Ramos
2015-11-15 14:23 Pacho Ramos
2015-11-15 14:23 Pacho Ramos
2015-09-07 21:55 Mikle Kolyada
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=1584899566.4554e8abee74f26fe85a0adf89c93c978cd2adaa.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