guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 67fe7a6118e373da821907894c0557214bd02cb8
Author: Sughosha <[email protected]>
AuthorDate: Wed Dec 24 14:40:37 2025 +0530
gnu: kcontacts: Update to 6.21.0.
* gnu/packages/kde-frameworks.scm (kcontacts): 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: Iafdfa4802129e29e857066b3e3eeb61f88f5479e
---
gnu/packages/kde-frameworks.scm | 10 ++++++----
1 file changed, 6 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 8af3c046bd..3a37d5f711 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -2283,7 +2283,7 @@ integrated it into your application's other widgets.")
(define-public kcontacts
(package
(name "kcontacts")
- (version "6.19.0")
+ (version "6.21.0")
(source (origin
(method url-fetch)
(uri (string-append
@@ -2294,7 +2294,7 @@ integrated it into your application's other widgets.")
(search-patches "kcontacts-incorrect-country-name.patch"))
(sha256
(base32
- "0jarixqjmjxcxjx673qjrj0rvzrpy5hxj2dh94s0w1c8v7rk5l69"))))
+ "0r5gc9hlg6mii6zff7iz67f3879vdds32i5icrivd03n1pqpigx6"))))
(build-system qt-build-system)
(native-inputs (list extra-cmake-modules
;; for test
@@ -2306,14 +2306,16 @@ integrated it into your application's other widgets.")
(arguments
(list
#:qtbase qtbase
+ #:test-exclude "kcontacts-addresstest"
#:phases
#~(modify-phases %standard-phases
(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)
(when tests?
- (invoke "ctest" "-E" "(kcontacts-addresstest)"
+ (invoke "ctest" "-E" test-exclude
"--rerun-failed" "--output-on-failure"
"-j" (if parallel-tests?
(number->string (parallel-job-count))