summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2020-05-31 22:45:53 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2020-05-31 23:08:37 +0200
commite16606dc50253e5cc3314a385af6047a6d031371 (patch)
tree6c0a41956e6330e884a1b393e0be49f21755a621 /kde-frameworks/kcmutils
parentkde-frameworks/extra-cmake-modules: 5.70.0 ppc/allarches stable (diff)
downloadgentoo-e16606dc50253e5cc3314a385af6047a6d031371.tar.gz
gentoo-e16606dc50253e5cc3314a385af6047a6d031371.tar.bz2
gentoo-e16606dc50253e5cc3314a385af6047a6d031371.zip
kde-frameworks: Drop KDE Frameworks 5.67.0
Package-Manager: Portage-2.3.100, Repoman-2.3.22 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'kde-frameworks/kcmutils')
-rw-r--r--kde-frameworks/kcmutils/Manifest1
-rw-r--r--kde-frameworks/kcmutils/files/kcmutils-5.67.0-check-activeModule.patch31
-rw-r--r--kde-frameworks/kcmutils/kcmutils-5.67.0-r1.ebuild35
3 files changed, 0 insertions, 67 deletions
diff --git a/kde-frameworks/kcmutils/Manifest b/kde-frameworks/kcmutils/Manifest
index 728cf2f07760..06a0d7f74e69 100644
--- a/kde-frameworks/kcmutils/Manifest
+++ b/kde-frameworks/kcmutils/Manifest
@@ -1,2 +1 @@
-DIST kcmutils-5.67.0.tar.xz 239872 BLAKE2B 53ca73c4dd63acabeccae7b5bcda077f179f5f8d6acee751035285e21c2e1c100e2c222da88ee1c774c602e2671d3abf65fc06e28ee2f9446378de7f811c70e8 SHA512 f25605b5400fc8bdd9a7153ea368a41d254a08c3abf6cae9e0454d9406af4418b622519d72a41ebc5342a88fedc0ae128198036e97ba49b1ab10de5f2e6f919c
DIST kcmutils-5.70.0.tar.xz 239804 BLAKE2B dd137525dcfe057631891b934077f520dd7d9379f3657e36b3ecd5402b969eb7fc77c6360df7547c9ad32f412154faaf039662ff7ccec94ec2c85ecc1b21674f SHA512 2b1811c30bc003b2f4325aa1ce094cb9cffcb96eead58a55d4c40cd100ef3cc640d38510077ddc306bfd526526fb0598c3efa49f8342a0ffa46c296bac240c38
diff --git a/kde-frameworks/kcmutils/files/kcmutils-5.67.0-check-activeModule.patch b/kde-frameworks/kcmutils/files/kcmutils-5.67.0-check-activeModule.patch
deleted file mode 100644
index 63b4b5189fab..000000000000
--- a/kde-frameworks/kcmutils/files/kcmutils-5.67.0-check-activeModule.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-From ea7120ed901bf6161bb483ab73211a6491daac8f Mon Sep 17 00:00:00 2001
-From: Wolfgang Bauer <wbauer@tmo.at>
-Date: Sun, 16 Feb 2020 18:05:06 +0100
-Subject: Check activeModule before using it
-
-`activeModule` can be a nullptr here, as this is outside/after the
-`if (activeModule)`.
-This causes kontact to crash when opening its settings.
-
-BUG: 417396
-FIXED-IN: 5.68.0
-Differential Revision: https://phabricator.kde.org/D27433
----
- src/kcmultidialog.cpp | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/src/kcmultidialog.cpp b/src/kcmultidialog.cpp
-index 90da1c0..6a36ba5 100644
---- a/src/kcmultidialog.cpp
-+++ b/src/kcmultidialog.cpp
-@@ -181,7 +181,7 @@ void KCMultiDialogPrivate::_k_clientChanged()
- #endif
- }
-
-- auto buttons = activeModule->buttons();
-+ auto buttons = activeModule ? activeModule->buttons() : KCModule::NoAdditionalButton;
-
- QPushButton *resetButton = q->buttonBox()->button(QDialogButtonBox::Reset);
- if (resetButton) {
---
-cgit v1.1
diff --git a/kde-frameworks/kcmutils/kcmutils-5.67.0-r1.ebuild b/kde-frameworks/kcmutils/kcmutils-5.67.0-r1.ebuild
deleted file mode 100644
index a38571f8ebf7..000000000000
--- a/kde-frameworks/kcmutils/kcmutils-5.67.0-r1.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-ECM_TEST="false"
-PVCUT=$(ver_cut 1-2)
-QTMIN=5.12.3
-inherit ecm kde.org
-
-DESCRIPTION="Framework to work with KDE System Settings modules"
-LICENSE="LGPL-2"
-KEYWORDS="amd64 ~arm arm64 ~ppc64 x86"
-IUSE=""
-
-DEPEND="
- =kde-frameworks/kauth-${PVCUT}*:5
- =kde-frameworks/kconfig-${PVCUT}*:5
- =kde-frameworks/kconfigwidgets-${PVCUT}*:5
- =kde-frameworks/kcoreaddons-${PVCUT}*:5
- =kde-frameworks/kdeclarative-${PVCUT}*:5
- =kde-frameworks/kguiaddons-${PVCUT}*:5
- =kde-frameworks/ki18n-${PVCUT}*:5
- =kde-frameworks/kitemviews-${PVCUT}*:5
- =kde-frameworks/kservice-${PVCUT}*:5
- =kde-frameworks/kwidgetsaddons-${PVCUT}*:5
- =kde-frameworks/kxmlgui-${PVCUT}*:5
- >=dev-qt/qtdbus-${QTMIN}:5
- >=dev-qt/qtdeclarative-${QTMIN}:5[widgets]
- >=dev-qt/qtgui-${QTMIN}:5
- >=dev-qt/qtwidgets-${QTMIN}:5
-"
-RDEPEND="${DEPEND}"
-
-PATCHES=( "${FILESDIR}/${P}-check-activeModule.patch" ) # bug 710078, in 5.68