media-plugins/grilo-plugins: drop 0.3.16-r1

Signed-off-by: Pacho Ramos <pacho@gentoo.org>
This commit is contained in:
Pacho Ramos
2026-02-22 11:37:09 +01:00
parent 90b2a9bc76
commit 8f0744adb2
2 changed files with 0 additions and 114 deletions

View File

@@ -1,2 +1 @@
DIST grilo-plugins-0.3.16.tar.xz 1843572 BLAKE2B 08f7af1a24f1f86019a3adf2ceea0bbca068f61db5e6e508b7f91f1b864ef3d788fdca7329c464c1a3197f0ca4c6efd5b4b0d84afd688dcb99a54ba1d958056a SHA512 ce1f2786af24ebac98a1dac455f91fa7f63eefcf9029872a8ca1d631bf4fcf76f0578e68e00da20fbfe4c0aeac285ccf9a3e1a8301ffa623a45dbb0b75cb2a32
DIST grilo-plugins-0.3.18.tar.xz 2071656 BLAKE2B f1be62dc42ee86daa13b604be707803862bea608c82e64c5f4faf2d52f0f8b315546042932334dff6cd655ca24de3d2c3bafa4ff750c8db42a980ca4356da248 SHA512 cd741ab573871bfdede1d5debad65e925dd4ec936f0aa8f21d3963b9fff88bfba60ee17c7f46c05179624c4af2133b02783c8c71d5091a23de849d3d221f47e6

View File

@@ -1,113 +0,0 @@
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
LUA_COMPAT=( lua5-{3,4} )
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 ~loong ~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 lua-factory plugins (checked at v0.3.16)
# 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.15-r1:${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-3.9.11:4.0= )
media-libs/libmediaart:2.0
net-libs/libsoup:3.0
dev-libs/libxml2:2=
flickr? ( net-libs/liboauth )
dev-db/sqlite:3
>=dev-libs/totem-pl-parser-3.4.1:=
tracker? ( app-misc/tinysparql:3= )
upnp-av? ( net-libs/dleyna:1.0= )
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.80.5-r1 )
virtual/pkgconfig
lua? ( dev-util/gperf )
"
pkg_pretend() {
if use gnome-online-accounts; then
if ! use lua; then
ewarn "Ignoring USE=gnome-online-accounts USE does not contain 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
}
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=no # Requires libsoup-2
-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 lua; then
emesonargs+=($(meson_feature gnome-online-accounts goa))
else
emesonargs+=(-Dgoa=disabled)
fi
meson_src_configure
}