diff options
author | Johannes Huber <johu@gentoo.org> | 2020-04-18 10:57:35 +0200 |
---|---|---|
committer | Johannes Huber <johu@gentoo.org> | 2020-04-18 10:58:17 +0200 |
commit | e10585731d3949b59123192e681c9dbf285c4d60 (patch) | |
tree | 7707cda85615a470848f23ee7acbab25b53cf6fd /media-sound/lollypop/lollypop-1.2.35.ebuild | |
parent | app-backup/rdiff-backup: Remove old (diff) | |
download | gentoo-e10585731d3949b59123192e681c9dbf285c4d60.tar.gz gentoo-e10585731d3949b59123192e681c9dbf285c4d60.tar.bz2 gentoo-e10585731d3949b59123192e681c9dbf285c4d60.zip |
media-sound/lollypop: Version bump 1.2.35
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Johannes Huber <johu@gentoo.org>
Diffstat (limited to 'media-sound/lollypop/lollypop-1.2.35.ebuild')
-rw-r--r-- | media-sound/lollypop/lollypop-1.2.35.ebuild | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/media-sound/lollypop/lollypop-1.2.35.ebuild b/media-sound/lollypop/lollypop-1.2.35.ebuild new file mode 100644 index 000000000000..06db306eb32f --- /dev/null +++ b/media-sound/lollypop/lollypop-1.2.35.ebuild @@ -0,0 +1,71 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_6 ) +PYTHON_REQ_USE="sqlite" +inherit python-single-r1 gnome2-utils meson xdg-utils + +DESCRIPTION="Modern music player for GNOME" +HOMEPAGE="https://wiki.gnome.org/Apps/Lollypop" +SRC_URI="https://adishatz.org/${PN}/${P}.tar.xz" +KEYWORDS="~amd64" + +LICENSE="GPL-3" +SLOT="0" +REQUIRED_USE=${PYTHON_REQUIRED_USE} + +DEPEND="${PYTHON_DEPS} + dev-libs/appstream-glib[introspection] + dev-libs/glib:2 + dev-libs/gobject-introspection[cairo(+)] + $(python_gen_cond_dep ' + dev-python/pycairo[${PYTHON_MULTI_USEDEP}] + dev-python/pygobject:3[${PYTHON_MULTI_USEDEP}] + ') + gnome-base/gnome-common + x11-libs/gtk+:3 +" +BDEPEND="${DEPEND} + $(python_gen_cond_dep ' + dev-python/pkgconfig[${PYTHON_MULTI_USEDEP}] + ') + dev-util/desktop-file-utils + dev-util/itstool + dev-util/intltool +" +RDEPEND="${DEPEND} + app-crypt/libsecret[introspection] + dev-libs/totem-pl-parser + $(python_gen_cond_dep ' + dev-python/beautifulsoup:4[${PYTHON_MULTI_USEDEP}] + dev-python/dbus-python + dev-python/pillow[${PYTHON_MULTI_USEDEP}] + >=dev-python/pylast-1.0.0[${PYTHON_MULTI_USEDEP}] + ') + media-libs/gst-plugins-base:1.0[introspection] +" + +RESTRICT="test" + +pkg_preinst() { + gnome2_schemas_savelist +} + +src_install() { + meson_src_install + python_optimize +} + +pkg_postinst() { + gnome2_gconf_install + gnome2_schemas_update + xdg_desktop_database_update +} + +pkg_postrm() { + gnome2_gconf_uninstall + gnome2_schemas_update + xdg_desktop_database_update +} |