diff options
author | Johannes Huber <johu@gentoo.org> | 2019-11-16 10:12:53 +0100 |
---|---|---|
committer | Johannes Huber <johu@gentoo.org> | 2019-11-16 10:14:22 +0100 |
commit | 89ce85f395d47a0ae7892adf86ffda2c6e37c367 (patch) | |
tree | a60f4b33b00e64b517999b5ac4dc94c3ed98833a /media-sound | |
parent | dev-ruby/ethon: cleanup (diff) | |
download | gentoo-89ce85f395d47a0ae7892adf86ffda2c6e37c367.tar.gz gentoo-89ce85f395d47a0ae7892adf86ffda2c6e37c367.tar.bz2 gentoo-89ce85f395d47a0ae7892adf86ffda2c6e37c367.zip |
media-sound/lollypop: Version bump 1.2.12
Package-Manager: Portage-2.3.79, Repoman-2.3.18
Signed-off-by: Johannes Huber <johu@gentoo.org>
Diffstat (limited to 'media-sound')
-rw-r--r-- | media-sound/lollypop/Manifest | 1 | ||||
-rw-r--r-- | media-sound/lollypop/lollypop-1.2.12.ebuild | 61 |
2 files changed, 62 insertions, 0 deletions
diff --git a/media-sound/lollypop/Manifest b/media-sound/lollypop/Manifest index 7f92ce90e850..3efbf4e55c27 100644 --- a/media-sound/lollypop/Manifest +++ b/media-sound/lollypop/Manifest @@ -1,2 +1,3 @@ DIST lollypop-1.1.4.16.tar.xz 455312 BLAKE2B 358fae45a4332c10ba59d65d09ae51f28fb7fc026e137289c47951536753796e0b7efa9f3713bccde68e6260f79b1132eb00357be8c53fba04f3c827e97851cf SHA512 08b8ec7c1fbe5f1b8f95f95677012eeb9bd83951ee320470a0da852e0a446818e48ede7de045f6d7b98dff8be139fa69d780dbf03e65904c773f8ec1493f9915 +DIST lollypop-1.2.12.tar.xz 481528 BLAKE2B 973aa62130d566759327ec303a0063a8739dbbd4df718490c96d25bd6f5d5dd6eb3120dc33e38e91d29358dab9f0e5ed337d461877563f92b0663985f4d5ecc8 SHA512 1945275a4b962e90a498cb7a08693395cb750535e4028880911928d05c381fc1914a6ffbbac65246ae835edd1b3225373cf8679fd553b25991d92989ce458b95 DIST lollypop-1.2.7.tar.xz 480980 BLAKE2B 9c670b2f64ed6e6a66d743f7d14ac4c360c258f0504dde99cb13e2347b76f600779e004bdd375b90214c450c75c1c446b5f1ba30c6597bf51d6f9fbc5556093f SHA512 f4967bfda276ff2acb496ec2cc27d711caea5385e949c0c222f97ae528d6ffdd3d26336deaec7aa15a926bce229a9d125148367dc3652a9f9ebeaa07521b075d diff --git a/media-sound/lollypop/lollypop-1.2.12.ebuild b/media-sound/lollypop/lollypop-1.2.12.ebuild new file mode 100644 index 000000000000..4352df9f2188 --- /dev/null +++ b/media-sound/lollypop/lollypop-1.2.12.ebuild @@ -0,0 +1,61 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_6 ) +PYTHON_REQ_USE="sqlite" +HASH="f10cc2e8d6da6bac3490a43429a592c1" +inherit python-r1 gnome2-utils meson xdg-utils + +DESCRIPTION="Modern music player for GNOME" +HOMEPAGE="https://wiki.gnome.org/Apps/Lollypop" +SRC_URI="https://gitlab.gnome.org/World/${PN}/uploads/${HASH}/${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] + dev-python/pycairo[${PYTHON_USEDEP}] + dev-python/pygobject:3[${PYTHON_USEDEP}] + gnome-base/gnome-common + x11-libs/gtk+:3 +" +BDEPEND="${DEPEND} + dev-python/pkgconfig[${PYTHON_USEDEP}] + dev-util/desktop-file-utils + dev-util/itstool + dev-util/intltool +" +RDEPEND="${DEPEND} + app-crypt/libsecret[introspection] + dev-libs/totem-pl-parser + dev-python/beautifulsoup:4[${PYTHON_USEDEP}] + dev-python/dbus-python + dev-python/pillow[${PYTHON_USEDEP}] + >=dev-python/pylast-1.0.0[${PYTHON_USEDEP}] + media-libs/gst-plugins-base:1.0[introspection] +" + +RESTRICT="test" + +pkg_preinst() { + gnome2_schemas_savelist +} + +pkg_postinst() { + gnome2_gconf_install + gnome2_schemas_update + xdg_desktop_database_update +} + +pkg_postrm() { + gnome2_gconf_uninstall + gnome2_schemas_update + xdg_desktop_database_update +} |