Gentoo Archives: gentoo-commits

From: Erik Mackdanz <stasibear@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/upmpdcli/
Date: Sat, 02 Jan 2021 04:28:07
Message-Id: 1609561661.201d2a6a7e1febc4c9f70a31ab5fce77226897d5.stasibear@gentoo
1 commit: 201d2a6a7e1febc4c9f70a31ab5fce77226897d5
2 Author: Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jan 2 04:27:08 2021 +0000
4 Commit: Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 2 04:27:41 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=201d2a6a
7
8 media-sound/upmpdcli: Bump to 1.5.7
9
10 Signed-off-by: Erik Mackdanz <stasibear <AT> gentoo.org>
11 Package-Manager: Portage-3.0.12, Repoman-3.0.2
12
13 media-sound/upmpdcli/Manifest | 1 +
14 media-sound/upmpdcli/upmpdcli-1.5.7.ebuild | 49 ++++++++++++++++++++++++++++++
15 2 files changed, 50 insertions(+)
16
17 diff --git a/media-sound/upmpdcli/Manifest b/media-sound/upmpdcli/Manifest
18 index 52fc720a804..12761f4fa0a 100644
19 --- a/media-sound/upmpdcli/Manifest
20 +++ b/media-sound/upmpdcli/Manifest
21 @@ -1,2 +1,3 @@
22 DIST upmpdcli-1.5.2.tar.gz 550460 BLAKE2B e9905fb2f6c07d7374651fd0a9d7ec821d6ea25d4debe1b6e69bbf7def8b75d0b35b245a5e4ca2477832f71a9fe950f7f7635d1b6fc29add0e59405c0c69b338 SHA512 4d6cd44b64637c5a07996a416f0cf15e27e24b84aa04ee3ee9f6f5eda3164a5b964915587a4342cc0a8f95fa175dd106b99242de5c50d3cb603e48450694009e
23 DIST upmpdcli-1.5.5.tar.gz 550726 BLAKE2B 1a32f5a3126e037f6663ab60244d7af3fd7aeb79c5878ba1ca4d8029b97917a70f5b06a82e6006fcf14642b96cb5539488b3bba03860a2dd23e6bce0efe54bdc SHA512 90ce69b4ef004e1b5db3229b3bc99637ecba0f5f7e82d0e9f567da163295b4a572d059accbeb679194d1846eb822d48378acc743ee334ffd9859f3e025f6a0f3
24 +DIST upmpdcli-1.5.7.tar.gz 552203 BLAKE2B fe8e8aa3f4c777925dce2a143aec201462cb2da9e33f604d48848f27acc51fad42e1c626c17b5325918f0d1de1b37c1c456240f811af118b83bc7ce3260e0687 SHA512 ce86b8f9b4e7614433ab542facbf7452426b66bf026bb21ea0e868cde9b492b09a86ee8aa259a9353f2ede6a22d1055987986747aa8e284714c5e60f73a3a55a
25
26 diff --git a/media-sound/upmpdcli/upmpdcli-1.5.7.ebuild b/media-sound/upmpdcli/upmpdcli-1.5.7.ebuild
27 new file mode 100644
28 index 00000000000..90bdff1ab33
29 --- /dev/null
30 +++ b/media-sound/upmpdcli/upmpdcli-1.5.7.ebuild
31 @@ -0,0 +1,49 @@
32 +# Copyright 1999-2021 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +inherit systemd
38 +
39 +DESCRIPTION="UPnP Media Renderer front-end for MPD, the Music Player Daemon"
40 +HOMEPAGE="https://www.lesbonscomptes.com/upmpdcli/index.html"
41 +LICENSE="GPL-2"
42 +
43 +SRC_URI="https://www.lesbonscomptes.com/upmpdcli/downloads/${P}.tar.gz"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~x86"
46 +IUSE="thirdparty"
47 +
48 +DEPEND="
49 + dev-libs/jsoncpp
50 + media-libs/libmpdclient
51 + net-libs/libmicrohttpd
52 + >=net-libs/libupnpp-0.20.0-r1
53 +"
54 +RDEPEND="
55 + ${DEPEND}
56 + acct-group/upmpdcli
57 + acct-user/upmpdcli
58 + app-misc/recoll
59 + thirdparty? ( dev-python/requests )
60 +"
61 +
62 +src_install() {
63 + default
64 + newinitd "${FILESDIR}/${PN}.initd" "${PN}"
65 + newconfd "${FILESDIR}/${PN}.confd" "${PN}"
66 + systemd_dounit systemd/upmpdcli.service
67 +}
68 +
69 +pkg_postinst() {
70 + einfo
71 + einfo "This package no longer assumes that upmpdcli is driving an"
72 + einfo "mpd instance on the same host (https://bugs.gentoo.org/670130)."
73 + einfo "Probably it is though, so be sure your mpd is built with"
74 + einfo "USE=curl."
75 + einfo
76 + einfo "Consider installing media-sound/sc2mpd. If upmpdcli"
77 + einfo "detects sc2mpd at run-time, capabilities are added"
78 + einfo "including internet radio support. See upstream docs"
79 + einfo "for more information."
80 +}