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
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')
-rw-r--r--kde-frameworks/kio/Manifest1
-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
-rw-r--r--kde-frameworks/kio/kio-5.26.0-r2.ebuild86
5 files changed, 0 insertions, 203 deletions
diff --git a/kde-frameworks/kio/Manifest b/kde-frameworks/kio/Manifest
index 7832f36d9079..8e29434f1014 100644
--- a/kde-frameworks/kio/Manifest
+++ b/kde-frameworks/kio/Manifest
@@ -1,3 +1,2 @@
-DIST kio-5.26.0.tar.xz 2953124 SHA256 40d546074af313be97f64b644daad46fc9c287dbcf4bc41ca9fb5ff6c02976cf SHA512 dd8eed496698edee0af7461aaf5e170c6b6cdaf04a03caa9f8b0a5022446bbb5fa7e0eb40a93ecd8985a4e219eb5b930c8714449fa4f6f93910cc649b4650a8b WHIRLPOOL a26d95ce1d5b6a877143337dcab88dbede21fde5916ac72e20b350eeaf9a7c6c7e75f5ad21b8cabf5c65d97195aef6d262a9f15d9ca8e9504275b46f6d7fe477
DIST kio-5.29.0.tar.xz 3076744 SHA256 52ce0e402a466a82480ee6edeaeae36bdc3b254aece3210dd4273a2b57955c6b SHA512 bd0d993804d0d36066ff7d9d4071c57863cb8ab7ca41b42e03731c4c17571eb898329cc773eb55355177cdea86059eaf821fe7989859a202890af53c87f41707 WHIRLPOOL d22b4e647945438f3fb56854619352d29754f1d7b96dbae658a16f98a5adb1354ba5aa2ace0b452b07250847d5886d3fb45f6175b1680ebdfe4e2d5cafb5475e
DIST kio-5.30.0.tar.xz 3082084 SHA256 a15a688395e7c8a22e78b0cf5a8b9c3c4bd679bf667b23f50ae82b36cf5e363a SHA512 60538e479543a4061039859f6343b5054c387befa2a1db9164103cb77b4e6ce9b67bd30cc0ccbc439a820d1a5ecfb1102488844367e5e1ad2cd686a301682f88 WHIRLPOOL f31931ade9fc8dc5dbb1a3dbef2e730308361addc95160bd36ce2ecc3ed4bee3944487f3eb94ea82700821a83d434a1577099268b7486c7b784c8e287f529e73
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,
-
diff --git a/kde-frameworks/kio/kio-5.26.0-r2.ebuild b/kde-frameworks/kio/kio-5.26.0-r2.ebuild
deleted file mode 100644
index f8476f3ddd8a..000000000000
--- a/kde-frameworks/kio/kio-5.26.0-r2.ebuild
+++ /dev/null
@@ -1,86 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-
-KDE_TEST="forceoptional"
-VIRTUALX_REQUIRED="test"
-inherit kde5
-
-DESCRIPTION="Framework providing transparent file and data management"
-LICENSE="LGPL-2+"
-KEYWORDS="amd64 ~arm x86"
-IUSE="acl +handbook kerberos +kwallet X"
-
-COMMON_DEPEND="
- $(add_frameworks_dep karchive)
- $(add_frameworks_dep kbookmarks)
- $(add_frameworks_dep kcodecs)
- $(add_frameworks_dep kcompletion)
- $(add_frameworks_dep kconfig)
- $(add_frameworks_dep kconfigwidgets)
- $(add_frameworks_dep kcoreaddons)
- $(add_frameworks_dep kdbusaddons)
- $(add_frameworks_dep ki18n)
- $(add_frameworks_dep kiconthemes)
- $(add_frameworks_dep kitemviews)
- $(add_frameworks_dep kjobwidgets)
- $(add_frameworks_dep knotifications)
- $(add_frameworks_dep kservice)
- $(add_frameworks_dep ktextwidgets)
- $(add_frameworks_dep kwidgetsaddons)
- $(add_frameworks_dep kwindowsystem)
- $(add_frameworks_dep kxmlgui)
- $(add_frameworks_dep solid)
- $(add_qt_dep qtdbus)
- $(add_qt_dep qtgui)
- $(add_qt_dep qtnetwork 'ssl')
- $(add_qt_dep qtscript)
- $(add_qt_dep qtwidgets)
- $(add_qt_dep qtxml)
- dev-libs/libxml2
- dev-libs/libxslt
- acl? (
- sys-apps/attr
- virtual/acl
- )
- kerberos? ( virtual/krb5 )
- kwallet? ( $(add_frameworks_dep kwallet) )
- X? ( $(add_qt_dep qtx11extras) )
-"
-DEPEND="${COMMON_DEPEND}
- $(add_qt_dep qtconcurrent)
- handbook? ( $(add_frameworks_dep kdoctools) )
- test? ( sys-libs/zlib )
- X? (
- x11-libs/libX11
- x11-libs/libXrender
- x11-proto/xproto
- )
-"
-PDEPEND="
- $(add_frameworks_dep kded)
-"
-RDEPEND="${COMMON_DEPEND}"
-
-# tests hang
-RESTRICT+=" test"
-
-PATCHES=(
- "${FILESDIR}/${P}-fix-desktop-launch.patch"
- "${FILESDIR}/${P}-fix-abi-break.patch"
- "${FILESDIR}/${P}-secureprotocols.patch"
-)
-
-src_configure() {
- local mycmakeargs=(
- $(cmake-utils_use_find_package acl ACL)
- $(cmake-utils_use_find_package handbook KF5DocTools)
- $(cmake-utils_use_find_package kerberos GSSAPI)
- $(cmake-utils_use_find_package kwallet KF5Wallet)
- $(cmake-utils_use_find_package X X11)
- )
-
- kde5_src_configure
-}