Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/lollypop/
Date: Tue, 01 Jun 2021 00:28:33
Message-Id: 1622507273.d91186acd041d88e710e17f17422819edf13d5c1.sam@gentoo
1 commit: d91186acd041d88e710e17f17422819edf13d5c1
2 Author: Yuan Liao <liaoyuan <AT> gmail <DOT> com>
3 AuthorDate: Mon Mar 29 21:25:59 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Tue Jun 1 00:27:53 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d91186ac
7
8 media-sound/lollypop: Version bump 1.4.18
9
10 Closes: https://bugs.gentoo.org/769377
11 Package-Manager: Portage-3.0.13, Repoman-3.0.2
12 Signed-off-by: Yuan Liao <liaoyuan <AT> gmail.com>
13 Closes: https://github.com/gentoo/gentoo/pull/20190
14 Signed-off-by: Sam James <sam <AT> gentoo.org>
15
16 media-sound/lollypop/Manifest | 1 +
17 media-sound/lollypop/lollypop-1.4.18.ebuild | 73 +++++++++++++++++++++++++++++
18 2 files changed, 74 insertions(+)
19
20 diff --git a/media-sound/lollypop/Manifest b/media-sound/lollypop/Manifest
21 index 856286fccc8..d80dd4dba88 100644
22 --- a/media-sound/lollypop/Manifest
23 +++ b/media-sound/lollypop/Manifest
24 @@ -1 +1,2 @@
25 DIST lollypop-1.2.35.tar.xz 509916 BLAKE2B 8cf9ea74287b6ac7d4942c2312cc4d6e07d4748d505cc9e45a896129f9e4a43ef5c65c0c18764597d7ce3c4d2fc93804c501f68ea3b67625e200497613077af6 SHA512 179fa5e77482db35de9e30e392e6d07bb5c832d5d1decaee06982570bdcbb809dc99375eeb6fe3dce75829af3570953ce517e3b4eaabceac807b9d5c382bd53e
26 +DIST lollypop-1.4.18.tar.xz 575120 BLAKE2B 62ff404c0e7c2ac7029ebb45143db35b0b93b30bfc386fb08aa4a2fc10916efb190118f41e40a0f795bef4f8d0b21b0353b9e27bbb75c5471132145028fc8b27 SHA512 17f2db91a56fd140c66c251732eca4b2a6cc1849b5dc72f0a4014c766c64eee475bc9d2305d307e2a54184ab5dd812a5fb27b39acf60a1c468770d1d34307982
27
28 diff --git a/media-sound/lollypop/lollypop-1.4.18.ebuild b/media-sound/lollypop/lollypop-1.4.18.ebuild
29 new file mode 100644
30 index 00000000000..6837244ef5e
31 --- /dev/null
32 +++ b/media-sound/lollypop/lollypop-1.4.18.ebuild
33 @@ -0,0 +1,73 @@
34 +# Copyright 1999-2021 Gentoo Authors
35 +# Distributed under the terms of the GNU General Public License v2
36 +
37 +EAPI=7
38 +
39 +PYTHON_COMPAT=( python3_{7,8} )
40 +PYTHON_REQ_USE="sqlite"
41 +inherit python-single-r1 gnome2-utils meson xdg
42 +
43 +DESCRIPTION="Modern music player for GNOME"
44 +HOMEPAGE="https://wiki.gnome.org/Apps/Lollypop"
45 +SRC_URI="https://adishatz.org/${PN}/${P}.tar.xz"
46 +KEYWORDS="~amd64"
47 +
48 +LICENSE="GPL-3"
49 +SLOT="0"
50 +REQUIRED_USE=${PYTHON_REQUIRED_USE}
51 +
52 +DEPEND="${PYTHON_DEPS}
53 + dev-libs/appstream-glib[introspection]
54 + dev-libs/glib:2
55 + dev-libs/gobject-introspection[cairo(+)]
56 + $(python_gen_cond_dep '
57 + dev-python/pycairo[${PYTHON_MULTI_USEDEP}]
58 + dev-python/pygobject:3[${PYTHON_MULTI_USEDEP}]
59 + ')
60 + gnome-base/gnome-common
61 + x11-libs/gtk+:3
62 +"
63 +BDEPEND="${DEPEND}
64 + $(python_gen_cond_dep '
65 + dev-python/pkgconfig[${PYTHON_MULTI_USEDEP}]
66 + ')
67 + dev-util/desktop-file-utils
68 + dev-util/itstool
69 + dev-util/intltool
70 +"
71 +RDEPEND="${DEPEND}
72 + app-crypt/libsecret[introspection]
73 + dev-libs/totem-pl-parser
74 + $(python_gen_cond_dep '
75 + dev-python/beautifulsoup:4[${PYTHON_MULTI_USEDEP}]
76 + dev-python/dbus-python
77 + dev-python/gst-python[${PYTHON_MULTI_USEDEP}]
78 + dev-python/pillow[${PYTHON_MULTI_USEDEP}]
79 + ')
80 + gui-libs/libhandy:1
81 + media-libs/gst-plugins-base:1.0[introspection]
82 +"
83 +
84 +RESTRICT="test"
85 +
86 +src_install() {
87 + meson_src_install
88 + python_optimize
89 +}
90 +
91 +pkg_preinst() {
92 + gnome2_schemas_savelist
93 + xdg_pkg_preinst
94 +}
95 +
96 +pkg_postinst() {
97 + gnome2_gconf_install
98 + gnome2_schemas_update
99 + xdg_pkg_postinst
100 +}
101 +
102 +pkg_postrm() {
103 + gnome2_gconf_uninstall
104 + gnome2_schemas_update
105 + xdg_pkg_postrm
106 +}