summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2022-02-10 09:20:39 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2022-02-10 10:10:54 +0100
commitb4dbafca90db40d5572b7aecfa460aed5a60ed59 (patch)
tree5b3fd52d90cd61c028fc001d3f739a40c0252f8f /kde-frameworks
parentkde-frameworks/kdav: drop 5.88.0* (diff)
downloadgentoo-b4dbafca90db40d5572b7aecfa460aed5a60ed59.tar.gz
gentoo-b4dbafca90db40d5572b7aecfa460aed5a60ed59.tar.bz2
gentoo-b4dbafca90db40d5572b7aecfa460aed5a60ed59.zip
kde-frameworks/kdeclarative: drop 5.88.0*
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'kde-frameworks')
-rw-r--r--kde-frameworks/kdeclarative/Manifest1
-rw-r--r--kde-frameworks/kdeclarative/files/kdeclarative-5.88.0-KeySequenceItem-record-on-correct-window.patch36
-rw-r--r--kde-frameworks/kdeclarative/kdeclarative-5.88.0-r1.ebuild39
3 files changed, 0 insertions, 76 deletions
diff --git a/kde-frameworks/kdeclarative/Manifest b/kde-frameworks/kdeclarative/Manifest
index 9b2f8846ecb6..028560a85955 100644
--- a/kde-frameworks/kdeclarative/Manifest
+++ b/kde-frameworks/kdeclarative/Manifest
@@ -1,2 +1 @@
-DIST kdeclarative-5.88.0.tar.xz 191048 BLAKE2B 113ed6a1ff297251cec4baf143352d3b8cb1d80cd0aca45ad21ec4d1583a5a9603897c9edfda99fe0bfc3c5c09a78c609c563602accb2e2fe7b76c3b1e7e0d1e SHA512 f72221bd6bd5fa739994482607161ea2ed7e659c18c4c9f3a161a765925c10a18cf7b5737a0489e589de13201c624d5a597e248eddaa77e1006b22ef8f19efb2
DIST kdeclarative-5.90.0.tar.xz 199308 BLAKE2B 6cc7cbe7ab1b70fe238c32ba61f7187c251ffe04129a3681c2c441584fc8b3ee8d6026465c918a1477897f20e748f8451823e7551b905e1769cbffbfd11c80a7 SHA512 6e2dc0c19f16915b35f0c0bd1526b986987fbd450ad75666c1b5c94e2f30efbef857ffff424f3026a3da3762209dbb166d48a8146540b0d625d2203d4dda0679
diff --git a/kde-frameworks/kdeclarative/files/kdeclarative-5.88.0-KeySequenceItem-record-on-correct-window.patch b/kde-frameworks/kdeclarative/files/kdeclarative-5.88.0-KeySequenceItem-record-on-correct-window.patch
deleted file mode 100644
index bf4d6fc5dddb..000000000000
--- a/kde-frameworks/kdeclarative/files/kdeclarative-5.88.0-KeySequenceItem-record-on-correct-window.patch
+++ /dev/null
@@ -1,36 +0,0 @@
-From 2caa62d11f322ca5c9829b6bc91839e8afd42686 Mon Sep 17 00:00:00 2001
-From: David Redondo <kde@david-redondo.de>
-Date: Mon, 22 Nov 2021 14:22:14 +0100
-Subject: [PATCH] KeySequenceItem: Make sure we record on the correct window
-
-Unfortunately renderWindowFor is just a simple function call and
-so the binding is not updated when it would change. Now we make sure
-to update the window before each recording.
-BUG:445277
----
- src/qmlcontrols/kquickcontrols/KeySequenceItem.qml | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/src/qmlcontrols/kquickcontrols/KeySequenceItem.qml b/src/qmlcontrols/kquickcontrols/KeySequenceItem.qml
-index 7b404bd..a41bf18 100644
---- a/src/qmlcontrols/kquickcontrols/KeySequenceItem.qml
-+++ b/src/qmlcontrols/kquickcontrols/KeySequenceItem.qml
-@@ -42,7 +42,6 @@ RowLayout {
-
- KQuickControlsPrivate.KeySequenceHelper {
- id: _helper
-- window: renderWindow(parent.Window.window)
- onGotKeySequence: {
- if (isKeySequenceAvailable(keySequence)) {
- root.keySequence = keySequence
-@@ -95,6 +94,7 @@ RowLayout {
-
- onCheckedChanged: {
- if (checked) {
-+ _helper.window = _helper.renderWindow(parent.Window.window)
- mainButton.forceActiveFocus()
- _helper.startRecording()
- }
---
-GitLab
-
diff --git a/kde-frameworks/kdeclarative/kdeclarative-5.88.0-r1.ebuild b/kde-frameworks/kdeclarative/kdeclarative-5.88.0-r1.ebuild
deleted file mode 100644
index 49aae073b5e3..000000000000
--- a/kde-frameworks/kdeclarative/kdeclarative-5.88.0-r1.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-ECM_TEST="false"
-PVCUT=$(ver_cut 1-2)
-QTMIN=5.15.2
-inherit ecm kde.org
-
-DESCRIPTION="Framework providing integration of QML and KDE work spaces"
-
-LICENSE="LGPL-2+"
-KEYWORDS="amd64 ~arm arm64 ~ppc64 ~riscv x86"
-IUSE=""
-
-DEPEND="
- >=dev-qt/qtdeclarative-${QTMIN}:5
- >=dev-qt/qtgui-${QTMIN}:5
- >=dev-qt/qtnetwork-${QTMIN}:5
- >=dev-qt/qtwidgets-${QTMIN}:5
- =kde-frameworks/kconfig-${PVCUT}*:5
- =kde-frameworks/kcoreaddons-${PVCUT}*:5
- =kde-frameworks/kglobalaccel-${PVCUT}*:5
- =kde-frameworks/ki18n-${PVCUT}*:5
- =kde-frameworks/kiconthemes-${PVCUT}*:5
- =kde-frameworks/kio-${PVCUT}*:5
- =kde-frameworks/knotifications-${PVCUT}*:5
- =kde-frameworks/kpackage-${PVCUT}*:5
- =kde-frameworks/kservice-${PVCUT}*:5
- =kde-frameworks/kwidgetsaddons-${PVCUT}*:5
- =kde-frameworks/kwindowsystem-${PVCUT}*:5
- media-libs/libepoxy
-"
-RDEPEND="${DEPEND}"
-
-PATCHES=(
- "${FILESDIR}/${P}-KeySequenceItem-record-on-correct-window.patch" # KDE-bug 445277
-)