~ruther/guix-local

cbe476786de3d10e213955a475a237988b30d0d3 — Sughosha 5 months ago 00e6be8
gnu: kio-fuse: Update to 5.1.1.

* gnu/packages/kde-systemtools.scm (kio-fuse): Update to 5.1.1.
[arguments]<#:tests?>: Disable.
<#:phases>: Do not replace the 'check phase.

Change-Id: I31bee5c279c4b17c9530e875297b5b9f9a47794d
1 files changed, 4 insertions(+), 12 deletions(-)

M gnu/packages/kde-systemtools.scm
M gnu/packages/kde-systemtools.scm => gnu/packages/kde-systemtools.scm +4 -12
@@ 264,27 264,19 @@ document meta data file.")
(define-public kio-fuse
  (package
    (name "kio-fuse")
    (version "5.1.0")
    (version "5.1.1")
    (source (origin
              (method url-fetch)
              (uri (string-append "mirror://kde/stable/kio-fuse/kio-fuse-"
                                  version ".tar.xz"))
              (sha256
               (base32
                "0jz9952dd20sw0c25pyn2l86nmc1s5l42gxk4js1jnkx4a0la43x"))))
                "051xfqfygq11dg6l6522h097raf0yc0sr4vaf5z9ih2mw1yamxmd"))))
    (build-system cmake-build-system)
    (arguments
     (list
      #:configure-flags #~(list "-DQT_MAJOR_VERSION=6")
      #:phases #~(modify-phases %standard-phases
                   (replace 'check
                     (lambda* (#:key tests? #:allow-other-keys)
                       (when tests?
                         (setenv "HOME" (getcwd))
                         (setenv "XDG_RUNTIME_DIR" (getcwd))
                         (setenv "QT_QPA_PLATFORM" "offscreen")
                         (invoke "dbus-launch" "ctest" "-E"
                                 "(fileopstest-cache|fileopstest-filejob)")))))))
      #:tests? #f ;no tests
      #:configure-flags #~(list "-DQT_MAJOR_VERSION=6")))
    (native-inputs (list dbus extra-cmake-modules pkg-config))
    (inputs (list fuse kio kcoreaddons qtbase))
    (home-page "https://community.kde.org/Frameworks")