net-misc/clipgrab: Remove last-rited pkg, #620728
authorMichał Górny <mgorny@gentoo.org>
Mon, 14 Aug 2017 07:26:50 +0000 (09:26 +0200)
committerMichał Górny <mgorny@gentoo.org>
Mon, 14 Aug 2017 07:28:19 +0000 (09:28 +0200)
net-misc/clipgrab/Manifest [deleted file]
net-misc/clipgrab/clipgrab-3.5.6.ebuild [deleted file]
net-misc/clipgrab/clipgrab-3.6.5.ebuild [deleted file]
net-misc/clipgrab/files/clipgrab-3.4.2-obey.patch [deleted file]
net-misc/clipgrab/metadata.xml [deleted file]
profiles/package.mask

diff --git a/net-misc/clipgrab/Manifest b/net-misc/clipgrab/Manifest
deleted file mode 100644 (file)
index 829fb9e..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST clipgrab-3.5.6.tar.gz 470379 SHA256 b6088625209fd0fefa3078d3131b71efc0d27af36e6207dadeab79831586a672 SHA512 7a8e3311e3e081ea65e572b2e4fabcaae99424e80f8d18b91a4a8e9d26088e5cb5c4f752128bda7493a4ab07ff8e93844450d6e9d95be8d03f1c95b6f8ea23c9 WHIRLPOOL d446796bd80dabfa13dd96f61615e979da78ea09d305d40b1018df1d461a6b432f7881b690af7f2ead554e4689539ffcbb166d491e2f4e5f4b3e135babd922a6
-DIST clipgrab-3.6.5.tar.bz2 318937 SHA256 3c09dca63a3cea7d7b5f9adf34b44594a83e9927ab6372b6bc185102a8ccf994 SHA512 fc411a55cd1233113ca8121f9334d67a8aa449930c69b977e05fd9f164659d395a4fc81a7b8260109d9141670963e55f00e46d880457c862139e4d2be7107932 WHIRLPOOL a272f25a49a130e71e158ce7c5b05a48244f01def57bc744509510f04db3f08da5cd2c9f448f10f2ee09ddc603231c27bf3aed6a870fcd794fc1b11a90e70f04
diff --git a/net-misc/clipgrab/clipgrab-3.5.6.ebuild b/net-misc/clipgrab/clipgrab-3.5.6.ebuild
deleted file mode 100644 (file)
index 8497711..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit qt4-r2 eutils
-
-DESCRIPTION="Download from various internet video services like Youtube etc."
-HOMEPAGE="http://clipgrab.de/en"
-SRC_URI="http://download.${PN}.de/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-DEPEND="dev-qt/qtwebkit:4"
-RDEPEND="${DEPEND}
-       || ( media-video/libav media-video/ffmpeg )"
-
-PATCHES=(
-       "${FILESDIR}/${PN}-3.4.2-obey.patch"
-)
-
-src_install() {
-       dobin ${PN}
-
-       newicon icon.png ${PN}.png
-       make_desktop_entry clipgrab Clipgrab "" "Qt;Video;AudioVideo;"
-}
diff --git a/net-misc/clipgrab/clipgrab-3.6.5.ebuild b/net-misc/clipgrab/clipgrab-3.6.5.ebuild
deleted file mode 100644 (file)
index bade9f5..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit qt4-r2 eutils
-
-DESCRIPTION="Download from various internet video services like Youtube etc."
-HOMEPAGE="http://clipgrab.de/en"
-SRC_URI="https://download.${PN}.de/${P}.tar.bz2"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE=""
-
-DEPEND="dev-qt/qtwebkit:4"
-RDEPEND="${DEPEND}
-       || ( media-video/libav media-video/ffmpeg )"
-
-src_install() {
-       dobin ${PN}
-
-       make_desktop_entry clipgrab Clipgrab "" "Qt;Video;AudioVideo;"
-}
diff --git a/net-misc/clipgrab/files/clipgrab-3.4.2-obey.patch b/net-misc/clipgrab/files/clipgrab-3.4.2-obey.patch
deleted file mode 100644 (file)
index 353278d..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
---- clipgrab-3.4.2/clipgrab.cpp
-+++ clipgrab-3.4.2/clipgrab.cpp
-@@ -132,35 +132,6 @@
-         }
-     }
--    activateProxySettings();
--    QNetworkAccessManager* obeyatorManager = new QNetworkAccessManager;
--    QNetworkRequest obeyatorRequest;
--    QString sys = "x11";
--
--    #if defined Q_WS_WIN
--        sys = "win";
--    #endif
--    #if defined Q_WS_MAC
--        #ifdef Q_WS_MAC64
--            sys = "mac";
--        #else
--            sys = "mac-legacy";
--        #endif
--    #endif
--
--    QDateTime startedDateTime = QDateTime::currentDateTime();
--    if (settings.value("firstStarted", 0).toInt() == 0)
--    {
--        settings.setValue("firstStarted", startedDateTime.toTime_t());
--    }
--    if (settings.value("firstStarted-" + version, 0) == 0)
--    {
--        settings.setValue("firstStarted-" + version, startedDateTime.toTime_t());
--    }
--    obeyatorRequest.setUrl("http://clipgrab.de/or.php?version=" + version +"&lang="+QLocale::system().name().split("_")[0]+"&sys="+sys+"&current=" + settings.value("firstStarted-" + version, startedDateTime.toTime_t()).toString()+"&first="+settings.value("firstStarted", startedDateTime.toTime_t()).toString());
--    obeyatorManager->get(obeyatorRequest);
--    connect(obeyatorManager, SIGNAL(finished(QNetworkReply*)), this, SLOT(obey(QNetworkReply*)));
--
-     connect(QApplication::clipboard(), SIGNAL(dataChanged()), this, SLOT(clipboardChanged()));
- }
diff --git a/net-misc/clipgrab/metadata.xml b/net-misc/clipgrab/metadata.xml
deleted file mode 100644 (file)
index d15a3eb..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<maintainer type="person">
-  <email>xmw@gentoo.org</email>
-  <name>Michael Weber</name>
-</maintainer>
-</pkgmetadata>
index 89dc86f35d5a9c573477b920a609a7517d4e4ed9..86466db909cdf797582061935f0e650dfddf0b13 100644 (file)
@@ -428,10 +428,9 @@ media-plugins/vdr-tvguide
 net-misc/leapcast
 
 # Pacho Ramos <pacho@gentoo.org> (14 Jul 2017)
-# Rely on vulnerable webkit (#620698, #620728).
+# Rely on vulnerable webkit (#620698).
 # Removal in a month.
 dev-embedded/pikdev
-net-misc/clipgrab
 
 # Pacho Ramos <pacho@gentoo.org> (14 Jul 2017)
 # Dead for ages, relies on dead libs (#622010), you can move to moserial, cutecom or