guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 7e91d0bf2077646cf61f85a25910a7ec4c8132a1
Author: Sughosha <[email protected]>
AuthorDate: Wed Dec 24 14:40:48 2025 +0530

    gnu: kdav: Update to 6.21.0.
    
    * gnu/packages/kde-frameworks.scm (kdav): Update to 6.21.0.
    [arguments]<#:test-exclude>: Exclude the failing tests.
    <#:phases>: In 'check phase, replace the tests to exclude with the 
test-exclude
    keyword.
    
    Change-Id: I2a91ff143535aacc5c0ceb9f531142fe7350e2c3
---
 gnu/packages/kde-frameworks.scm | 16 ++++++++++------
 1 file changed, 10 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 52f96b4385..ab4121e20f 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -4991,7 +4991,7 @@ support.")
 (define-public kdav
   (package
     (name "kdav")
-    (version "6.19.0")
+    (version "6.21.0")
     (source
      (origin
        (method url-fetch)
@@ -4999,7 +4999,7 @@ support.")
                            (version-major+minor version) "/"
                            name "-" version ".tar.xz"))
        (sha256
-        (base32 "14hax9kbwgvd18psxm99azgclsnnvfc9xid8q3zrjnlvgnlbjlvp"))))
+        (base32 "1qlsgy3g6d591m8yk9mbkr3vdx8fc5k1lbv8cbbbn134w4pa9bxm"))))
     (build-system qt-build-system)
     (native-inputs
      (list extra-cmake-modules))
@@ -5008,15 +5008,19 @@ support.")
      (list ki18n kio))
     (arguments
      (list
+      #:test-exclude
+      (string-append "("
+                     (string-join '("kdav-davcollectionsmultifetchjobtest"
+                                    "kdav-davitemfetchjob")
+                                  "|")
+                     ")")
       #:qtbase qtbase
       #:phases #~(modify-phases %standard-phases
                    (replace 'check
-                     (lambda* (#:key tests? #:allow-other-keys)
+                     (lambda* (#:key tests? test-exclude #:allow-other-keys)
                        (when tests?
                          ;; Seems to require network.
-                         (invoke "ctest" "-E"
-                                 "(kdav-davcollectionsmultifetchjobtest|\
-kdav-davitemfetchjob)")))))))
+                         (invoke "ctest" "-E" test-exclude)))))))
     (home-page "https://invent.kde.org/frameworks/kdav";)
     (synopsis "DAV protocol implementation with KJobs")
     (description "This is a DAV protocol implementation with KJobs.  Calendars

Reply via email to