From beaa56b3e5755486d406b849a8c78c1e4570f708 Mon Sep 17 00:00:00 2001 From: Sughosha Date: Sat, 20 Sep 2025 17:55:01 +0530 Subject: [PATCH] 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 5f818fc904385514f01d28dcbaad325ac97a6e75..8dc66b4b5cc721f91c6b93ebfff06582e4f3f8f5 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.")