Gentoo Archives: gentoo-commits

From: Johannes Huber <johu@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/lollypop/
Date: Tue, 18 Feb 2020 18:16:38
Message-Id: 1582049781.fa9a96d272ab767e4599c32e1861861b45a7ba59.johu@gentoo
1 commit: fa9a96d272ab767e4599c32e1861861b45a7ba59
2 Author: Johannes Huber <johu <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 18 18:14:58 2020 +0000
4 Commit: Johannes Huber <johu <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 18 18:16:21 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa9a96d2
7
8 media-sound/lollypop: Version bump 1.2.22
9
10 Package-Manager: Portage-2.3.89, Repoman-2.3.20
11 Signed-off-by: Johannes Huber <johu <AT> gentoo.org>
12
13 media-sound/lollypop/Manifest | 1 +
14 media-sound/lollypop/lollypop-1.2.22.ebuild | 65 +++++++++++++++++++++++++++++
15 2 files changed, 66 insertions(+)
16
17 diff --git a/media-sound/lollypop/Manifest b/media-sound/lollypop/Manifest
18 index d18406ac562..55df3284582 100644
19 --- a/media-sound/lollypop/Manifest
20 +++ b/media-sound/lollypop/Manifest
21 @@ -1,2 +1,3 @@
22 DIST lollypop-1.1.4.16.tar.xz 455312 BLAKE2B 358fae45a4332c10ba59d65d09ae51f28fb7fc026e137289c47951536753796e0b7efa9f3713bccde68e6260f79b1132eb00357be8c53fba04f3c827e97851cf SHA512 08b8ec7c1fbe5f1b8f95f95677012eeb9bd83951ee320470a0da852e0a446818e48ede7de045f6d7b98dff8be139fa69d780dbf03e65904c773f8ec1493f9915
23 DIST lollypop-1.2.20.tar.xz 486920 BLAKE2B b4ce120935dbdd6392ff9b6ffa8acc6cceba33953d6595163cb0774adfeef9ca901f00d19101367d43d7edd3b8ebdfb15c43179de5780a0c56c825bc60ec9e72 SHA512 a5e17135a0d7ab3cc074c3fac49e76c22358d704e1b7bd5e2d554b426d9872947625c37d490f2859841b53d3c6d38e934efd8b1cf5a75b4fc76a2c5fbdf8fb82
24 +DIST lollypop-1.2.22.tar.xz 492964 BLAKE2B b113d5e19ec63a5535c86e2347b49c3fe4f56dabdfc4c7943ce956931580cdd92e96cb35c5c45c84d75f2d599e78c93caa195216a1a754f764254e4b73ccb531 SHA512 0161be7d6d2a10db57679c4c230ab9832ab34ce7074fc9e215a56a0dcc64fe17b3b8367c271209a75096b327dd6b793be2f54fb3904e3c98a26b1cd2aa88962b
25
26 diff --git a/media-sound/lollypop/lollypop-1.2.22.ebuild b/media-sound/lollypop/lollypop-1.2.22.ebuild
27 new file mode 100644
28 index 00000000000..0134d5693e9
29 --- /dev/null
30 +++ b/media-sound/lollypop/lollypop-1.2.22.ebuild
31 @@ -0,0 +1,65 @@
32 +# Copyright 1999-2020 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +PYTHON_COMPAT=( python3_6 )
38 +PYTHON_REQ_USE="sqlite"
39 +inherit python-r1 gnome2-utils meson xdg-utils
40 +
41 +DESCRIPTION="Modern music player for GNOME"
42 +HOMEPAGE="https://wiki.gnome.org/Apps/Lollypop"
43 +SRC_URI="https://adishatz.org/${PN}/${P}.tar.xz"
44 +KEYWORDS="~amd64"
45 +
46 +LICENSE="GPL-3"
47 +SLOT="0"
48 +REQUIRED_USE=${PYTHON_REQUIRED_USE}
49 +
50 +DEPEND="${PYTHON_DEPS}
51 + dev-libs/appstream-glib[introspection]
52 + dev-libs/glib:2
53 + dev-libs/gobject-introspection[cairo]
54 + dev-python/pycairo[${PYTHON_USEDEP}]
55 + dev-python/pygobject:3[${PYTHON_USEDEP}]
56 + gnome-base/gnome-common
57 + x11-libs/gtk+:3
58 +"
59 +BDEPEND="${DEPEND}
60 + dev-python/pkgconfig[${PYTHON_USEDEP}]
61 + dev-util/desktop-file-utils
62 + dev-util/itstool
63 + dev-util/intltool
64 +"
65 +RDEPEND="${DEPEND}
66 + app-crypt/libsecret[introspection]
67 + dev-libs/totem-pl-parser
68 + dev-python/beautifulsoup:4[${PYTHON_USEDEP}]
69 + dev-python/dbus-python
70 + dev-python/pillow[${PYTHON_USEDEP}]
71 + >=dev-python/pylast-1.0.0[${PYTHON_USEDEP}]
72 + media-libs/gst-plugins-base:1.0[introspection]
73 +"
74 +
75 +RESTRICT="test"
76 +
77 +pkg_preinst() {
78 + gnome2_schemas_savelist
79 +}
80 +
81 +src_install() {
82 + meson_src_install
83 + python_foreach_impl python_optimize
84 +}
85 +
86 +pkg_postinst() {
87 + gnome2_gconf_install
88 + gnome2_schemas_update
89 + xdg_desktop_database_update
90 +}
91 +
92 +pkg_postrm() {
93 + gnome2_gconf_uninstall
94 + gnome2_schemas_update
95 + xdg_desktop_database_update
96 +}