media-libs/grilo: Version bump to 0.3.13

* Drop broken IUSE=network (bug #763330)

Closes: https://bugs.gentoo.org/763330
Signed-off-by: Matt Turner <mattst88@gentoo.org>
This commit is contained in:
Matt Turner
2021-04-14 21:22:07 -04:00
parent cb529dd148
commit 9c4dbef855
2 changed files with 78 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST grilo-0.3.12.tar.xz 234340 BLAKE2B dd9f2558dee73080d87a98209816ca79a13fee4934a9e456190616e11565095e3c08e64f3ccec30e3bb7a102a9e23c25ba32a95f963676516a354a785bd6bdd6 SHA512 c0badc4b3f96efa04e6f3b5f32b2322855d9a660f748ce68012d266a6f5936f850bd63e559c782ae02ee24ba282c3b3882c6b8fae99019b913d74ff927a31017
DIST grilo-0.3.13.tar.xz 236420 BLAKE2B 8f891507edce92bccbc12aa9ecce78e8bd0804e548deec9a3651a656a27e9e87156e8cd7e1959a662c23e16fe958ff09f95755f825116f785784271883579dfc SHA512 b229b9b7524c1be63ed8891a9438844ebb87013074b394330f25316feb015040b304cd98bf3c89dc3248e6898c587a5e51666776a5b4ba5026a80ee8ad3e6d01

View File

@@ -0,0 +1,77 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{7..9} )
VALA_USE_DEPEND="vapigen"
inherit gnome.org meson python-any-r1 vala xdg
DESCRIPTION="A framework for easy media discovery and browsing"
HOMEPAGE="https://wiki.gnome.org/Projects/Grilo"
LICENSE="LGPL-2.1+"
SLOT="0.3/0" # subslot is libgrilo-0.3 soname suffix
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="gtk gtk-doc +introspection +playlist test vala"
REQUIRED_USE="vala? ( introspection )"
RESTRICT="!test? ( test )"
# oauth could be optional if meson is patched - used for flickr oauth in grilo-test-ui tool
RDEPEND="
>=dev-libs/glib-2.58:2
dev-libs/libxml2:2
>=net-libs/libsoup-2.41.3:2.4[introspection?]
playlist? ( >=dev-libs/totem-pl-parser-3.4.1 )
introspection? ( >=dev-libs/gobject-introspection-1.54:= )
gtk? (
net-libs/liboauth
>=x11-libs/gtk+-3.14:3
)
"
DEPEND="${RDEPEND}"
BDEPEND="
dev-util/glib-utils
>=sys-devel/gettext-0.19.8
virtual/pkgconfig
gtk-doc? (
>=dev-util/gtk-doc-1.10
app-text/docbook-xml-dtd:4.3
)
${PYTHON_DEPS}
test? ( sys-apps/dbus )
vala? ( $(vala_depend) )
"
src_prepare() {
sed -i -e "s:'GETTEXT_PACKAGE', meson.project_name():'GETTEXT_PACKAGE', 'grilo-${SLOT%/*}':" meson.build || die
sed -i -e "s:meson.project_name():'grilo-${SLOT%/*}':" po/meson.build || die
sed -i -e "s:'grilo':'grilo-${SLOT%/*}':" doc/grilo/meson.build || die
# Drop explicit unversioned vapigen check
sed -i -e "/find_program.*vapigen/d" meson.build || die
# Don't build examples; they get embedded in gtk-doc, thus we don't install the sources with USE=examples either
sed -i -e "/subdir('examples')/d" meson.build || die
xdg_src_prepare
use vala && vala_src_prepare
}
src_configure() {
local emesonargs=(
-Denable-grl-net=true # Fails to build
$(meson_use playlist enable-grl-pls)
$(meson_use gtk-doc enable-gtk-doc)
$(meson_use introspection enable-introspection)
$(meson_use gtk enable-test-ui)
$(meson_use vala enable-vala)
)
meson_src_configure
}
src_test() {
dbus-run-session meson test -C "${BUILD_DIR}" || die
}