[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#33820] [PATCH 1/9] gnu: kcmutils: Make QDirIterator follow symlinks
From: |
Hartmut Goebel |
Subject: |
[bug#33820] [PATCH 1/9] gnu: kcmutils: Make QDirIterator follow symlinks. |
Date: |
Fri, 21 Dec 2018 11:10:44 +0100 |
Transfer the NixOS patch "kcmutils-follow-symlinks" for kcmutils as of
2018-02-17.
* gnu/packages/kde-frameworks.scm(kcmutils)<patch>: New phase.
---
gnu/packages/kde-frameworks.scm | 12 +++++++++++-
1 file changed, 11 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 29f954293..d508624e7 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -1,7 +1,7 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2015 Andreas Enge <address@hidden>
;;; Copyright © 2016 Efraim Flashner <address@hidden>
-;;; Copyright © 2016,2017 Hartmut Goebel <address@hidden>
+;;; Copyright © 2016,2017,2018 Hartmut Goebel <address@hidden>
;;; Copyright © 2016 David Craven <address@hidden>
;;; Copyright © 2017 Thomas Danckaert <address@hidden>
;;; Copyright © 2018 Tobias Geerinckx-Rice <address@hidden>
@@ -2110,6 +2110,16 @@ using the XBEL format.")
("kservice" ,kservice)))
(native-inputs
`(("extra-cmake-modules" ,extra-cmake-modules)))
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ (add-after 'unpack 'patch
+ (lambda _
+ (substitute* "src/kpluginselector.cpp"
+ ;; make QDirIterator follow symlinks
+ (("^\\s*(QDirIterator it\\(.*,
QDirIterator::Subdirectories)(\\);)" _ a b)
+ (string-append a " | QDirIterator::FollowSymlinks" b)))
+ #t)))))
(inputs
`(("kauth" ,kauth)
("kcodecs" ,kcodecs)
--
2.13.7
- [bug#33820] [PATCH 0/9] Adopt NixOS patches for KDE Frameworks, Hartmut Goebel, 2018/12/21
- [bug#33820] [PATCH 1/9] gnu: kcmutils: Make QDirIterator follow symlinks.,
Hartmut Goebel <=
- [bug#33820] [PATCH 8/9] gnu: kpackage: Transfer patches from NixOS., Hartmut Goebel, 2018/12/21
- [bug#33820] [PATCH 9/9] gnu: kservice: Transfer patches from NixOS., Hartmut Goebel, 2018/12/21
- [bug#33820] [PATCH 6/9] gnu: kinit: Use the store paths for dynamically loaded libs., Hartmut Goebel, 2018/12/21
- [bug#33820] [PATCH 3/9] gnu: kconfigwidgets: Make QDirIterator follow symlinks., Hartmut Goebel, 2018/12/21
- [bug#33820] [PATCH 4/9] gnu: kdelibs4support: Add todo comment for a patch from NixOS., Hartmut Goebel, 2018/12/21
- [bug#33820] [PATCH 5/9] gnu: kio: Search 'smbd' on $PATH., Hartmut Goebel, 2018/12/21
- [bug#33820] [PATCH 7/9] gnu: kinit: Use LIBRARY_PATH to search for dynamically loaded libs., Hartmut Goebel, 2018/12/21
- [bug#33820] [PATCH 2/9] gnu: kcmutils: Print plugin name when loading fails., Hartmut Goebel, 2018/12/21