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: Sun, 25 Sep 2022 15:51:50
Message-Id: 1664119136.9db4f3d37f293ba12cd32a8200cfd5861cb96101.stasibear@gentoo
1 commit: 9db4f3d37f293ba12cd32a8200cfd5861cb96101
2 Author: Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
3 AuthorDate: Sun Sep 25 15:18:51 2022 +0000
4 Commit: Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
5 CommitDate: Sun Sep 25 15:18:56 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9db4f3d3
7
8 media-sound/upmpdcli: drop 1.5.17
9
10 Signed-off-by: Erik Mackdanz <stasibear <AT> gentoo.org>
11
12 media-sound/upmpdcli/Manifest | 1 -
13 media-sound/upmpdcli/upmpdcli-1.5.17.ebuild | 59 -----------------------------
14 2 files changed, 60 deletions(-)
15
16 diff --git a/media-sound/upmpdcli/Manifest b/media-sound/upmpdcli/Manifest
17 index ecf738f256e1..caa0cb0c12e0 100644
18 --- a/media-sound/upmpdcli/Manifest
19 +++ b/media-sound/upmpdcli/Manifest
20 @@ -1,2 +1 @@
21 -DIST upmpdcli-1.5.17.tar.gz 585821 BLAKE2B dfd47d710751540743f5df38975e2775ac99355781c7d7bf8b50543148bc22aa85f4f851a5628291f11474342caec99ecfa664cd701fbe13c46be1d56cc6b042 SHA512 caaba9d6ee8564e9464f19c9462e2fe4ed917270a9a66a9608895ddc8e060cefa339749ffc284d83a05be78571241e1c0ee74c4b0058bda8c5b1d8ebbaf248a1
22 DIST upmpdcli-1.5.19.tar.gz 586888 BLAKE2B 1784d41dd09b8bee93e9bd8c650480f48cee8324a0cae85068bb628cb748b223f20a37608369b085c154327569203421d476ad5e6bc1a044fa5d5ad920e2a768 SHA512 517fae799e0d400268f968ea7983b1cb7e22759ad7a0b9fe194a5bbfbb2db16ea26a233cb1784fae6d7e3b8f28ff3443a8f8ab3e447719d05e48be36b49ded08
23
24 diff --git a/media-sound/upmpdcli/upmpdcli-1.5.17.ebuild b/media-sound/upmpdcli/upmpdcli-1.5.17.ebuild
25 deleted file mode 100644
26 index c7e369caaab6..000000000000
27 --- a/media-sound/upmpdcli/upmpdcli-1.5.17.ebuild
28 +++ /dev/null
29 @@ -1,59 +0,0 @@
30 -# Copyright 1999-2022 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=8
34 -
35 -inherit systemd
36 -
37 -DESCRIPTION="UPnP Media Renderer front-end for MPD, the Music Player Daemon"
38 -HOMEPAGE="https://www.lesbonscomptes.com/upmpdcli/index.html"
39 -LICENSE="GPL-2"
40 -
41 -SRC_URI="https://www.lesbonscomptes.com/upmpdcli/downloads/${P}.tar.gz"
42 -SLOT="0"
43 -KEYWORDS="amd64 x86"
44 -IUSE="thirdparty"
45 -
46 -DEPEND="
47 - dev-libs/jsoncpp
48 - media-libs/libmpdclient
49 - net-libs/libmicrohttpd
50 - net-libs/libupnpp
51 -"
52 -RDEPEND="
53 - ${DEPEND}
54 - acct-group/upmpdcli
55 - acct-user/upmpdcli
56 - app-misc/recoll
57 - thirdparty? ( dev-python/requests )
58 -"
59 -
60 -src_configure() {
61 -
62 - ./configure \
63 - --prefix=/usr \
64 - --sysconfdir=/etc \
65 - --localstatedir=/var/lib \
66 - --disable-dependency-tracking \
67 - --disable-silent-rules \
68 - "--docdir=/usr/share/doc/${P}" \
69 - "--htmldir=/usr/share/doc/${P}/html" \
70 - --libdir=/usr/lib64 \
71 - || die "Configure failed"
72 -
73 -}
74 -
75 -src_install() {
76 - default
77 - newinitd "${FILESDIR}/${PN}.initd" "${PN}"
78 - newconfd "${FILESDIR}/${PN}.confd" "${PN}"
79 - systemd_dounit systemd/upmpdcli.service
80 -}
81 -
82 -pkg_postinst() {
83 - einfo
84 - einfo "This package no longer assumes that upmpdcli is driving an"
85 - einfo "mpd instance on the same host (https://bugs.gentoo.org/670130)."
86 - einfo "Probably it is though, so be sure your mpd is built with"
87 - einfo "USE=curl."
88 -}