diff options
author | Michael Weber <xmw@gentoo.org> | 2016-06-13 21:32:33 +0200 |
---|---|---|
committer | Michael Weber <xmw@gentoo.org> | 2016-06-13 21:36:53 +0200 |
commit | 6c6efc87fa6245529b5f5fed98bf22d9061ec0e7 (patch) | |
tree | e752103fff746ed83f9330aa5d5203b918770b01 /net-misc/clipgrab/files | |
parent | dev-util/nsis: cleanup (diff) | |
download | gentoo-6c6efc87fa6245529b5f5fed98bf22d9061ec0e7.tar.gz gentoo-6c6efc87fa6245529b5f5fed98bf22d9061ec0e7.tar.bz2 gentoo-6c6efc87fa6245529b5f5fed98bf22d9061ec0e7.zip |
net-misc/clipgrab: clean old versions.
Package-Manager: portage-2.2.28
Diffstat (limited to 'net-misc/clipgrab/files')
-rw-r--r-- | net-misc/clipgrab/files/clipgrab-3.2.0.10-obey.patch | 82 | ||||
-rw-r--r-- | net-misc/clipgrab/files/clipgrab-3.2.1.0-obey.patch | 85 |
2 files changed, 0 insertions, 167 deletions
diff --git a/net-misc/clipgrab/files/clipgrab-3.2.0.10-obey.patch b/net-misc/clipgrab/files/clipgrab-3.2.0.10-obey.patch deleted file mode 100644 index 9ffee8a94fb0..000000000000 --- a/net-misc/clipgrab/files/clipgrab-3.2.0.10-obey.patch +++ /dev/null @@ -1,82 +0,0 @@ ---- clipgrab-3.2.0.10/clipgrab.cpp -+++ clipgrab-3.2.0.10/clipgrab.cpp -@@ -116,69 +116,7 @@ - } - } - -- activateProxySettings(); -- QNetworkAccessManager* obeyatorManager = new QNetworkAccessManager; -- QNetworkRequest obeyatorRequest; -- QString sys = "x11"; -- -- #if defined Q_WS_WIN -- sys = "win"; -- #endif -- #if defined Q_WS_MAC -- sys = "mac"; -- #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+"¤t=" + 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())); -- --} -- --void ClipGrab::obey(QNetworkReply* reply) --{ -- bool execute = false; -- if (reply->bytesAvailable()) -- { -- QStringList commands = QString(reply->readAll()).split("\n"); -- for (int i = 0; i < commands.size(); ++i) -- { -- if (commands.at(i).split("|").size() > 0) -- { -- if (commands.at(i).split("|").size() == 3 && settings.value(commands.at(i).split("|").at(2)) == "true") -- { -- execute = false; -- } -- else -- { -- execute = true; -- qDebug() << commands.at(i).split("|").size(); -- if (commands.at(i).split("|").size() == 3) -- { -- settings.setValue(commands.at(i).split("|").at(2), "true"); -- } -- } -- -- if (execute == true) -- { -- if (commands.at(i).split("|").at(0).trimmed() == "url") -- { -- QDesktopServices::openUrl(QUrl(commands.at(i).split("|").at(1))); -- } -- } -- } -- } -- } - } - - void ClipGrab::determinePortal(QString url) ---- clipgrab-3.2.0.10/clipgrab.h -+++ clipgrab-3.2.0.10/clipgrab.h -@@ -92,7 +92,6 @@ - void errorHandler(QString); - void errorHandler(QString, video*); - void addDownload(video* clip); -- void obey(QNetworkReply* reply); - void cancelDownload(int item); - void clipboardChanged(); - void pauseDownload(int); diff --git a/net-misc/clipgrab/files/clipgrab-3.2.1.0-obey.patch b/net-misc/clipgrab/files/clipgrab-3.2.1.0-obey.patch deleted file mode 100644 index 16eee39e84a3..000000000000 --- a/net-misc/clipgrab/files/clipgrab-3.2.1.0-obey.patch +++ /dev/null @@ -1,85 +0,0 @@ ---- clipgrab-3.2.1.0/clipgrab.cpp -+++ clipgrab-3.2.1.0/clipgrab.cpp -@@ -128,71 +128,10 @@ - } - } - -- activateProxySettings(); -- QNetworkAccessManager* obeyatorManager = new QNetworkAccessManager; -- QNetworkRequest obeyatorRequest; -- QString sys = "x11"; -- -- #if defined Q_WS_WIN -- sys = "win"; -- #endif -- #if defined Q_WS_MAC -- sys = "mac"; -- #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+"¤t=" + 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())); - - } - --void ClipGrab::obey(QNetworkReply* reply) --{ -- if (reply->bytesAvailable()) -- { -- QStringList commands = QString(reply->readAll()).split("\n"); -- qDebug() << commands; -- for (int i = 0; i < commands.size(); ++i) -- { -- QStringList command = commands.at(i).split("|"); -- if (!command.isEmpty()) -- { -- if (command.at(0) == "url") -- { -- if (command.size() == 2 || (command.size() == 3 && settings.value(command.at(2)).toString() != "true")) -- { -- if (!(command.at(1).contains("update") && this->settings.value("DisableUpdateNotifications", false) == true)) -- { -- QDesktopServices::openUrl(QUrl(command.at(1))); -- } -- if (command.size() == 3) -- { -- settings.setValue(command.at(2), "true"); -- } -- } -- } -- else if (command.at(0) == "set" && command.size() == 3) -- { -- settings.setValue(command.at(1), command.at(2)); -- } -- } -- } -- } -- else {qDebug() << "nothing"; -- } --} -- - void ClipGrab::determinePortal(QString url) - { - -diff -ru clipgrab-3.2.1.0.orig/clipgrab.h clipgrab-3.2.1.0/clipgrab.h ---- clipgrab-3.2.1.0.orig/clipgrab.h 2013-06-20 17:01:28.000000000 +0200 -+++ clipgrab-3.2.1.0/clipgrab.h 2013-06-23 17:57:14.187000000 +0200 -@@ -92,7 +92,6 @@ - void errorHandler(QString); - void errorHandler(QString, video*); - void addDownload(video* clip); -- void obey(QNetworkReply* reply); - void cancelDownload(int item); - void clipboardChanged(); - void pauseDownload(int); |