summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Huber <johu@gentoo.org>2017-01-25 17:32:49 +0100
committerJohannes Huber <johu@gentoo.org>2017-01-25 18:00:27 +0100
commit778e641bccb7b78418ac8afb74f247095783fc1e (patch)
treee56ce48b70ef51a555977135fdef8f817bec83cd /kde-frameworks/kio/files
parentapp-backup/kfoldersync: remove old (diff)
downloadgentoo-778e641bccb7b78418ac8afb74f247095783fc1e.tar.gz
gentoo-778e641bccb7b78418ac8afb74f247095783fc1e.tar.bz2
gentoo-778e641bccb7b78418ac8afb74f247095783fc1e.zip
kde-frameworks: Remove KDE Frameworks 5.26.0
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Diffstat (limited to 'kde-frameworks/kio/files')
-rw-r--r--kde-frameworks/kio/files/kio-5.26.0-fix-abi-break.patch64
-rw-r--r--kde-frameworks/kio/files/kio-5.26.0-fix-desktop-launch.patch26
-rw-r--r--kde-frameworks/kio/files/kio-5.26.0-secureprotocols.patch26
3 files changed, 0 insertions, 116 deletions
diff --git a/kde-frameworks/kio/files/kio-5.26.0-fix-abi-break.patch b/kde-frameworks/kio/files/kio-5.26.0-fix-abi-break.patch
deleted file mode 100644
index 0cbe72eef97c..000000000000
--- a/kde-frameworks/kio/files/kio-5.26.0-fix-abi-break.patch
+++ /dev/null
@@ -1,64 +0,0 @@
-From: José Manuel Santamaría Lema <panfaust@gmail.com>
-Date: Wed, 28 Sep 2016 07:53:08 +0000
-Subject: Fix ABI break in kio
-X-Git-Url: http://quickgit.kde.org/?p=kio.git&a=commitdiff&h=89f8bcf00fc2fc17527d7bb4e0e2aea51f8776cb
----
-Fix ABI break in kio
-
-From the binary compatibility page "Do's and Don'ts":
-https://community.kde.org/Policies/Binary_Compatibility_Issues_With_C%2B%2B#The_Do.27s_and_Don.27ts
-You cannot...
-[...]
-For existing functions of any type:
-[...]
-inline it (this includes moving a member function's body to the class definition, even without the inline keyword).
-
-REVIEW: 129032
----
-
-
---- a/src/widgets/kpropertiesdialog.cpp
-+++ b/src/widgets/kpropertiesdialog.cpp
-@@ -500,6 +500,11 @@
- KPreviewPropsPlugin::supports( _items )*/;
- }
-
-+void KPropertiesDialog::slotOk()
-+{
-+ accept();
-+}
-+
- void KPropertiesDialog::accept()
- {
- QList<KPropertiesDialogPlugin *>::const_iterator pageListIt;
-@@ -541,6 +546,11 @@
- deleteLater(); // somewhat like Qt::WA_DeleteOnClose would do.
- KPageDialog::accept();
- } // else, keep dialog open for user to fix the problem.
-+}
-+
-+void KPropertiesDialog::slotCancel()
-+{
-+ reject();
- }
-
- void KPropertiesDialog::reject()
-
---- a/src/widgets/kpropertiesdialog.h
-+++ b/src/widgets/kpropertiesdialog.h
-@@ -341,12 +341,12 @@
- * Called when the user presses 'Ok'.
- * @deprecated since 5.25, use accept()
- */
-- KIOWIDGETS_DEPRECATED virtual void slotOk() { accept(); }
-+ KIOWIDGETS_DEPRECATED virtual void slotOk();
- /**
- * Called when the user presses 'Cancel'.
- * @deprecated since 5.25, use reject()
- */
-- KIOWIDGETS_DEPRECATED virtual void slotCancel() { reject(); }
-+ KIOWIDGETS_DEPRECATED virtual void slotCancel();
-
- /**
- * Called when the user presses 'Ok'.
-
diff --git a/kde-frameworks/kio/files/kio-5.26.0-fix-desktop-launch.patch b/kde-frameworks/kio/files/kio-5.26.0-fix-desktop-launch.patch
deleted file mode 100644
index b2766a6411b1..000000000000
--- a/kde-frameworks/kio/files/kio-5.26.0-fix-desktop-launch.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-From: Antonio Rojas <arojas@archlinux.org>
-Date: Sat, 10 Sep 2016 22:14:56 +0000
-Subject: Fix launching terminal .desktop files with konsole
-X-Git-Url: http://quickgit.kde.org/?p=kio.git&a=commitdiff&h=c784a879eaba0babc6274bc32e761772add3d4f8
----
-Fix launching terminal .desktop files with konsole
-
-Launching .desktop files which have Terminal=true currently fails, because kio adds to the konsole command the obsolete KDE4 command line options,
-which are not recognized by the KF5 konsole.
-
-REVIEW: 128882
----
-
-
---- a/src/core/desktopexecparser.cpp
-+++ b/src/core/desktopexecparser.cpp
-@@ -363,7 +363,7 @@
- if (!d->service.path().isEmpty()) {
- terminal += " --workdir " + KShell::quoteArg(d->service.path());
- }
-- terminal += QLatin1String(" -caption=%c %i %m");
-+ terminal += QLatin1String(" -qwindowtitle '%c' %i");
- }
- terminal += ' ';
- terminal += d->service.terminalOptions();
-
diff --git a/kde-frameworks/kio/files/kio-5.26.0-secureprotocols.patch b/kde-frameworks/kio/files/kio-5.26.0-secureprotocols.patch
deleted file mode 100644
index d7b42841c570..000000000000
--- a/kde-frameworks/kio/files/kio-5.26.0-secureprotocols.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-From: Andrius Štikonas <andrius@stikonas.eu>
-Date: Mon, 26 Sep 2016 17:15:02 +0000
-Subject: Fix kio using only tls1.0.
-X-Git-Url: http://quickgit.kde.org/?p=kio.git&a=commitdiff&h=8196a735bebc6fd5eaf9d293bd565c00ef98516b
----
-Fix kio using only tls1.0.
-
-Now kio should use QSsl::SslProtocol::SecureProtocols which will deprecate
-unsafe TLS versions when they are no longer safe.
-
-REVIEW: 129031
----
-
-
---- a/src/core/tcpslavebase.cpp
-+++ b/src/core/tcpslavebase.cpp
-@@ -492,7 +492,7 @@
- if (d->usingSSL) {
- return false;
- }
-- return d->startTLSInternal(KTcpSocket::TlsV1) & ResultOk;
-+ return d->startTLSInternal(KTcpSocket::SecureProtocols) & ResultOk;
- }
-
- TCPSlaveBase::SslResult TCPSlaveBase::TcpSlaveBasePrivate::startTLSInternal(KTcpSocket::SslVersion version,
-