guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 09aebb9ca5ba2a5a97b8b5ab54afe3023f21e317
Author: Sughosha <[email protected]>
AuthorDate: Wed Dec 24 14:40:28 2025 +0530
gnu: karchive: Update to 6.21.0.
* gnu/packages/kde-frameworks.scm (karchive): 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: If69acba134b326c6210edf6055a77a83a4d13ebf
---
gnu/packages/kde-frameworks.scm | 16 +++++++++-------
1 file changed, 9 insertions(+), 7 deletions(-)
diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 6fbccb6349..98d1f2ac10 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -544,7 +544,7 @@ documentation.")
(define-public karchive
(package
(name "karchive")
- (version "6.19.0")
+ (version "6.21.0")
(source (origin
(method url-fetch)
(uri (string-append "mirror://kde/stable/frameworks/"
@@ -552,14 +552,16 @@ documentation.")
"/" name "-" version ".tar.xz"))
(sha256
(base32
- "17iaa5a2visic1y07hkkg4s01l96nx8gszq8pp72iqfh0bc34hwl"))))
+ "1i66n5mvvniqn0qbpcmj16hbggbji0cmr0mw8b286l0h0kcwrxx5"))))
(build-system cmake-build-system)
(arguments
- (list #:phases #~(modify-phases %standard-phases
- (replace 'check
- (lambda* (#:key tests? #:allow-other-keys)
- (when tests?
- (invoke "ctest" "-E" "karchivetest")))))))
+ (list #:test-exclude "karchivetest"
+ #:phases
+ #~(modify-phases %standard-phases
+ (replace 'check
+ (lambda* (#:key tests? test-exclude #:allow-other-keys)
+ (when tests?
+ (invoke "ctest" "-E" test-exclude)))))))
(native-inputs
(list extra-cmake-modules pkg-config qttools))
(inputs (list bzip2 openssl qtbase xz zlib `(,zstd "lib")))