summaryrefslogtreecommitdiff
path: root/media-sound/qmpdclient
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-04-05 21:52:00 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-04-05 21:52:00 +0100
commit2d446203bcf1a0db08e99abca43513d246dfa73d (patch)
treeec623bb5f1f389976977e375342ec59ff441eab7 /media-sound/qmpdclient
parent171a011ad3a131671aeb5a98b9e3adf219ad2865 (diff)
gentoo resync : 05.04.2018
Diffstat (limited to 'media-sound/qmpdclient')
-rw-r--r--media-sound/qmpdclient/Manifest4
-rw-r--r--media-sound/qmpdclient/files/qmpdclient-1.2.2-qt48.patch40
-rw-r--r--media-sound/qmpdclient/metadata.xml11
-rw-r--r--media-sound/qmpdclient/qmpdclient-1.2.2-r3.ebuild42
4 files changed, 0 insertions, 97 deletions
diff --git a/media-sound/qmpdclient/Manifest b/media-sound/qmpdclient/Manifest
deleted file mode 100644
index bf003f5af131..000000000000
--- a/media-sound/qmpdclient/Manifest
+++ /dev/null
@@ -1,4 +0,0 @@
-AUX qmpdclient-1.2.2-qt48.patch 1484 BLAKE2B 2d7abf6696b35fee27cc196b43f176960c3a031fa19843e3dc5c2b51868de00f6aa7b16ff4f5a0c52bd998ee667aebc3b33d33ad6f06f93a5e8556045c87a255 SHA512 5674b1de888f9ed03eb83be471b2f03ccf7a5e463c9c0056d1b276f7ed7bec73a3d4340131cb10a03f8f5cbbfe0b40694c213b6a3d8e90bb6da96c829ea03394
-DIST qmpdclient-1.2.2.tar.bz2 271565 BLAKE2B b916b008016de9e534b174aa3317c5f68449aba0f2d80e4ab7b2680ec114df4b7ebbd47259eca88f3423b8f57c7e214ef85fa1b7b5b30a39b9a9bea00d469ca8 SHA512 2ae8a2235640c0c644f32290a9d39bcef6f041bb7eca1d269b54433975578c31067f2e5a28d9d679c229075962523b6b20e779b1ed23af7c47129ff4b63e5735
-EBUILD qmpdclient-1.2.2-r3.ebuild 892 BLAKE2B 383e1c3562bc32972704d6833f1c96f2d35b6b5081fc26223014f76c60b99bb97dcae590919bd2b39d4542b840f45efc733666f85c2c651cfbb6203b44681f18 SHA512 7a2d64bae3e1566685581fbda231d8e52c650f7eb8a122f7075becfaf8f7b58910cf89f688ea2568ce8540a65d9fcb1ad03a3d06ae1e84a6c96fe1c5216bc60e
-MISC metadata.xml 352 BLAKE2B bd979fb35ae33de48a5bead2b2dec713add54c9955e921bd7889f5f838031cdacb8846ce7baecd30d8704ac77ff1563a24b4962c95adf7dcef143f1a1757b63e SHA512 0344118bc0ba6bb6997dc9476d5f8ab3dd8e53d09767c0e4bf050dcc394d11810e6b437fb114c6f3e83a7cabcd7ef16852d34012390126328773159b51a2a5a2
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
index 2eac669c092c..000000000000
--- a/media-sound/qmpdclient/files/qmpdclient-1.2.2-qt48.patch
+++ /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
index 28569ac4e913..000000000000
--- a/media-sound/qmpdclient/metadata.xml
+++ /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
index 014cca271ad6..000000000000
--- a/media-sound/qmpdclient/qmpdclient-1.2.2-r3.ebuild
+++ /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; }