gnu: bluedevil: Update to 5.27.6.
* gnu/packages/kde-plasma.scm (bluedevil): Update to 5.27.6. [native-inputs]: Add tzdata-for-tests. [arguments]: Set "TZDIR" in the check phase. Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
This commit is contained in:
parent
70acb47df1
commit
cd8e07e7cb
1 changed files with 11 additions and 6 deletions
|
@ -76,6 +76,7 @@
|
||||||
#:use-module (gnu packages qt)
|
#:use-module (gnu packages qt)
|
||||||
#:use-module (gnu packages xdisorg)
|
#:use-module (gnu packages xdisorg)
|
||||||
#:use-module (gnu packages xorg)
|
#:use-module (gnu packages xorg)
|
||||||
|
#:use-module (gnu packages base)
|
||||||
#:use-module (gnu packages web))
|
#:use-module (gnu packages web))
|
||||||
|
|
||||||
(define-public bluedevil
|
(define-public bluedevil
|
||||||
|
@ -424,23 +425,27 @@ KDE Frameworks 5 to better interact with the system.")
|
||||||
(define-public kdeplasma-addons
|
(define-public kdeplasma-addons
|
||||||
(package
|
(package
|
||||||
(name "kdeplasma-addons")
|
(name "kdeplasma-addons")
|
||||||
(version "5.25.5")
|
(version "5.27.6")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "mirror://kde/stable/plasma/" version
|
(uri (string-append "mirror://kde/stable/plasma/" version
|
||||||
"/" name "-" version ".tar.xz"))
|
"/" name "-" version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1a5cq0jz69hlcr22wxi2p5mzxv5xcp88220irxmq0dhpk85kywlx"))))
|
"11zhpb4gcz4yy2v0j8mfzihi9rj35f83i8bi7iirix0vm100sfrl"))))
|
||||||
(build-system qt-build-system)
|
(build-system qt-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
(list #:phases #~(modify-phases %standard-phases
|
(list #:phases #~(modify-phases %standard-phases
|
||||||
(replace 'check
|
(replace 'check
|
||||||
(lambda* (#:key tests? #:allow-other-keys)
|
(lambda* (#:key tests? inputs #:allow-other-keys)
|
||||||
|
|
||||||
(when tests?
|
(when tests?
|
||||||
|
(setenv "TZDIR"
|
||||||
|
(search-input-directory
|
||||||
|
inputs "share/zoneinfo"))
|
||||||
(invoke "ctest" "-E"
|
(invoke "ctest" "-E"
|
||||||
"(converterrunnertest|spellcheckrunnertest)")))))))
|
"(converterrunnertest)")))))))
|
||||||
(native-inputs (list extra-cmake-modules))
|
(native-inputs (list extra-cmake-modules tzdata-for-tests))
|
||||||
(inputs (list karchive
|
(inputs (list karchive
|
||||||
kconfig
|
kconfig
|
||||||
kcoreaddons
|
kcoreaddons
|
||||||
|
@ -457,8 +462,8 @@ KDE Frameworks 5 to better interact with the system.")
|
||||||
plasma-framework
|
plasma-framework
|
||||||
purpose
|
purpose
|
||||||
sonnet
|
sonnet
|
||||||
|
;; qtwebengine-5 ; Optional for online dictionary
|
||||||
qtdeclarative-5))
|
qtdeclarative-5))
|
||||||
;qtwebengine-5)) ;; Optional for online dictionary
|
|
||||||
(synopsis "Add-ons to improve your Plasma experience")
|
(synopsis "Add-ons to improve your Plasma experience")
|
||||||
(description
|
(description
|
||||||
"This package provides multiple addons for the Plasma Desktop.")
|
"This package provides multiple addons for the Plasma Desktop.")
|
||||||
|
|
Reference in a new issue