gnu: akonadi-search: Allow skipping tests.
* gnu/packages/kde-pim.scm (akonadi-search)[arguments]: Have custom 'check phase honor #:tests?.
This commit is contained in:
parent
ec0e05ff30
commit
5bde487831
1 changed files with 4 additions and 2 deletions
|
@ -1,6 +1,7 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2017, 2019, 2020 Hartmut Goebel <h.goebel@crazy-compilers.com>
|
;;; Copyright © 2017, 2019, 2020 Hartmut Goebel <h.goebel@crazy-compilers.com>
|
||||||
;;; Copyright © 2020 Marius Bakke <marius@gnu.org>
|
;;; Copyright © 2020 Marius Bakke <marius@gnu.org>
|
||||||
|
;;; Copyright © 2021 Efraim Flashner <efraim@flashner.co.il>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -339,8 +340,9 @@ wrapping notes into KMime::Message objects.")
|
||||||
""))
|
""))
|
||||||
#t))
|
#t))
|
||||||
(replace 'check
|
(replace 'check
|
||||||
(lambda _
|
(lambda* (#:key tests? #:allow-other-keys)
|
||||||
(invoke "dbus-launch" "ctest"))))))
|
(when tests?
|
||||||
|
(invoke "dbus-launch" "ctest")))))))
|
||||||
(home-page "https://api.kde.org/kdepim/akonadi/html/index.html")
|
(home-page "https://api.kde.org/kdepim/akonadi/html/index.html")
|
||||||
(synopsis "Akonadi search library")
|
(synopsis "Akonadi search library")
|
||||||
(description "This package provides a library used to search in the
|
(description "This package provides a library used to search in the
|
||||||
|
|
Reference in a new issue