mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 06:36:37 -05:00
gnu: akonadi-search: Update to 24.05.2.
* gnu/packages/kde-pim.scm (akonadi-search): Update to 24.05.2. [inputs]: Remove qtbase-5; add ktextaddons and kxmlgui. [arguments]: Set #:qtbase to qtbase; Use Gexps. Change-Id: I16cb7d0987f1a400175bc3a9a92dad8daef2d5bf
This commit is contained in:
parent
6532b973ef
commit
241971dffe
1 changed files with 21 additions and 17 deletions
|
@ -315,14 +315,14 @@ (define-public akonadi-notes
|
|||
(define-public akonadi-search
|
||||
(package
|
||||
(name "akonadi-search")
|
||||
(version "23.04.3")
|
||||
(version "24.05.2")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://kde/stable/release-service/" version
|
||||
"/src/akonadi-search-" version ".tar.xz"))
|
||||
(sha256
|
||||
(base32 "1hpclfcb7almvajscm2az36bw9rrhkp3ywb9h0j9h8ims2gm60m7"))))
|
||||
(base32 "11lasaim65d37n0q8pyxnn0sqqq2liz6va951qc3bav8njigsny1"))))
|
||||
(build-system qt-build-system)
|
||||
(native-inputs
|
||||
(list extra-cmake-modules
|
||||
|
@ -337,29 +337,33 @@ (define-public akonadi-search
|
|||
kcontacts
|
||||
kcrash
|
||||
kdbusaddons
|
||||
ktextaddons
|
||||
ki18n
|
||||
kio
|
||||
kitemmodels
|
||||
kmime
|
||||
kxmlgui
|
||||
krunner
|
||||
kwindowsystem
|
||||
qtbase-5
|
||||
xapian))
|
||||
(arguments
|
||||
`(#: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)
|
||||
(when tests?
|
||||
(invoke "dbus-launch" "ctest" "-E"
|
||||
"akonadi-sqlite-collectionindexingjobtest")))))))
|
||||
(list
|
||||
#:qtbase qtbase
|
||||
#: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)
|
||||
(when tests?
|
||||
(invoke "dbus-launch" "ctest" "-E"
|
||||
"akonadi-sqlite-collectionindexingjobtest")))))))
|
||||
(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
|
||||
|
|
Loading…
Reference in a new issue