guix_mirror_bot pushed a commit to branch kde-team
in repository guix.
commit 826ae7dcfa34200a560fb8a1a5944fe3f380514d
Author: Sughosha <[email protected]>
AuthorDate: Sat Sep 20 17:55:01 2025 +0530
gnu: kincidenceeditor: Update to 25.08.1.
* gnu/packages/kde-pim.scm (kincidenceeditor): Update to 25.08.1.
[arguments]<#:test-exclude>: Exclude "akonadi-sqlite-incidencedatetimetest",
"ktimezonecomboboxtest" and "testindividualmaildialog".
<#:phases>: In 'check phase, replace the tests to exclude with the
test-exclude
keyword.
Change-Id: I4a2092a44feb4c2dda94b15daf09733af695044d
---
gnu/packages/kde-pim.scm | 18 ++++++++++++------
1 file changed, 12 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/kde-pim.scm b/gnu/packages/kde-pim.scm
index 6a0c05f365..083b9eece8 100644
--- a/gnu/packages/kde-pim.scm
+++ b/gnu/packages/kde-pim.scm
@@ -571,14 +571,14 @@ information.")
(define-public kincidenceeditor
(package
(name "kincidenceeditor")
- (version "24.12.1")
+ (version "25.08.1")
(source
(origin
(method url-fetch)
(uri (string-append "mirror://kde/stable/release-service/" version
"/src/incidenceeditor-" version ".tar.xz"))
(sha256
- (base32 "13knf50ds2shjps93v5z8dvh19cx820gfh2dk5wlpz3sdcmh5hw9"))))
+ (base32 "1m8bwk1vvhbygriaivdbs845j43zl1favdsimwbkddvmk4wpamp1"))))
(properties `((upstream-name . "incidenceeditor")))
(build-system qt-build-system)
(native-inputs
@@ -619,14 +619,20 @@ information.")
(arguments
(list
#:qtbase qtbase
+ ;; FIXME: These tests fail.
+ #:test-exclude
+ (string-append "("
+ (string-join '("akonadi-sqlite-incidencedatetimetest"
+ "ktimezonecomboboxtest"
+ "testindividualmaildialog")
+ "|")
+ ")")
#:phases
#~(modify-phases %standard-phases
(replace 'check
- (lambda* (#:key tests? #:allow-other-keys)
+ (lambda* (#:key tests? (test-exclude "") #:allow-other-keys)
(when tests?
- (invoke "dbus-launch" "ctest" ;; FIXME: tests fails.
- "-E"
-
"(akonadi-sqlite-incidencedatetimetest|ktimezonecomboboxtest|testindividualmaildialog)")))))))
+ (invoke "dbus-launch" "ctest" "-E" test-exclude)))))))
(home-page "https://invent.kde.org/pim/incidenceeditor")
(synopsis "KDE PIM library for editing incidences")
(description "This library provides an incidence editor for KDE PIM.")