gnu: kitemviews: Update to 5.27.0.

* gnu/packages/kde-frameworks.scm (kitemviews): Update to 5.27.0 and fix
  indentation.
This commit is contained in:
David Craven 2016-10-29 18:48:28 +02:00
parent 110e4bea7a
commit 701d7a9b50
No known key found for this signature in database
GPG Key ID: C5E051C79C0BECDB
1 changed files with 21 additions and 20 deletions

View File

@ -727,16 +727,16 @@ model to observers
(define-public kitemviews (define-public kitemviews
(package (package
(name "kitemviews") (name "kitemviews")
(version "5.24.0") (version "5.27.0")
(source (source (origin
(origin (method url-fetch)
(method url-fetch) (uri (string-append
(uri (string-append "mirror://kde/stable/frameworks/" "mirror://kde/stable/frameworks/"
(version-major+minor version) "/" (version-major+minor version) "/"
name "-" version ".tar.xz")) name "-" version ".tar.xz"))
(sha256 (sha256
(base32 (base32
"0y3fx9hk1x27arrmwfzq783a44cs7p8dpmhxrwzh0di4mwa8jafw")))) "1469i10y2c3i1pdhzl9nk177y4n1mlc7p5w7kivdcrvf9ilxvbkx"))))
(build-system cmake-build-system) (build-system cmake-build-system)
(native-inputs (native-inputs
`(("extra-cmake-modules" ,extra-cmake-modules) `(("extra-cmake-modules" ,extra-cmake-modules)
@ -746,16 +746,17 @@ model to observers
`(("qtbase" ,qtbase))) `(("qtbase" ,qtbase)))
(arguments (arguments
`(#:phases `(#:phases
(modify-phases %standard-phases (modify-phases %standard-phases
(add-before 'check 'check-setup (add-before 'check 'check-setup
(lambda* _ (lambda _
(setenv "DBUS_FATAL_WARNINGS" "0"))) (setenv "DBUS_FATAL_WARNINGS" "0")
(add-before 'check 'start-xorg-server #t))
(lambda* (#:key inputs #:allow-other-keys) (add-before 'check 'start-xorg-server
;; The test suite requires a running X server. (lambda* (#:key inputs #:allow-other-keys)
(system (string-append (assoc-ref inputs "xorg-server") ;; The test suite requires a running X server.
"/bin/Xvfb :1 &")) (system (string-append (assoc-ref inputs "xorg-server")
(setenv "DISPLAY" ":1") "/bin/Xvfb :1 &"))
(setenv "DISPLAY" ":1")
#t))))) #t)))))
(home-page "https://community.kde.org/Frameworks") (home-page "https://community.kde.org/Frameworks")
(synopsis "Set of item views extending the Qt model-view framework") (synopsis "Set of item views extending the Qt model-view framework")