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

commit 511a0a269faa48735bd45829a50e424409e61d59
Author: Sughosha <[email protected]>
AuthorDate: Sat Sep 20 17:48:32 2025 +0530

    gnu: akonadi-search: Update to 25.08.1.
    
    * gnu/packages/kde-pim.scm (akonadi-search): Update to 25.08.1.
    [arguments]<#:test-exclude>: Exclude
    "akonadi-sqlite-collectionindexingjobtest".
    <#:phases>: In 'check phase, replace the tests to exclude with the 
test-exclude
    keyword.
    
    Change-Id: Iac49dbed74120a928cd4d27e51f2d19c1a1a5c66
---
 gnu/packages/kde-pim.scm | 17 +++++++++--------
 1 file changed, 9 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/kde-pim.scm b/gnu/packages/kde-pim.scm
index 9e17e817be..def9f84692 100644
--- a/gnu/packages/kde-pim.scm
+++ b/gnu/packages/kde-pim.scm
@@ -387,14 +387,14 @@ wrapping notes into KMime::Message objects.")
 (define-public akonadi-search
   (package
     (name "akonadi-search")
-    (version "24.12.1")
+    (version "25.08.1")
     (source
      (origin
        (method url-fetch)
        (uri (string-append "mirror://kde/stable/release-service/" version
                            "/src/akonadi-search-" version ".tar.xz"))
        (sha256
-        (base32 "03kjm3s3zy2lb8qyazpsy5vys17dkbz2jj8hqj40b36w3f6fv55y"))))
+        (base32 "1fdwzfs43vqz3kmwaz45h27lap9rsfpl4w7qmq5211qbw2wxdxf7"))))
     (build-system qt-build-system)
     (native-inputs
      (list extra-cmake-modules
@@ -421,21 +421,22 @@ wrapping notes into KMime::Message objects.")
     (arguments
      (list
       #:qtbase qtbase
+      ;; FIXME: This test fails because it fails to establish a socket
+      ;; connection, seemingly due to failure during DBus communication.  See
+      ;; also 'korganizer'.
+      #:test-exclude "akonadi-sqlite-collectionindexingjobtest"
       #:phases
       #~(modify-phases %standard-phases
           (add-after 'unpack 'disable-failing-test
             (lambda _
-              ;; FIXME: This test fails because it fails to establish
-              ;; a socket connection, seemingly due to failure during
-              ;; DBus communication.  See also 'korganizer'.
+
               (substitute* "agent/autotests/CMakeLists.txt"
                 ((".*schedulertest\\.cpp.*")
                  ""))))
           (replace 'check
-            (lambda* (#:key tests? #:allow-other-keys)
+            (lambda* (#:key tests? (test-exclude "") #:allow-other-keys)
               (when tests?
-                (invoke "dbus-launch" "ctest" "-E"
-                        "akonadi-sqlite-collectionindexingjobtest")))))))
+                (invoke "dbus-launch" "ctest" "-E" test-exclude)))))))
     (home-page "https://api.kde.org/kdepim/akonadi/html/index.html";)
     (synopsis "Akonadi search library")
     (description "This package provides a library used to search in the

Reply via email to