mirror of
https://codeberg.org/guix/guix.git
synced 2026-01-25 03:55:08 -06:00
gnu: kpackage: Update to 6.21.0.
* gnu/packages/kde-frameworks.scm (kpackage): Update to 6.21.0. [arguments]<#:test-exclude>: Exclude the failing test. <#:phases>: In 'check phase, replace the test to exclude with the test-exclude keyword. Change-Id: I57956876cfbdfb57877a71d7e8561c05c7cfe1dc
This commit is contained in:
parent
2c37b6141d
commit
eec6ff48ec
1 changed files with 6 additions and 5 deletions
|
|
@ -2734,7 +2734,7 @@ covers feedback and persistent events.")
|
|||
(define-public kpackage
|
||||
(package
|
||||
(name "kpackage")
|
||||
(version "6.19.0")
|
||||
(version "6.21.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
|
|
@ -2743,7 +2743,7 @@ covers feedback and persistent events.")
|
|||
name "-" version ".tar.xz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1780nw21q23cj2fghmjcqzdvmdrqcqrbyhv2lfyfpram169l3r4s"))))
|
||||
"0xiw0jm9ap1p68hi2zw63lcrwgi1j0bzqfps3pjr1b18gsq9cniw"))))
|
||||
(build-system cmake-build-system)
|
||||
(native-inputs
|
||||
(list extra-cmake-modules))
|
||||
|
|
@ -2759,6 +2759,7 @@ covers feedback and persistent events.")
|
|||
;; The `plasma-querytest' test is known to fail when tests are run in parallel:
|
||||
;; <https://sources.debian.org/src/kpackage/5.115.0-2/debian/changelog/#L109>
|
||||
#:parallel-tests? #f
|
||||
#:test-exclude "plasmoidpackagetest"
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-after 'unpack 'patch
|
||||
|
|
@ -2772,14 +2773,14 @@ covers feedback and persistent events.")
|
|||
(add-before 'check 'check-setup
|
||||
(lambda _ (setenv "HOME" (getcwd))))
|
||||
(replace 'check
|
||||
(lambda* (#:key tests? parallel-tests? #:allow-other-keys)
|
||||
(lambda* (#:key tests? parallel-tests? test-exclude
|
||||
#:allow-other-keys)
|
||||
(setenv "CTEST_OUTPUT_ON_FAILURE" "1")
|
||||
;; sometime plasmoidpackagetest will fail.
|
||||
(invoke "ctest" "--rerun-failed" "--output-on-failure"
|
||||
"-j" (if parallel-tests?
|
||||
(number->string (parallel-job-count))
|
||||
"1")
|
||||
"-E" "plasmoidpackagetest"))))))
|
||||
"-E" test-exclude))))))
|
||||
(home-page "https://community.kde.org/Frameworks")
|
||||
(synopsis "Installation and loading of additional content as packages")
|
||||
(description "The Package framework lets the user install and load packages
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue