diff options
author | Erik Mackdanz <stasibear@gentoo.org> | 2020-11-12 00:32:09 -0600 |
---|---|---|
committer | Erik Mackdanz <stasibear@gentoo.org> | 2020-11-12 00:32:09 -0600 |
commit | 21ee015511c0273bb4c76559137cebc423730249 (patch) | |
tree | ab1a7fdf520bbd9ea0dfafd7b65c11141788be9d /media-sound/upmpdcli | |
parent | acct-user/upmpdcli: New package for GLEP 81 (diff) | |
download | gentoo-21ee015511c0273bb4c76559137cebc423730249.tar.gz gentoo-21ee015511c0273bb4c76559137cebc423730249.tar.bz2 gentoo-21ee015511c0273bb4c76559137cebc423730249.zip |
media-sound/upmpdcli: Bump to 1.4.14
Signed-off-by: Erik Mackdanz <stasibear@gentoo.org>
Closes: https://bugs.gentoo.org/697522
Package-Manager: Portage-3.0.9, Repoman-3.0.2
Diffstat (limited to 'media-sound/upmpdcli')
-rw-r--r-- | media-sound/upmpdcli/Manifest | 1 | ||||
-rw-r--r-- | media-sound/upmpdcli/upmpdcli-1.4.14.ebuild | 48 |
2 files changed, 49 insertions, 0 deletions
diff --git a/media-sound/upmpdcli/Manifest b/media-sound/upmpdcli/Manifest index 4f82bbfb7dab..cba335fa43b8 100644 --- a/media-sound/upmpdcli/Manifest +++ b/media-sound/upmpdcli/Manifest @@ -1,2 +1,3 @@ DIST upmpdcli-1.4.0.tar.gz 469357 BLAKE2B edd46e86f367ff2f88346cfb4cb249dae4463095553bb220fbd9a4078315044ec7591f58c30a0f20840a9f217230e46bc3b3569989a0ae2c05a44aa140c234c4 SHA512 1ed1f0a89a02610d70fb9e380dcbdbd8d636bc4a0964a16d27bd7c04126674f7f14e50e5fe521a430a06ea04ecef1275c7ad5f1c276daae1c285b73cceba9dec +DIST upmpdcli-1.4.14.tar.gz 552026 BLAKE2B 0e9722d9a3c278b085416df240d3256ae1eff136f3897b181a59ce9d3edcdfd70ed7e568d8d345b1d0b13a9906f877776d9816ba3e8797c41c1684933aa326e6 SHA512 9084f60a4551fb94be915e6539d59a9ac070d55745c383b1f201c0c83262634c9e6fb353f66bb2232c493752805671b19057cbcec00c5ed128e19e1d0a037976 DIST upmpdcli-1.4.2.tar.gz 477650 BLAKE2B 8bc2f86e8821aaee29f969e6031553f29e3224fdaf4b9c7d443f55bda5f321f36607dbb7dc0af15f0d1e7b006e93595cd1d668f9d1975e8673a80b218ea7f570 SHA512 be855214b55686422689ce786103ff50748a9f9e7e556c8dbeaa7e39e0229a3e0b56502bdbeb7071771706416cd2ff36592cb5245b505d8438f0ba75c200e9c2 diff --git a/media-sound/upmpdcli/upmpdcli-1.4.14.ebuild b/media-sound/upmpdcli/upmpdcli-1.4.14.ebuild new file mode 100644 index 000000000000..405d3053766d --- /dev/null +++ b/media-sound/upmpdcli/upmpdcli-1.4.14.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit systemd + +DESCRIPTION="UPnP Media Renderer front-end for MPD, the Music Player Daemon" +HOMEPAGE="https://www.lesbonscomptes.com/upmpdcli/index.html" +LICENSE="GPL-2" + +SRC_URI="https://www.lesbonscomptes.com/upmpdcli/downloads/${P}.tar.gz" +SLOT="0" +KEYWORDS="~amd64" +IUSE="thirdparty" + +DEPEND=" + dev-libs/jsoncpp + media-libs/libmpdclient + net-libs/libmicrohttpd + >=net-libs/libupnpp-0.19.0 +" +RDEPEND=" + ${DEPEND} + acct-group/upmpdcli + acct-user/upmpdcli + thirdparty? ( dev-python/requests ) +" + +src_install() { + default + newinitd "${FILESDIR}/${PN}.initd" "${PN}" + newconfd "${FILESDIR}/${PN}.confd" "${PN}" + systemd_dounit systemd/upmpdcli.service +} + +pkg_postinst() { + einfo + einfo "This package no longer assumes that upmpdcli is driving an" + einfo "mpd instance on the same host (https://bugs.gentoo.org/670130)." + einfo "Probably it is though, so be sure your mpd is built with" + einfo "USE=curl." + einfo + einfo "Consider installing media-sound/sc2mpd. If upmpdcli" + einfo "detects sc2mpd at run-time, capabilities are added" + einfo "including internet radio support. See upstream docs" + einfo "for more information." +} |