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: media-plugins/grilo-plugins/
Date: Wed, 17 Aug 2022 00:28:27 +0000 (UTC)	[thread overview]
Message-ID: <1660696092.e9d3b0ce4cf28d55c1e8c65a95399b0ed7563b32.mattst88@gentoo> (raw)

commit:     e9d3b0ce4cf28d55c1e8c65a95399b0ed7563b32
Author:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 17 00:27:47 2022 +0000
Commit:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Wed Aug 17 00:28:12 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9d3b0ce

media-plugins/grilo-plugins: Version bump to 0.3.15

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

 media-plugins/grilo-plugins/Manifest               |   1 +
 .../grilo-plugins/grilo-plugins-0.3.15.ebuild      | 122 +++++++++++++++++++++
 2 files changed, 123 insertions(+)

diff --git a/media-plugins/grilo-plugins/Manifest b/media-plugins/grilo-plugins/Manifest
index 9c72c2233921..0d7e4b6ac841 100644
--- a/media-plugins/grilo-plugins/Manifest
+++ b/media-plugins/grilo-plugins/Manifest
@@ -1 +1,2 @@
 DIST grilo-plugins-0.3.14.tar.xz 1836512 BLAKE2B 28d633a1565c1bc8329a6a69d4f2d8db5e5887cdce5e56fd4167ab31f293a2c203583b9c2a916977a9642c6acc15933d37e50026e9929587f0f35af688c6a9c4 SHA512 941d9524cfb33e33315ac7575051521d9117ef517b169cca90660dee788252eaf1e6f8171ccc7beede5564d63149e065faf08c3244e17f7c1c193bfb7d2af1f8
+DIST grilo-plugins-0.3.15.tar.xz 1844584 BLAKE2B dbd25dd79e1676c42e5d36e6253628d7940ef75d1ba7625f5ffc36ad80f44ea0bc61a4beab609be26dc4c2c3f1fbc4f74905064dcb3df8a690cf67a4da2348b3 SHA512 4580990aeea6028668cf1762e8541a13349064e2713d97749126ea4a459e0c590b93a19c0f138103233a8fb7ab1c5009df1473c65ed06dce78e26c24aa63c2db

diff --git a/media-plugins/grilo-plugins/grilo-plugins-0.3.15.ebuild b/media-plugins/grilo-plugins/grilo-plugins-0.3.15.ebuild
new file mode 100644
index 000000000000..f1d693f78977
--- /dev/null
+++ b/media-plugins/grilo-plugins/grilo-plugins-0.3.15.ebuild
@@ -0,0 +1,122 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+LUA_COMPAT=( lua5-3 )
+inherit gnome.org lua-single 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 ~riscv ~sparc ~x86"
+IUSE="daap chromaprint flickr freebox gnome-online-accounts lua test thetvdb tracker upnp-av +youtube"
+RESTRICT="!test? ( test )"
+REQUIRED_USE="lua? ( ${LUA_REQUIRED_USE} )"
+
+# GOA is only optionally used by flickr and lua-factory plugins (checked at v0.3.13)
+# json-glib used by tmdb and lua; tmdb currently non-optional
+# TODO: validate upnp-av dleyna deps
+RDEPEND="
+	>=dev-libs/glib-2.66:2
+	>=media-libs/grilo-0.3.13:${SLOT}=[playlist]
+	freebox? ( net-dns/avahi[dbus] )
+	>=dev-libs/gom-0.4
+	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
+		gnome-online-accounts? ( >=net-libs/gnome-online-accounts-3.17.91:= )
+	)
+	dev-db/sqlite:3
+	>=dev-libs/totem-pl-parser-3.4.1:=
+	tracker? ( app-misc/tracker:3= )
+	upnp-av? (
+		net-libs/dleyna-connector-dbus
+		net-misc/dleyna-server
+	)
+	lua? (
+		${LUA_DEPS}
+		app-arch/libarchive
+		dev-libs/libxml2:2
+		gnome-online-accounts? ( >=net-libs/gnome-online-accounts-3.17.91:= )
+	)
+	thetvdb? ( app-arch/libarchive )
+	youtube? ( >=dev-libs/libgdata-0.17.0:= )
+"
+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 )
+"
+
+pkg_pretend() {
+	if use gnome-online-accounts; then
+		if ! use flickr && ! use lua; then
+			ewarn "Ignoring USE=gnome-online-accounts USE does not contain flickr or lua"
+		fi
+	fi
+}
+
+pkg_setup() {
+	use lua && lua-single_pkg_setup
+}
+
+src_prepare() {
+	default
+	xdg_environment_reset
+
+	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
+
+	# libdmapsharing-4 is not packaged
+	sed -i -e "s:libdmapsharing4_dep.found():false:" 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-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=no
+		-Denable-tracker3=$(usex tracker yes no)
+		-Denable-youtube=$(usex youtube yes no)
+		-Dhelp=no
+	)
+	if use flickr || use lua; then
+		emesonargs+=($(meson_feature gnome-online-accounts goa))
+	else
+		emesonargs+=(-Dgoa=disabled)
+	fi
+	meson_src_configure
+}


             reply	other threads:[~2022-08-17  0:28 UTC|newest]

Thread overview: 56+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-08-17  0:28 Matt Turner [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-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
2020-03-22 17:53 Mart Raudsepp
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=1660696092.e9d3b0ce4cf28d55c1e8c65a95399b0ed7563b32.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