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: Mon, 22 Oct 2018 01:20:29
Message-Id: 1540171203.4879d916a3b9d5e0d11bae5fddc853263f105253.stasibear@gentoo
1 commit: 4879d916a3b9d5e0d11bae5fddc853263f105253
2 Author: Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
3 AuthorDate: Mon Oct 22 01:20:03 2018 +0000
4 Commit: Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
5 CommitDate: Mon Oct 22 01:20:03 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4879d916
7
8 media-sound/upmpdcli: Bump to 1.3.6
9
10 Signed-off-by: Erik Mackdanz <stasibear <AT> gentoo.org>
11 Package-Manager: Portage-2.3.51, Repoman-2.3.11
12
13 media-sound/upmpdcli/Manifest | 1 +
14 media-sound/upmpdcli/upmpdcli-1.3.6.ebuild | 47 ++++++++++++++++++++++++++++++
15 2 files changed, 48 insertions(+)
16
17 diff --git a/media-sound/upmpdcli/Manifest b/media-sound/upmpdcli/Manifest
18 index 4bbbc26c96f..1907400c9ad 100644
19 --- a/media-sound/upmpdcli/Manifest
20 +++ b/media-sound/upmpdcli/Manifest
21 @@ -1 +1,2 @@
22 DIST upmpdcli-1.2.16.tar.gz 429958 BLAKE2B d484e98ca7774e6d55e42937152efda9bc2127afd6a222575055c48cd7cf5d61f6b578d80a3eca75d7299570cc9d3acc78b1e0c461f4a064528fdb9cb62eee22 SHA512 1fd5b1939f7140f2e54401967308dd155e0f72406188b82e8ccc9178f5feeb0d37cfcd28dd220dd5437d06f49955cc83d70f0bb7c3659452ccb2e73f8846a226
23 +DIST upmpdcli-1.3.6.tar.gz 515712 BLAKE2B 6de6a3af2e474a3f8d12865e3cdd420f31955e88a0eb1c8ffd019809666c4c613631d642b34bb5fa473fceb7207613d90584fdf856b6a49899f9c2aa31b2b471 SHA512 280b02116786c86fd5f1e472fa9070b3a6d846acd670e36d476b150d4a3e91e5a6d1546b7053b1f35a2e0de553c8517640934af010d371d3cbed248592be502d
24
25 diff --git a/media-sound/upmpdcli/upmpdcli-1.3.6.ebuild b/media-sound/upmpdcli/upmpdcli-1.3.6.ebuild
26 new file mode 100644
27 index 00000000000..72972052488
28 --- /dev/null
29 +++ b/media-sound/upmpdcli/upmpdcli-1.3.6.ebuild
30 @@ -0,0 +1,47 @@
31 +# Copyright 1999-2018 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +
36 +inherit systemd user
37 +
38 +DESCRIPTION="UPnP Media Renderer front-end for MPD, the Music Player Daemon"
39 +HOMEPAGE="https://www.lesbonscomptes.com/upmpdcli/index.html"
40 +LICENSE="GPL-2"
41 +
42 +SRC_URI="https://www.lesbonscomptes.com/upmpdcli/downloads/${P}.tar.gz"
43 +SLOT="0"
44 +KEYWORDS="~amd64"
45 +IUSE="thirdparty"
46 +
47 +DEPEND="
48 + dev-libs/jsoncpp
49 + media-libs/libmpdclient
50 + net-libs/libmicrohttpd
51 + net-libs/libupnpp
52 +"
53 +RDEPEND="
54 + ${DEPEND}
55 + thirdparty? ( dev-python/requests )
56 + media-sound/mpd[curl]
57 +"
58 +
59 +pkg_setup() {
60 + enewuser "${PN}"
61 + enewgroup "${PN}"
62 +}
63 +
64 +src_install() {
65 + default
66 + newinitd "${FILESDIR}/${PN}.initd" "${PN}"
67 + newconfd "${FILESDIR}/${PN}.confd" "${PN}"
68 + systemd_dounit systemd/upmpdcli.service
69 +}
70 +
71 +pkg_postinst() {
72 + einfo
73 + einfo "Consider installing media-sound/sc2mpd. If upmpdcli"
74 + einfo "detects sc2mpd at run-time, capabilities are added"
75 + einfo "including internet radio support. See upstream docs"
76 + einfo "for more information."
77 +}