diff options
author | 2021-12-13 14:57:40 +0100 | |
---|---|---|
committer | 2021-12-14 10:23:00 +0100 | |
commit | ac85383c329f008b1ab5695b419c909f698d882c (patch) | |
tree | b3a51100b0141d2df4937645c8dfb4abfcd3e397 /kde-plasma/plasma-workspace/files | |
parent | kde-plasma/plasma-thunderbolt: drop 5.22.5* (diff) | |
download | gentoo-ac85383c329f008b1ab5695b419c909f698d882c.tar.gz gentoo-ac85383c329f008b1ab5695b419c909f698d882c.tar.bz2 gentoo-ac85383c329f008b1ab5695b419c909f698d882c.zip |
kde-plasma/plasma-workspace: drop 5.22.5*
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'kde-plasma/plasma-workspace/files')
4 files changed, 0 insertions, 128 deletions
diff --git a/kde-plasma/plasma-workspace/files/plasma-workspace-5.22.5-fix-hotplug-notifications.patch b/kde-plasma/plasma-workspace/files/plasma-workspace-5.22.5-fix-hotplug-notifications.patch deleted file mode 100644 index e7cd0627a269..000000000000 --- a/kde-plasma/plasma-workspace/files/plasma-workspace-5.22.5-fix-hotplug-notifications.patch +++ /dev/null @@ -1,33 +0,0 @@ -From 61e2ea2323ae63c5805c87353701ba6fb722205a Mon Sep 17 00:00:00 2001 -From: Fabio Bas <fabio.bas@officineinformatiche.net> -Date: Fri, 3 Sep 2021 19:23:12 +0200 -Subject: [PATCH] Update solid connectedSources when a new source gets added by - hotplug BUG: 438874 - ---- - applets/devicenotifier/package/contents/ui/devicenotifier.qml | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/applets/devicenotifier/package/contents/ui/devicenotifier.qml b/applets/devicenotifier/package/contents/ui/devicenotifier.qml -index a1dc20b83..404ae95e6 100644 ---- a/applets/devicenotifier/package/contents/ui/devicenotifier.qml -+++ b/applets/devicenotifier/package/contents/ui/devicenotifier.qml -@@ -75,6 +75,7 @@ Item { - onSourceAdded: { - disconnectSource(source); - connectSource(source); -+ sdSource.connectedSources = sources - } - onSourceRemoved: { - disconnectSource(source); -@@ -98,7 +99,6 @@ Item { - PlasmaCore.DataSource { - id: sdSource - engine: "soliddevice" -- connectedSources: hpSource.sources - interval: 0 - property string last - onSourceAdded: { --- -GitLab - diff --git a/kde-plasma/plasma-workspace/files/plasma-workspace-5.22.5-fix-powermanagement-inhibition.patch b/kde-plasma/plasma-workspace/files/plasma-workspace-5.22.5-fix-powermanagement-inhibition.patch deleted file mode 100644 index 13e4bf256d3e..000000000000 --- a/kde-plasma/plasma-workspace/files/plasma-workspace-5.22.5-fix-powermanagement-inhibition.patch +++ /dev/null @@ -1,35 +0,0 @@ -From 6379d1ec8d4a1fce141280eead930a6cdd9282d1 Mon Sep 17 00:00:00 2001 -From: Peifeng Yu <7437103@gmail.com> -Date: Mon, 6 Sep 2021 05:24:15 +0000 -Subject: [PATCH] Call UnInhibit with correct signature in powermanagement - dataengine - ---- - dataengines/powermanagement/powermanagementjob.cpp | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/dataengines/powermanagement/powermanagementjob.cpp b/dataengines/powermanagement/powermanagementjob.cpp -index 90051cf33..dc7883d10 100644 ---- a/dataengines/powermanagement/powermanagementjob.cpp -+++ b/dataengines/powermanagement/powermanagementjob.cpp -@@ -104,7 +104,7 @@ void PowerManagementJob::start() - QStringLiteral("/org/freedesktop/PowerManagement/Inhibit"), - QStringLiteral("org.freedesktop.PowerManagement.Inhibit"), - QStringLiteral("UnInhibit")); -- msg << parameters().value(QStringLiteral("cookie")).toInt(); -+ msg << parameters().value(QStringLiteral("cookie")).toUInt(); - QDBusReply<void> reply = QDBusConnection::sessionBus().call(msg); - setResult(reply.isValid()); - return; -@@ -122,7 +122,7 @@ void PowerManagementJob::start() - QStringLiteral("/ScreenSaver"), - QStringLiteral("org.freedesktop.ScreenSaver"), - QStringLiteral("UnInhibit")); -- msg << parameters().value(QStringLiteral("cookie")).toInt(); -+ msg << parameters().value(QStringLiteral("cookie")).toUInt(); - QDBusReply<uint> reply = QDBusConnection::sessionBus().call(msg); - setResult(reply.isValid()); - return; --- -GitLab - diff --git a/kde-plasma/plasma-workspace/files/plasma-workspace-5.22.5-gpsd-3.23.1.patch b/kde-plasma/plasma-workspace/files/plasma-workspace-5.22.5-gpsd-3.23.1.patch deleted file mode 100644 index cb35751d446f..000000000000 --- a/kde-plasma/plasma-workspace/files/plasma-workspace-5.22.5-gpsd-3.23.1.patch +++ /dev/null @@ -1,30 +0,0 @@ -From e6cab5d96f7b51a5cf4be3d93a7e2d4fee1cddae Mon Sep 17 00:00:00 2001 -From: Vlad Zahorodnii <vlad.zahorodnii@kde.org> -Date: Thu, 23 Sep 2021 19:29:05 +0300 -Subject: [PATCH] Fix build with gpsd 3.23.1 - -STATUS_NO_FIX was renamed to STATUS_UNK. - -https://gitlab.com/gpsd/gpsd/-/commit/d4a4d8d3606fd50f10bcd20096a8a0cdb8b2d427 ---- - dataengines/geolocation/location_gps.cpp | 4 +++- - 1 file changed, 3 insertions(+), 1 deletion(-) - -diff --git a/dataengines/geolocation/location_gps.cpp b/dataengines/geolocation/location_gps.cpp -index 858059ada..ec9ec14ae 100644 ---- a/dataengines/geolocation/location_gps.cpp -+++ b/dataengines/geolocation/location_gps.cpp -@@ -52,7 +52,9 @@ void Gpsd::run() - #else - if (m_gpsdata->online) { - #endif --#if GPSD_API_MAJOR_VERSION >= 10 -+#if defined(STATUS_UNK) // STATUS_NO_FIX was renamed to STATUS_UNK without bumping API version -+ if (m_gpsdata->fix.status != STATUS_UNK) { -+#elif GPSD_API_MAJOR_VERSION >= 10 - if (m_gpsdata->fix.status != STATUS_NO_FIX) { - #else - if (m_gpsdata->status != STATUS_NO_FIX) { --- -GitLab - diff --git a/kde-plasma/plasma-workspace/files/plasma-workspace-5.22.5-krunner-cwd-at-home.patch b/kde-plasma/plasma-workspace/files/plasma-workspace-5.22.5-krunner-cwd-at-home.patch deleted file mode 100644 index 27db136c2949..000000000000 --- a/kde-plasma/plasma-workspace/files/plasma-workspace-5.22.5-krunner-cwd-at-home.patch +++ /dev/null @@ -1,30 +0,0 @@ -Commit 7ca34e0baa7fa65efc929eee5b6b0c3d2104db8e already reverted one -change that caused the cwd of all apps spawned by krunner to -erroneously be set to the root dir. - -That regressions is back so it's more robust to fix in within krunner. - -Signed-off-by: Andrea Arcangeli <aarcange@redhat.com> ---- - krunner/main.cpp | 2 ++ - 1 file changed, 2 insertions(+) - -diff --git a/krunner/main.cpp b/krunner/main.cpp -index 4593687ca..fa4a62ac4 100644 ---- a/krunner/main.cpp -+++ b/krunner/main.cpp -@@ -12,6 +12,7 @@ - #include <QDBusConnection> - #include <QDBusMessage> - #include <QDebug> -+#include <QDir> - #include <QQuickWindow> - #include <QSessionManager> - #include <QUrl> -@@ -112,5 +113,6 @@ int main(int argc, char **argv) - } - }); - -+ QDir::setCurrent(QDir::homePath()); - return app.exec(); - } |