summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2025-02-21 20:01:25 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2025-02-21 21:38:51 +0100
commit94cc1c38d662847a07d0dc387695d71e8429bde1 (patch)
tree34ffbc54e53ffba356be94ddeb4d8ebac160ba13 /kde-frameworks
parentkde-frameworks/kdnssd: drop 6.9.0 (diff)
downloadgentoo-94cc1c38d662847a07d0dc387695d71e8429bde1.tar.gz
gentoo-94cc1c38d662847a07d0dc387695d71e8429bde1.tar.bz2
gentoo-94cc1c38d662847a07d0dc387695d71e8429bde1.zip
kde-frameworks/kguiaddons: drop 6.9.0-r1
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'kde-frameworks')
-rw-r--r--kde-frameworks/kguiaddons/Manifest1
-rw-r--r--kde-frameworks/kguiaddons/files/kguiaddons-6.9.0-crashfix.patch46
-rw-r--r--kde-frameworks/kguiaddons/kguiaddons-6.9.0-r1.ebuild57
3 files changed, 0 insertions, 104 deletions
diff --git a/kde-frameworks/kguiaddons/Manifest b/kde-frameworks/kguiaddons/Manifest
index bff18221b113..454618143996 100644
--- a/kde-frameworks/kguiaddons/Manifest
+++ b/kde-frameworks/kguiaddons/Manifest
@@ -1,4 +1,3 @@
DIST kguiaddons-5.116.0.tar.xz 78472 BLAKE2B 5ebfeeda5ce828dbfb8ca6ccabd35b3a3e67fda861d82e2da7f2d7ff6050ec449c03cf4c09a5407a9955a1f905e369fbdb1badd324e3d37ab95d184037089c7d SHA512 6a09bd6b7a3142827e9e44b1526daf945b6b777d091e0c7926fb48604c1ca586c6acc3282b5c8cabec24fba0be3c78e32141ea3307c79d84465718222bd8af04
DIST kguiaddons-6.10.0.tar.xz 86304 BLAKE2B ca37743ab51e1321e6ebd6b45413eb5f0602df428b4b3e69e66a38ca5fba7e1a45b4537562e2738d43f11c5fff0aff0e34357a437b18a587051182863d9c84fe SHA512 c28b6708d0d32c8c1a9ed6e10a12e42cf832a98b10855552b8b2fcab5d8b50423c5ebbb8a34f196408fd13a1f3c9755a0ac6c5fa8eb377d2e48b503a9979b149
DIST kguiaddons-6.11.0.tar.xz 86144 BLAKE2B 0afc682c37141b13eab6b097eb55563cd50a9e3f98d36ecfc757774e9a1d4ef9b26a0789656d3819c0e7ee83fd9d21004e914636f9dc8e0ae2289a5e3b250928 SHA512 67cbb0f69b55d3cd18f7f55571c63c46e344782e4f7dc7002c2f146a7f9342648f95094132498c201d6abadeaaced1d8cbcd279b894329c2776658205abc571f
-DIST kguiaddons-6.9.0.tar.xz 86228 BLAKE2B 401b190912622ce170b9ce89e3b85282908e087c4d5b3dbf7fe73d89d8ab474d0f52777d51126455a21a88ef5fb2c6b3926d2dd9b0508f1bbc84c28b360dd0e9 SHA512 f0ecef4830eb09f963cdfcad9de3044da861dc67bcc7f33861b84cd35299ffb707a2a12d37f68feb0a347ad5178ff1f88e52adea73454a70b9846c40e4b3743c
diff --git a/kde-frameworks/kguiaddons/files/kguiaddons-6.9.0-crashfix.patch b/kde-frameworks/kguiaddons/files/kguiaddons-6.9.0-crashfix.patch
deleted file mode 100644
index 236d5ca664c6..000000000000
--- a/kde-frameworks/kguiaddons/files/kguiaddons-6.9.0-crashfix.patch
+++ /dev/null
@@ -1,46 +0,0 @@
-From ad7f80857647cef7408d81bb1270312cf6acc20d Mon Sep 17 00:00:00 2001
-From: David Redondo <kde@david-redondo.de>
-Date: Tue, 17 Dec 2024 09:04:46 +0100
-Subject: [PATCH] Dont crash if the compostior doesnt support the shortcut
- inhibit protocol
-
-BUG:497457
-FIXED-IN:6.10
----
- src/recorder/waylandinhibition.cpp | 9 +++++++++
- 1 file changed, 9 insertions(+)
-
-diff --git a/src/recorder/waylandinhibition.cpp b/src/recorder/waylandinhibition.cpp
-index 2bbb5c7..d559f85 100644
---- a/src/recorder/waylandinhibition.cpp
-+++ b/src/recorder/waylandinhibition.cpp
-@@ -5,6 +5,8 @@
-
- #include "waylandinhibition_p.h"
-
-+#include "kguiaddons_debug.h"
-+
- #include <QDebug>
- #include <QGuiApplication>
- #include <QSharedPointer>
-@@ -121,10 +123,17 @@ bool WaylandInhibition::shortcutsAreInhibited() const
-
- void WaylandInhibition::enableInhibition()
- {
-+ if (!m_manager->isActive()) {
-+ qCInfo(KGUIADDONS_LOG) << "The compositor does not support the keyboard-shortcuts-inhibit-unstable-v1 protocol. Inhibiting shortcuts will not work.";
-+ return;
-+ }
- m_manager->startInhibition(m_window);
- }
-
- void WaylandInhibition::disableInhibition()
- {
-+ if (!m_manager->isActive()) {
-+ return;
-+ }
- m_manager->stopInhibition(m_window);
- }
---
-GitLab
-
diff --git a/kde-frameworks/kguiaddons/kguiaddons-6.9.0-r1.ebuild b/kde-frameworks/kguiaddons/kguiaddons-6.9.0-r1.ebuild
deleted file mode 100644
index 010c26b533bc..000000000000
--- a/kde-frameworks/kguiaddons/kguiaddons-6.9.0-r1.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-ECM_PYTHON_BINDINGS="off"
-QTMIN=6.7.2
-inherit ecm frameworks.kde.org xdg
-
-DESCRIPTION="Framework providing assorted high-level user interface components"
-
-LICENSE="LGPL-2+"
-KEYWORDS="amd64 arm64 ppc64 ~riscv ~x86"
-IUSE="dbus wayland X"
-
-# slot op: includes qpa/qplatformnativeinterface.h
-COMMON_DEPEND="
- >=dev-qt/qtbase-${QTMIN}:6[dbus?,gui]
- >=dev-qt/qtdeclarative-${QTMIN}:6
- wayland? (
- dev-libs/wayland
- >=dev-qt/qtbase-${QTMIN}:6=[wayland]
- >=dev-qt/qtwayland-${QTMIN}:6
- )
- X? (
- >=dev-qt/qtbase-${QTMIN}:6[X]
- x11-libs/libX11
- )
-"
-DEPEND="${COMMON_DEPEND}
- wayland? ( >=dev-libs/plasma-wayland-protocols-1.15.0 )
- X? (
- x11-base/xorg-proto
- x11-libs/libxcb
- )
-"
-RDEPEND="${COMMON_DEPEND}
- !${CATEGORY}/${PN}:5[-kf6compat(-)]
-"
-BDEPEND="
- wayland? (
- >=dev-qt/qtwayland-${QTMIN}:6
- dev-util/wayland-scanner
- )
-"
-
-PATCHES=( "${FILESDIR}/${P}-crashfix.patch" ) # KDE-bug 497457
-
-src_configure() {
- local mycmakeargs=(
- -DBUILD_GEO_SCHEME_HANDLER=ON
- -DUSE_DBUS=$(usex dbus)
- -DWITH_WAYLAND=$(usex wayland)
- -DWITH_X11=$(usex X)
- )
- ecm_src_configure
-}