media-sound/qmpdclient: Remove last-rited package
authorAndreas Sturmlechner <asturm@gentoo.org>
Tue, 3 Apr 2018 16:33:10 +0000 (18:33 +0200)
committerAndreas Sturmlechner <asturm@gentoo.org>
Tue, 3 Apr 2018 16:33:10 +0000 (18:33 +0200)
Closes: https://bugs.gentoo.org/644412

media-sound/qmpdclient/Manifest [deleted file]
media-sound/qmpdclient/files/qmpdclient-1.2.2-qt48.patch [deleted file]
media-sound/qmpdclient/metadata.xml [deleted file]
media-sound/qmpdclient/qmpdclient-1.2.2-r3.ebuild [deleted file]
profiles/package.mask

diff --git a/media-sound/qmpdclient/Manifest b/media-sound/qmpdclient/Manifest
deleted file mode 100644 (file)
index 8418abc..0000000
+++ /dev/null
@@ -1 +0,0 @@
-DIST qmpdclient-1.2.2.tar.bz2 271565 BLAKE2B b916b008016de9e534b174aa3317c5f68449aba0f2d80e4ab7b2680ec114df4b7ebbd47259eca88f3423b8f57c7e214ef85fa1b7b5b30a39b9a9bea00d469ca8 SHA512 2ae8a2235640c0c644f32290a9d39bcef6f041bb7eca1d269b54433975578c31067f2e5a28d9d679c229075962523b6b20e779b1ed23af7c47129ff4b63e5735
diff --git a/media-sound/qmpdclient/files/qmpdclient-1.2.2-qt48.patch b/media-sound/qmpdclient/files/qmpdclient-1.2.2-qt48.patch
deleted file mode 100644 (file)
index 2eac669..0000000
+++ /dev/null
@@ -1,40 +0,0 @@
-From 20edef54b109882632f58549d181123b9985d65b Mon Sep 17 00:00:00 2001
-From: Kent Fredric <kentfredric@gmail.com>
-Date: Fri, 1 Jun 2012 21:54:10 +1200
-Subject: [PATCH] First attempt at fixing lastfm scrobbling
-
----
- src/lastfmsubmitter.cpp |   10 ++++++++--
- 1 file changed, 8 insertions(+), 2 deletions(-)
-
-diff --git a/src/lastfmsubmitter.cpp b/src/lastfmsubmitter.cpp
-index cff94bc..a9b6ea9 100644
---- a/src/lastfmsubmitter.cpp
-+++ b/src/lastfmsubmitter.cpp
-@@ -112,7 +112,10 @@ void LastFmSubmitter::scrobbleNp(MPDSong & s) {
-       data += QString("l=%1&").arg(s.secs() >0 ? QString::number(s.secs()) : "100");
-       data += QString("n=%1").arg(QString(QUrl::toPercentEncoding(s.track())));
-       //qDebug() << data;
--      m_netAccess->post(QNetworkRequest(QUrl(m_npUrl)), data.toAscii());
-+      QUrl url(m_npUrl);
-+      QNetworkRequest request(url);
-+      request.setRawHeader("Content-Type", "application/x-www-form-urlencoded");
-+      m_netAccess->post(request, data.toAscii());
- }
- void LastFmSubmitter::scrobbleCurrent() {
-@@ -152,7 +155,10 @@ void LastFmSubmitter::scrobbleQueued() {
-       if (i>0) {
-               //qDebug() << "sending scrobble to " << m_subUrl.toAscii();
-               //qDebug() << "data: " << data.toAscii();
--              m_netAccess->post(QNetworkRequest(QUrl(m_subUrl)), data.toAscii());
-+              QUrl url(m_subUrl);
-+              QNetworkRequest request(url);
-+              request.setRawHeader("Content-Type", "application/x-www-form-urlencoded");
-+              m_netAccess->post(request, data.toAscii());
-               m_awaitingScrob = true;
-       }
- }
--- 
-1.7.9.4
-
diff --git a/media-sound/qmpdclient/metadata.xml b/media-sound/qmpdclient/metadata.xml
deleted file mode 100644 (file)
index 28569ac..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-       <maintainer type="project">
-               <email>sound@gentoo.org</email>
-               <name>Gentoo Sound project</name>
-       </maintainer>
-       <longdescription lang="en">
-               QMPDClient is an easy to use Qt4 client for MPD
-       </longdescription>
-</pkgmetadata>
diff --git a/media-sound/qmpdclient/qmpdclient-1.2.2-r3.ebuild b/media-sound/qmpdclient/qmpdclient-1.2.2-r3.ebuild
deleted file mode 100644 (file)
index 014cca2..0000000
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit fdo-mime cmake-utils
-
-DESCRIPTION="QMPDClient with NBL additions, such as lyrics' display"
-HOMEPAGE="http://bitcheese.net/wiki/QMPDClient"
-SRC_URI="http://dump.bitcheese.net/files/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE="debug"
-
-DEPEND="
-       dev-qt/qtdbus:4
-       dev-qt/qtgui:4
-       dev-qt/qtxmlpatterns:4
-       x11-libs/libX11
-"
-RDEPEND="${DEPEND}"
-
-S=${WORKDIR}/${PN}
-
-DOCS=( AUTHORS README THANKSTO )
-
-PATCHES=( "${FILESDIR}"/${P}-qt48.patch )
-
-src_prepare() {
-       sed -i -e "/^Categories/s/Network/AudioVideo/" ${PN}.desktop || die
-       cmake-utils_src_prepare
-}
-
-src_configure() {
-       local mycmakeargs=( "-DVERSION=${PV}" )
-       cmake-utils_src_configure
-}
-
-pkg_postinst() { fdo-mime_desktop_database_update; }
-pkg_postrm() { fdo-mime_desktop_database_update; }
index b697a5e66592aac79ddd81b846e79dbc1fabc89e..8770e6cb1362067be20b6cfeb34a2243bbea4a97 100644 (file)
@@ -566,12 +566,6 @@ media-gfx/photivo
 # Masked for removal in 30 days. Bug 644404
 net-fs/smbtatools
 
-# Andreas Sturmlechner <asturm@gentoo.org> (04 Mar 2018)
-# Dead upstream, depends on deprecated Qt4. media-sound/cantata
-# is an actively developed alternative based on Qt5.
-# Masked for removal in 30 days. Bug 644412
-media-sound/qmpdclient
-
 # Andreas K. Hüttel <dilfridge@gentoo.org> (03 Mar 2018)
 # Fails to build without rpc support in glibc (bug 631044);
 # no maintainer, requires obsolete hardware. Removal in