guix_mirror_bot pushed a commit to branch kde-team
in repository guix.

commit 7d36cde83b9bffc7543a754f46c300956ed86fb0
Author: Sughosha <[email protected]>
AuthorDate: Sat Sep 20 17:50:59 2025 +0530

    gnu: khealthcertificate: Update to 25.08.1.
    
    * gnu/packages/kde-pim.scm (khealthcertificate): Update to 25.08.1.
    [arguments]<#:test-exclude>: Exclude "icaovdsparsertest" and 
"eudgcparsertest".
    <#:phases>: In 'check phase, replace the tests to exclude with the 
test-exclude
    keyword.
    
    Change-Id: I77f78fb6d08f24eedfef91406e36e96b071c93ff
---
 gnu/packages/kde-pim.scm | 15 ++++++++++-----
 1 file changed, 10 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/kde-pim.scm b/gnu/packages/kde-pim.scm
index 0e7c08e13a..9c14fca53d 100644
--- a/gnu/packages/kde-pim.scm
+++ b/gnu/packages/kde-pim.scm
@@ -1164,27 +1164,32 @@ cryptography to the contents of the clipboard.")
 (define-public khealthcertificate
   (package
     (name "khealthcertificate")
-    (version "24.12.1")
+    (version "25.08.1")
     (source (origin
               (method url-fetch)
               (uri (string-append "mirror://kde/stable/release-service/" 
version
                                   "/src/khealthcertificate-" version 
".tar.xz"))
               (sha256
                (base32
-                "1vxlq0gfpg9q58963zm8fb5vsp16aicfqp0xgzdj5ad2pk1zgrkm"))))
+                "0ikpc57sld9mp16hk62a1kkspqkf3jszsik1i6813cqlnpnys730"))))
     (build-system qt-build-system)
     (arguments
      (list
       #:qtbase qtbase
+      #:test-exclude
+      (string-append "("
+                     (string-join '("icaovdsparsertest"
+                                    "eudgcparsertest")
+                                  "|")
+                     ")")
       #:phases
       #~(modify-phases %standard-phases
           (replace 'check
-            (lambda* (#:key inputs tests? #:allow-other-keys)
+            (lambda* (#:key inputs tests? (test-exclude "") #:allow-other-keys)
               (when tests?
                 (setenv "TZDIR"
                         (search-input-directory inputs "share/zoneinfo"))
-                (invoke "ctest" "-E"
-                        "(icaovdsparsertest|eudgcparsertest)")))))))
+                (invoke "ctest" "-E" test-exclude)))))))
     (native-inputs (list extra-cmake-modules pkg-config tzdata-for-tests))
     (inputs (list karchive
                   kcodecs

Reply via email to