summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2020-02-15 14:24:55 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2020-02-15 14:25:22 +0100
commit141e4426b3b384677f06b4a9d442ca90c27944ff (patch)
tree7b82d8a03525fc140abec3d59bfb23e2b45707e1 /kde-plasma/plasma-integration
parentsys-apps/mcstrans: stable 3.0 (diff)
downloadgentoo-141e4426b3b384677f06b4a9d442ca90c27944ff.tar.gz
gentoo-141e4426b3b384677f06b4a9d442ca90c27944ff.tar.bz2
gentoo-141e4426b3b384677f06b4a9d442ca90c27944ff.zip
kde-plasma: Drop KDE Plasma 5.17.4
Package-Manager: Portage-2.3.89, Repoman-2.3.20 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'kde-plasma/plasma-integration')
-rw-r--r--kde-plasma/plasma-integration/Manifest1
-rw-r--r--kde-plasma/plasma-integration/files/plasma-integration-5.17.4-fix-filedialog-size.patch52
-rw-r--r--kde-plasma/plasma-integration/plasma-integration-5.17.4-r1.ebuild49
3 files changed, 0 insertions, 102 deletions
diff --git a/kde-plasma/plasma-integration/Manifest b/kde-plasma/plasma-integration/Manifest
index 0411e1cdc365..b056d5e89cb9 100644
--- a/kde-plasma/plasma-integration/Manifest
+++ b/kde-plasma/plasma-integration/Manifest
@@ -1,3 +1,2 @@
-DIST plasma-integration-5.17.4.tar.xz 56724 BLAKE2B 74a86033ac9f00effdac120f237e06cd96789711c06007f716c5eb33bccae0b38125731ff4f5735faa13d1969c884a54f7d5358f82c714c3c786e62a210989e5 SHA512 301fb2faa42cf2c579070a2136c3e39db495b35e715abcd336a5fc1044a5134b5006e022ad9d69b530e7f308e2ad2486ee44317f3436d9c42412bf61a3047ebd
DIST plasma-integration-5.17.5.tar.xz 56836 BLAKE2B aa22d2f362f07e33ca75ada88b05a93ee9bc6f2bb6e136d9a08526e54a1e68a5c7947e617085f068363f40d5748b9fdcb7a93ad57016dd6844718d843c01897f SHA512 9341ca525e1c02b0ee00d01221a68f683717f89c19408f5b94004fa13fb63fa7983609756ce64fd0b21301fb2a51a3e531c0b2bc1c46ca656dc41b08076baca2
DIST plasma-integration-5.18.0.tar.xz 57712 BLAKE2B 3144b397cb7316a760fe35a5bac75f04bc511d5a6b3af54494cbde3df98a14f3c4d754d1136043b70182e0e252bd247b6edeb68428ac87dfb550a7fef4e8571f SHA512 c6ba798d6525c7d8cfd46874a1ffd7c6147e600f64a49b410b124945f7a46de0003166b049981897fb20f8776a66d14b9cf7fc1e4729497dc6285421d5161850
diff --git a/kde-plasma/plasma-integration/files/plasma-integration-5.17.4-fix-filedialog-size.patch b/kde-plasma/plasma-integration/files/plasma-integration-5.17.4-fix-filedialog-size.patch
deleted file mode 100644
index b49006bcde99..000000000000
--- a/kde-plasma/plasma-integration/files/plasma-integration-5.17.4-fix-filedialog-size.patch
+++ /dev/null
@@ -1,52 +0,0 @@
-From 2e9f96847432c707a9dfbfe0748f0524a128abb7 Mon Sep 17 00:00:00 2001
-From: David Edmundson <kde@davidedmundson.co.uk>
-Date: Sat, 14 Dec 2019 14:03:30 +0100
-Subject: Resize file dialog window before size restore
-
-Summary:
-KDEPlatformDialogHelper explicitly resizes the window contents to the
-window as part of a bug fix. This means we lose the common path where
-the window resizes to the content's size hints that happens later.
-
-If we resize the window to the size hint in advance we keep our size
-hint.
-
-(alternatively it seems to be me we can remove that old hack...but it
-needs testing by people with Qt5.12)
-
-Test Plan:
-KWrite -> open
-
-Size is 900x600, the size hint
-not 640x480 the QPA default
-
-Reviewers: #plasma, ngraham
-
-Reviewed By: ngraham
-
-Subscribers: ngraham, plasma-devel
-
-Tags: #plasma
-
-Differential Revision: https://phabricator.kde.org/D25986
----
- src/platformtheme/kdeplatformfiledialoghelper.cpp | 4 ++++
- 1 file changed, 4 insertions(+)
-
-diff --git a/src/platformtheme/kdeplatformfiledialoghelper.cpp b/src/platformtheme/kdeplatformfiledialoghelper.cpp
-index efb7b60..4c67547 100644
---- a/src/platformtheme/kdeplatformfiledialoghelper.cpp
-+++ b/src/platformtheme/kdeplatformfiledialoghelper.cpp
-@@ -370,6 +370,10 @@ void KDEPlatformFileDialogHelper::restoreSize()
- {
- m_dialog->winId(); // ensure there's a window created
- KSharedConfig::Ptr conf = KSharedConfig::openConfig();
-+
-+ // see the note below
-+ m_dialog->windowHandle()->resize(m_dialog->sizeHint());
-+
- KWindowConfig::restoreWindowSize(m_dialog->windowHandle(), conf->group("FileDialogSize"));
- // NOTICE: QWindow::setGeometry() does NOT impact the backing QWidget geometry even if the platform
- // window was created -> QTBUG-40584. We therefore copy the size here.
---
-cgit v1.1
diff --git a/kde-plasma/plasma-integration/plasma-integration-5.17.4-r1.ebuild b/kde-plasma/plasma-integration/plasma-integration-5.17.4-r1.ebuild
deleted file mode 100644
index 0cb03091d71d..000000000000
--- a/kde-plasma/plasma-integration/plasma-integration-5.17.4-r1.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-VIRTUALX_REQUIRED="test"
-KFMIN=5.64.0
-PVCUT=$(ver_cut 1-3)
-QTMIN=5.12.3
-inherit ecm kde.org
-
-DESCRIPTION="Qt Platform Theme integration plugins for the Plasma workspaces"
-LICENSE="LGPL-2+"
-SLOT="5"
-KEYWORDS="amd64 ~arm arm64 x86"
-IUSE=""
-
-DEPEND="
- >=kde-frameworks/kcompletion-${KFMIN}:5
- >=kde-frameworks/kconfig-${KFMIN}:5
- >=kde-frameworks/kconfigwidgets-${KFMIN}:5
- >=kde-frameworks/kcoreaddons-${KFMIN}:5
- >=kde-frameworks/ki18n-${KFMIN}:5
- >=kde-frameworks/kiconthemes-${KFMIN}:5
- >=kde-frameworks/kio-${KFMIN}:5
- >=kde-frameworks/kjobwidgets-${KFMIN}:5
- >=kde-frameworks/knotifications-${KFMIN}:5
- >=kde-frameworks/kwayland-${KFMIN}:5
- >=kde-frameworks/kwidgetsaddons-${KFMIN}:5
- >=kde-frameworks/kwindowsystem-${KFMIN}:5
- >=kde-frameworks/kxmlgui-${KFMIN}:5
- >=kde-plasma/breeze-${PVCUT}:5
- >=dev-qt/qtdbus-${QTMIN}:5
- >=dev-qt/qtgui-${QTMIN}:5=[dbus]
- >=dev-qt/qtquickcontrols2-${QTMIN}:5
- >=dev-qt/qtwidgets-${QTMIN}:5
- >=dev-qt/qtx11extras-${QTMIN}:5
- x11-libs/libXcursor
- x11-libs/libxcb
-"
-RDEPEND="${DEPEND}
- media-fonts/hack
- media-fonts/noto
-"
-
-# requires running kde environment
-RESTRICT+=" test"
-
-PATCHES=( "${FILESDIR}"/${P}-fix-filedialog-size.patch )