[neon/kde/solid/Neon/release] debian/patches: del patch

Carlos De Maine null at kde.org
Mon Jun 17 05:24:38 BST 2024


Git commit 2af14188bd8ca126884c8718291e2a29cb17e100 by Carlos De Maine.
Committed on 17/06/2024 at 04:24.
Pushed by carlosdem into branch 'Neon/release'.

del patch

D  +0    -29   debian/patches/luks.diff
D  +0    -1    debian/patches/series

https://invent.kde.org/neon/kde/solid/-/commit/2af14188bd8ca126884c8718291e2a29cb17e100

diff --git a/debian/patches/luks.diff b/debian/patches/luks.diff
deleted file mode 100644
index e4f1519..0000000
--- a/debian/patches/luks.diff
+++ /dev/null
@@ -1,29 +0,0 @@
-commit 9ecaf388ccd41d2831ab3833c26627f72ab78f40
-Author: Kai Uwe Broulik <kde at privat.broulik.de>
-Date:   Mon Apr 15 22:43:15 2024 +0200
-
-    udisks: Return empty string for "root" clearTextPath
-    
-    There cannot be an empty object path on DBus, so "/" is used to denote
-    no clear text device. Return empty string explicitly here to avoid
-    littering even more places with empty || "/" checks.
-    
-    BUG: 485507
-
-diff --git a/src/solid/devices/backends/udisks2/udisksstorageaccess.cpp b/src/solid/devices/backends/udisks2/udisksstorageaccess.cpp
-index 04e78b1f..cfbedae0 100644
---- a/src/solid/devices/backends/udisks2/udisksstorageaccess.cpp
-+++ b/src/solid/devices/backends/udisks2/udisksstorageaccess.cpp
-@@ -465,7 +465,11 @@ QString StorageAccess::generateReturnObjectPath()
- 
- QString StorageAccess::clearTextPath() const
- {
--    return m_device->prop("CleartextDevice").value<QDBusObjectPath>().path();
-+    const QString path = m_device->prop("CleartextDevice").value<QDBusObjectPath>().path();
-+    if (path != QLatin1String("/")) {
-+        return path;
-+    }
-+    return QString();
- }
- 
- QString StorageAccess::dbusPath() const
diff --git a/debian/patches/series b/debian/patches/series
deleted file mode 100644
index 98738f3..0000000
--- a/debian/patches/series
+++ /dev/null
@@ -1 +0,0 @@
-luks.diff


More information about the Neon-commits mailing list