From 16e613e2585bb42feb26d70a89d8a1945c6a8827 Mon Sep 17 00:00:00 2001 From: Eric Hameleers Date: Thu, 31 Dec 2015 13:53:34 +0100 Subject: Some package recompilations as a result of your feedback, thanks! Also, three new packages have been added and one has been re-added. current/testing/deps: Updated OpenAL. current/testing/kde/applications: Rebuilt kde-runtime, kdenetwork-filesharing, kdesdk-thumbnailers, kdegraphics-thumbnailers, krfb, kamera, marble, ark, dolphin, kde-baseapps. current/testing/kde/applications: Added the missing baloo5-widgets. current/testing/kde/kdepim: Rebuilt kdepimlibs. current/testing/kde/plasma: Added bluez-qt,bluedevil (now that Slackware finally got updated to BlueZ 5)). current/testing/kde/plasma: Rebuilt plasma5-nm, plasma-workspace. current/testing/kde/plasma-extra: Re-added oxygen-fonts on request. --- kde/patch/ark/ark_kdebug357057.patch | 37 ++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 kde/patch/ark/ark_kdebug357057.patch (limited to 'kde/patch/ark') diff --git a/kde/patch/ark/ark_kdebug357057.patch b/kde/patch/ark/ark_kdebug357057.patch new file mode 100644 index 0000000..76c0bab --- /dev/null +++ b/kde/patch/ark/ark_kdebug357057.patch @@ -0,0 +1,37 @@ +From: Elvis Angelaccio +Date: Wed, 23 Dec 2015 16:19:29 +0000 +Subject: Fallback to read-only mode if there are no read-write executables +X-Git-Url: http://quickgit.kde.org/?p=ark.git&a=commitdiff&h=087e5aab49c60ac5930742fe892fa930048e2f43 +--- +Fallback to read-only mode if there are no read-write executables + +Commit 2d000a0 introduced executables check when loading a plugin. However the +current behavior is too restrictive: if one wants only to open a rar or a +zip archive, there is no need to require also the rar or zip program to be +installed. Plus, some distributions (e.g. Archlinux) ship only unrar in their +official repositories. + +With this commit, Ark is able to understand that e.g. unrar is installed but +rar is not. In this case, Ark can and should fallback to read-only mode, +to disable the Add/Delete actions in the toolbar. + +BUG: 357057 +FIXED-IN: 15.12.1 + +CC: rthomsen6@gmail.com +--- + + +--- a/kerfuffle/archive_kerfuffle.cpp ++++ b/kerfuffle/archive_kerfuffle.cpp +@@ -173,6 +173,9 @@ + + if (iface->findExecutables(!isReadOnly)) { + return new Archive(iface, isReadOnly, parent); ++ } else if (!isReadOnly && iface->findExecutables(false)) { ++ qCWarning(ARK) << "Failed to find read-write executables: falling back to read-only mode for read-write plugin" << pluginName; ++ return new Archive(iface, true, parent); + } else { + qCWarning(ARK) << "Failed to find needed executables for plugin" << pluginName; + } + -- cgit v1.2.3