summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2021-04-06 14:14:14 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2021-04-11 16:23:04 +0200
commit34899caec5ebadf4fcf15a67e1c6e9e310937749 (patch)
treec3818441993790068f8f4183b937fdf3c6aff75f
parentkde-frameworks/kwallet: drop 5.77.0* (diff)
downloadgentoo-34899caec5ebadf4fcf15a67e1c6e9e310937749.tar.gz
gentoo-34899caec5ebadf4fcf15a67e1c6e9e310937749.tar.bz2
gentoo-34899caec5ebadf4fcf15a67e1c6e9e310937749.zip
kde-frameworks/kxmlgui: drop 5.77.0*
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
-rw-r--r--kde-frameworks/kxmlgui/Manifest1
-rw-r--r--kde-frameworks/kxmlgui/files/kxmlgui-5.77.0-fix-key-recording.patch29
-rw-r--r--kde-frameworks/kxmlgui/files/kxmlgui-5.77.0-no-kwindowsystem.patch40
-rw-r--r--kde-frameworks/kxmlgui/kxmlgui-5.77.0-r1.ebuild58
4 files changed, 0 insertions, 128 deletions
diff --git a/kde-frameworks/kxmlgui/Manifest b/kde-frameworks/kxmlgui/Manifest
index 8bfd38bc40f3..7d72a4f7fad5 100644
--- a/kde-frameworks/kxmlgui/Manifest
+++ b/kde-frameworks/kxmlgui/Manifest
@@ -1,3 +1,2 @@
-DIST kxmlgui-5.77.0.tar.xz 860548 BLAKE2B c862dd9524698c5fc3f83933a20b229ad8b52c94b3b5a703f64518bd4e13543f46bfa2dcf85ed21a0d19c0d72e9efafe412f6cbf6698c14e4827ad4f38da6afa SHA512 bd0e9f0b41927f6e90b71328f5e680a9d83a9c9f502edefc78f898fcab6be3cf553409b63e117c80cc8541b7a48ceb66de49fbcc6e7c8afc33a0d9fd901512b0
DIST kxmlgui-5.80.0.tar.xz 861784 BLAKE2B e2a3673594806100e416206cf108fe1cab5c0647f2b68eede7608dc0fb886852587f4e6aed8d25f7ccd97fcbe5eaf9ad313a52a36ace5eace7f6a0df0fb7ac82 SHA512 ae19b33329c3c371d1cc94c83ebdae5f02b95e0e3562fed915a4f7185c7d9c639b0a0d8afaef8cb06598d1c44c48595b3f7d7a0a10c8a0c555a8d5d923361a16
DIST kxmlgui-5.81.0.tar.xz 862492 BLAKE2B f9ba5ae603986a53f3f8675a56018d5ffe75be9df936f0d410145ebb1ab6958d9c2b9ab53fab7de4e662a634ed7978753706c33ac23f892fa900f10b4af7d7af SHA512 950c03601b6ab0f83d79d3fd958ec050d98779619143ef4969213e9ead016cf8c6693ee4da5136533c9793ab73336a1c49678b189028e3fab140fc69ff166dd8
diff --git a/kde-frameworks/kxmlgui/files/kxmlgui-5.77.0-fix-key-recording.patch b/kde-frameworks/kxmlgui/files/kxmlgui-5.77.0-fix-key-recording.patch
deleted file mode 100644
index ae1269ac6679..000000000000
--- a/kde-frameworks/kxmlgui/files/kxmlgui-5.77.0-fix-key-recording.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-From 1bd9ac05b0eed3582937829150b31ea48fd95bb0 Mon Sep 17 00:00:00 2001
-From: Weng Xuetian <wengxt@gmail.com>
-Date: Thu, 17 Dec 2020 11:12:40 -0800
-Subject: [PATCH] Fix key recording by setWindow before capture starts.
-
-It is common that during the construction of widget, it is not yet added to
-a window. Thus windowHandle will simply return null in this case. Always set
-the window to before the capture starts.
-
-BUG: 430388
----
- src/kkeysequencewidget.cpp | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/src/kkeysequencewidget.cpp b/src/kkeysequencewidget.cpp
-index a51c6cc..c1f5c42 100644
---- a/src/kkeysequencewidget.cpp
-+++ b/src/kkeysequencewidget.cpp
-@@ -493,6 +493,7 @@ void KKeySequenceWidget::setCheckActionCollections(const QList<KActionCollection
- //slot
- void KKeySequenceWidget::captureKeySequence()
- {
-+ d->recorder->setWindow(window()->windowHandle());
- d->recorder->startRecording();
- }
-
---
-GitLab
-
diff --git a/kde-frameworks/kxmlgui/files/kxmlgui-5.77.0-no-kwindowsystem.patch b/kde-frameworks/kxmlgui/files/kxmlgui-5.77.0-no-kwindowsystem.patch
deleted file mode 100644
index ba7c45eb6a01..000000000000
--- a/kde-frameworks/kxmlgui/files/kxmlgui-5.77.0-no-kwindowsystem.patch
+++ /dev/null
@@ -1,40 +0,0 @@
-From ffd68935c2ef48fc60cbbb1b4159d49a018e597b Mon Sep 17 00:00:00 2001
-From: Nicolas Fella <nicolas.fella@gmx.de>
-Date: Thu, 10 Dec 2020 17:22:21 +0100
-Subject: [PATCH] Remove unused KWindowSystem dependency
-
-Since
-https://invent.kde.org/frameworks/kxmlgui/-/commit/28a80aba1463b83ea8845ff22566a2110c8fb041
-it's not needed any more
----
- CMakeLists.txt | 1 -
- src/CMakeLists.txt | 1 -
- 2 files changed, 2 deletions(-)
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index a7ffac4..0e516c5 100644
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -54,7 +54,6 @@ find_package(KF5GuiAddons ${KF5_DEP_VERSION} REQUIRED)
- find_package(KF5I18n ${KF5_DEP_VERSION} REQUIRED)
- find_package(KF5IconThemes ${KF5_DEP_VERSION} REQUIRED)
- find_package(KF5WidgetsAddons ${KF5_DEP_VERSION} REQUIRED)
--find_package(KF5WindowSystem ${KF5_DEP_VERSION} REQUIRED)
- find_package(KF5Attica ${KF5_DEP_VERSION})
- set_package_properties(KF5Attica PROPERTIES DESCRIPTION "A Qt library that implements the Open Collaboration Services API"
- PURPOSE "Support for Get Hot New Stuff in KXMLGUI"
-diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
-index e965d8d..3875a6b 100644
---- a/src/CMakeLists.txt
-+++ b/src/CMakeLists.txt
-@@ -110,7 +110,6 @@ PRIVATE
- KF5::ItemViews #KWidgetItemDelegate in KAboutApplicationPersonListDelegate
- KF5::I18n #i18n and i18nc in many places
- KF5::IconThemes #KIconLoader and KIconThemes in KToolBar
-- KF5::WindowSystem #KKeyServer in kkeysequencewidget
- ${XMLGUI_EXTRA_LIBS}
- )
- if (TARGET Qt5::DBus)
---
-GitLab
-
diff --git a/kde-frameworks/kxmlgui/kxmlgui-5.77.0-r1.ebuild b/kde-frameworks/kxmlgui/kxmlgui-5.77.0-r1.ebuild
deleted file mode 100644
index fe6e58394fc7..000000000000
--- a/kde-frameworks/kxmlgui/kxmlgui-5.77.0-r1.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-ECM_DESIGNERPLUGIN="true"
-PVCUT=$(ver_cut 1-2)
-QTMIN=5.15.1
-VIRTUALX_REQUIRED="test"
-inherit ecm kde.org
-
-DESCRIPTION="Framework for managing menu and toolbar actions in an abstract way"
-KEYWORDS="amd64 ~arm arm64 ~ppc64 x86"
-LICENSE="LGPL-2+"
-IUSE=""
-
-# slot op: includes QtCore/private/qlocale_p.h
-DEPEND="
- >=dev-qt/qtcore-${QTMIN}:5=
- >=dev-qt/qtdbus-${QTMIN}:5
- >=dev-qt/qtgui-${QTMIN}:5
- >=dev-qt/qtnetwork-${QTMIN}:5[ssl]
- >=dev-qt/qtprintsupport-${QTMIN}:5
- >=dev-qt/qtwidgets-${QTMIN}:5
- >=dev-qt/qtxml-${QTMIN}:5
- =kde-frameworks/kconfig-${PVCUT}*:5
- =kde-frameworks/kconfigwidgets-${PVCUT}*:5
- =kde-frameworks/kcoreaddons-${PVCUT}*:5
- =kde-frameworks/kglobalaccel-${PVCUT}*:5
- =kde-frameworks/kguiaddons-${PVCUT}*:5
- =kde-frameworks/ki18n-${PVCUT}*:5
- =kde-frameworks/kiconthemes-${PVCUT}*:5
- =kde-frameworks/kitemviews-${PVCUT}*:5
- =kde-frameworks/kwidgetsaddons-${PVCUT}*:5
-"
-RDEPEND="${DEPEND}"
-
-PATCHES=(
- "${FILESDIR}"/${P}-no-kwindowsystem.patch
- "${FILESDIR}"/${P}-fix-key-recording.patch
-)
-
-src_configure() {
- local mycmakeargs=(
- -DCMAKE_DISABLE_FIND_PACKAGE_KF5Attica=ON
- )
-
- ecm_src_configure
-}
-
-src_test() {
- # Files are missing; whatever. Bugs 650290, 668198
- local myctestargs=(
- -E "(ktoolbar_unittest|kxmlgui_unittest)"
- )
-
- ecm_src_test
-}