public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: media-sound/upmpdcli/files/, media-sound/upmpdcli/
@ 2018-02-04 16:52 Erik Mackdanz
  0 siblings, 0 replies; 3+ messages in thread
From: Erik Mackdanz @ 2018-02-04 16:52 UTC (permalink / raw
  To: gentoo-commits

commit:     6bc46b77ac7f5405cdec894793963e0cc94cbf42
Author:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 31 05:06:56 2018 +0000
Commit:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
CommitDate: Sun Feb  4 16:51:03 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6bc46b77

media-sound/upmpdcli: New package 1.2.15

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 media-sound/upmpdcli/Manifest               |  1 +
 media-sound/upmpdcli/files/upmpdcli.confd   |  1 +
 media-sound/upmpdcli/files/upmpdcli.initd   | 14 +++++++++
 media-sound/upmpdcli/metadata.xml           | 16 +++++++++++
 media-sound/upmpdcli/upmpdcli-1.2.15.ebuild | 44 +++++++++++++++++++++++++++++
 5 files changed, 76 insertions(+)

diff --git a/media-sound/upmpdcli/Manifest b/media-sound/upmpdcli/Manifest
new file mode 100644
index 00000000000..a5246d45e10
--- /dev/null
+++ b/media-sound/upmpdcli/Manifest
@@ -0,0 +1 @@
+DIST upmpdcli-1.2.15.tar.gz 401551 BLAKE2B 0ec3fd67d67fd039f5b0ac385ad12a78e3c48b0d2530690eb9aaff66bbdbf7ae7229d64cfe753d9e70e75070ee5bc4d0849d11909813f06377981974733134ee SHA512 4a62aced9fa2395752164332c84bf3dedd7b793e7e37638cfe063e887d52b9ce956c866de2aa1cddb7a4dcad97562050f9588aedd59e49e7d427671179f9258a

diff --git a/media-sound/upmpdcli/files/upmpdcli.confd b/media-sound/upmpdcli/files/upmpdcli.confd
new file mode 100644
index 00000000000..dce55d70aec
--- /dev/null
+++ b/media-sound/upmpdcli/files/upmpdcli.confd
@@ -0,0 +1 @@
+config=/etc/upmpdcli.conf

diff --git a/media-sound/upmpdcli/files/upmpdcli.initd b/media-sound/upmpdcli/files/upmpdcli.initd
new file mode 100644
index 00000000000..43618aeca4e
--- /dev/null
+++ b/media-sound/upmpdcli/files/upmpdcli.initd
@@ -0,0 +1,14 @@
+#!/sbin/openrc-run
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+description="UPnP Media Renderer front-end for MPD, the Music Player Daemon"
+pidfile=/var/run/upmpdcli.pid
+command=/usr/bin/upmpdcli
+config="${config:-/etc/upmpdcli.conf}"
+command_args="-c ${config}"
+command_args_background="-D"
+
+depend() {
+    need localmount mpd
+}

diff --git a/media-sound/upmpdcli/metadata.xml b/media-sound/upmpdcli/metadata.xml
new file mode 100644
index 00000000000..b13ccae7c8b
--- /dev/null
+++ b/media-sound/upmpdcli/metadata.xml
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<maintainer type="person">
+	<email>stasibear@gentoo.org</email>
+	<description>Primary maintainer</description>
+</maintainer>
+<longdescription>
+	UPnP Media Renderer front-end for MPD, the Music Player Daemon
+</longdescription>
+<use>
+	<flag name="thirdparty">
+		Enable streaming from Qobuz and Tidal external services
+	</flag>
+</use>
+</pkgmetadata>

diff --git a/media-sound/upmpdcli/upmpdcli-1.2.15.ebuild b/media-sound/upmpdcli/upmpdcli-1.2.15.ebuild
new file mode 100644
index 00000000000..3acbdb45b48
--- /dev/null
+++ b/media-sound/upmpdcli/upmpdcli-1.2.15.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+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
+"
+RDEPEND="
+	${DEPEND}
+	thirdparty? ( dev-python/requests )
+	media-sound/mpd
+"
+
+pkg_setup() {
+	enewuser "${PN}"
+	enewgroup "${PN}"
+}
+
+src_install() {
+	default
+	newinitd "${FILESDIR}/${PN}.initd" "${PN}"
+	newconfd "${FILESDIR}/${PN}.confd" "${PN}"
+}
+
+pkg_postinst() {
+	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."
+}


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-sound/upmpdcli/files/, media-sound/upmpdcli/
@ 2019-02-09 15:19 Erik Mackdanz
  0 siblings, 0 replies; 3+ messages in thread
From: Erik Mackdanz @ 2019-02-09 15:19 UTC (permalink / raw
  To: gentoo-commits

commit:     e7d18819544e81f8656da022f938ec30054e39eb
Author:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
AuthorDate: Sat Feb  9 15:18:38 2019 +0000
Commit:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
CommitDate: Sat Feb  9 15:18:38 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7d18819

media-sound/upmpdcli: Pin dep version, version initd

Signed-off-by: Erik Mackdanz <stasibear <AT> gentoo.org>
Package-Manager: Portage-2.3.59, Repoman-2.3.12

 media-sound/upmpdcli/files/{upmpdcli.initd => upmpdcli-1.3.6.initd} | 2 +-
 media-sound/upmpdcli/upmpdcli-1.3.6.ebuild                          | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/media-sound/upmpdcli/files/upmpdcli.initd b/media-sound/upmpdcli/files/upmpdcli-1.3.6.initd
similarity index 89%
rename from media-sound/upmpdcli/files/upmpdcli.initd
rename to media-sound/upmpdcli/files/upmpdcli-1.3.6.initd
index 43618aeca4e..f37623e8f2c 100644
--- a/media-sound/upmpdcli/files/upmpdcli.initd
+++ b/media-sound/upmpdcli/files/upmpdcli-1.3.6.initd
@@ -1,5 +1,5 @@
 #!/sbin/openrc-run
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 description="UPnP Media Renderer front-end for MPD, the Music Player Daemon"

diff --git a/media-sound/upmpdcli/upmpdcli-1.3.6.ebuild b/media-sound/upmpdcli/upmpdcli-1.3.6.ebuild
index 7f8673a6c0b..dc2832f79f0 100644
--- a/media-sound/upmpdcli/upmpdcli-1.3.6.ebuild
+++ b/media-sound/upmpdcli/upmpdcli-1.3.6.ebuild
@@ -18,7 +18,7 @@ DEPEND="
 	dev-libs/jsoncpp
 	media-libs/libmpdclient
 	net-libs/libmicrohttpd
-	net-libs/libupnpp
+	<net-libs/libupnpp-0.17.0
 "
 RDEPEND="
 	${DEPEND}
@@ -33,7 +33,7 @@ pkg_setup() {
 
 src_install() {
 	default
-	newinitd "${FILESDIR}/${PN}.initd" "${PN}"
+	newinitd "${FILESDIR}/${P}.initd" "${PN}"
 	newconfd "${FILESDIR}/${PN}.confd" "${PN}"
 	systemd_dounit systemd/upmpdcli.service
 }


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-sound/upmpdcli/files/, media-sound/upmpdcli/
@ 2019-04-22  3:43 Erik Mackdanz
  0 siblings, 0 replies; 3+ messages in thread
From: Erik Mackdanz @ 2019-04-22  3:43 UTC (permalink / raw
  To: gentoo-commits

commit:     fbc6857399786de758b6ccb066bb6f03a5364d7c
Author:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 22 03:42:55 2019 +0000
Commit:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
CommitDate: Mon Apr 22 03:42:55 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fbc68573

media-sound/upmpdcli: remove old

Signed-off-by: Erik Mackdanz <stasibear <AT> gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.12

 media-sound/upmpdcli/Manifest                   |  1 -
 media-sound/upmpdcli/files/upmpdcli-1.3.6.initd | 14 --------
 media-sound/upmpdcli/upmpdcli-1.3.6.ebuild      | 47 -------------------------
 3 files changed, 62 deletions(-)

diff --git a/media-sound/upmpdcli/Manifest b/media-sound/upmpdcli/Manifest
index 7f9f693cfa6..4f82bbfb7da 100644
--- a/media-sound/upmpdcli/Manifest
+++ b/media-sound/upmpdcli/Manifest
@@ -1,3 +1,2 @@
-DIST upmpdcli-1.3.6.tar.gz 515712 BLAKE2B 6de6a3af2e474a3f8d12865e3cdd420f31955e88a0eb1c8ffd019809666c4c613631d642b34bb5fa473fceb7207613d90584fdf856b6a49899f9c2aa31b2b471 SHA512 280b02116786c86fd5f1e472fa9070b3a6d846acd670e36d476b150d4a3e91e5a6d1546b7053b1f35a2e0de553c8517640934af010d371d3cbed248592be502d
 DIST upmpdcli-1.4.0.tar.gz 469357 BLAKE2B edd46e86f367ff2f88346cfb4cb249dae4463095553bb220fbd9a4078315044ec7591f58c30a0f20840a9f217230e46bc3b3569989a0ae2c05a44aa140c234c4 SHA512 1ed1f0a89a02610d70fb9e380dcbdbd8d636bc4a0964a16d27bd7c04126674f7f14e50e5fe521a430a06ea04ecef1275c7ad5f1c276daae1c285b73cceba9dec
 DIST upmpdcli-1.4.2.tar.gz 477650 BLAKE2B 8bc2f86e8821aaee29f969e6031553f29e3224fdaf4b9c7d443f55bda5f321f36607dbb7dc0af15f0d1e7b006e93595cd1d668f9d1975e8673a80b218ea7f570 SHA512 be855214b55686422689ce786103ff50748a9f9e7e556c8dbeaa7e39e0229a3e0b56502bdbeb7071771706416cd2ff36592cb5245b505d8438f0ba75c200e9c2

diff --git a/media-sound/upmpdcli/files/upmpdcli-1.3.6.initd b/media-sound/upmpdcli/files/upmpdcli-1.3.6.initd
deleted file mode 100644
index f37623e8f2c..00000000000
--- a/media-sound/upmpdcli/files/upmpdcli-1.3.6.initd
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-description="UPnP Media Renderer front-end for MPD, the Music Player Daemon"
-pidfile=/var/run/upmpdcli.pid
-command=/usr/bin/upmpdcli
-config="${config:-/etc/upmpdcli.conf}"
-command_args="-c ${config}"
-command_args_background="-D"
-
-depend() {
-    need localmount mpd
-}

diff --git a/media-sound/upmpdcli/upmpdcli-1.3.6.ebuild b/media-sound/upmpdcli/upmpdcli-1.3.6.ebuild
deleted file mode 100644
index dc2832f79f0..00000000000
--- a/media-sound/upmpdcli/upmpdcli-1.3.6.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit systemd user
-
-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.17.0
-"
-RDEPEND="
-	${DEPEND}
-	thirdparty? ( dev-python/requests )
-	media-sound/mpd[curl]
-"
-
-pkg_setup() {
-	enewuser "${PN}"
-	enewgroup "${PN}"
-}
-
-src_install() {
-	default
-	newinitd "${FILESDIR}/${P}.initd" "${PN}"
-	newconfd "${FILESDIR}/${PN}.confd" "${PN}"
-	systemd_dounit systemd/upmpdcli.service
-}
-
-pkg_postinst() {
-	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."
-}


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2019-04-22  3:43 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-04-22  3:43 [gentoo-commits] repo/gentoo:master commit in: media-sound/upmpdcli/files/, media-sound/upmpdcli/ Erik Mackdanz
  -- strict thread matches above, loose matches on Subject: below --
2019-02-09 15:19 Erik Mackdanz
2018-02-04 16:52 Erik Mackdanz

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox