diff options
author | Michael Mair-Keimberger <mmk@levelnine.at> | 2021-08-20 20:23:06 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2021-08-23 00:47:05 +0200 |
commit | 5e551cd036a132e8e0b2fb8497c510af83990e08 (patch) | |
tree | 74e06125fdce044de3a8b28891900ee18b74ed01 /app-cdr | |
parent | dev-python/discogs-client: sync live ebuild with 2.3.12-r1 (diff) | |
download | gentoo-5e551cd036a132e8e0b2fb8497c510af83990e08.tar.gz gentoo-5e551cd036a132e8e0b2fb8497c510af83990e08.tar.bz2 gentoo-5e551cd036a132e8e0b2fb8497c510af83990e08.zip |
app-cdr/dolphin-plugins-mountiso: remove unused patch(es)
Package-Manager: Portage-3.0.22, Repoman-3.0.3
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/22054
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'app-cdr')
-rw-r--r-- | app-cdr/dolphin-plugins-mountiso/files/dolphin-plugins-mountiso-20.12.3-dont-mount-ISO-multiple-times.patch | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/app-cdr/dolphin-plugins-mountiso/files/dolphin-plugins-mountiso-20.12.3-dont-mount-ISO-multiple-times.patch b/app-cdr/dolphin-plugins-mountiso/files/dolphin-plugins-mountiso-20.12.3-dont-mount-ISO-multiple-times.patch deleted file mode 100644 index fc59e1718503..000000000000 --- a/app-cdr/dolphin-plugins-mountiso/files/dolphin-plugins-mountiso-20.12.3-dont-mount-ISO-multiple-times.patch +++ /dev/null @@ -1,41 +0,0 @@ -From f136702d2adc8643ea12f1b6e3bf97925f1b33f0 Mon Sep 17 00:00:00 2001 -From: Kwon-Young Choi <kwon-young.choi@hotmail.fr> -Date: Fri, 19 Mar 2021 17:10:31 +0100 -Subject: [PATCH] BackingFile property should be use with StorageVolume instead - of StorageAccess - -BUG: 434617 - -When mounting an iso with `udisksctl`, first a loop device is created -`/dev/loop0` then a second device `/dev/loop0p1` is used to mount it on -a filesystem location. - -Querying for StorageAccess devices sometimes only returns the `/dev/loop0p1` -device without the `/dev/loop0` device and the BackingFile property does not -work on `/dev/loop0p1`. - -Solution: query for StorageVolume instead which returns all loop devices: -`/dev/loop0` and `/dev/loop1`. - -Warning: Because StorageVolume returns more devices, the function -`getDeviceFromBackingFile` could be a little bit slower. ---- - mountiso/mountisoaction.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/mountiso/mountisoaction.cpp b/mountiso/mountisoaction.cpp -index e5575ae..d198a89 100644 ---- a/mountiso/mountisoaction.cpp -+++ b/mountiso/mountisoaction.cpp -@@ -78,7 +78,7 @@ MountIsoAction::MountIsoAction(QObject *parent, const QVariantList &) - const Solid::Device getDeviceFromBackingFile(const QString &backingFile) - { - const QList<Solid::Device> blockDevices = -- Solid::Device::listFromQuery("[ IS StorageAccess AND IS GenericInterface ]"); -+ Solid::Device::listFromQuery("[ IS StorageVolume AND IS GenericInterface ]"); - - for (const Solid::Device &device : blockDevices) { - auto genericDevice = device.as<Solid::GenericInterface>(); --- -GitLab - |