gnu: evolution-data-server: Update to 3.24.2.
* gnu/packages/gnome.scm (evolution-data-server): Update to 3.24.2. [build-system]: Change to CMAKE-BUILD-SYSTEM. [arguments]<#:configure-flags>: Adjust accordingly. Enable introspection. <#:phases>: Patch tests after unpack. [native-inputs]: Change PYTHON to PYTHON-WRAPPER. [inputs]: Add MIT-KRB5 and OPENLDAP.
This commit is contained in:
parent
8f37813e8a
commit
743aebd78d
1 changed files with 15 additions and 18 deletions
|
@ -46,6 +46,7 @@
|
||||||
#:use-module (guix download)
|
#:use-module (guix download)
|
||||||
#:use-module (guix git-download)
|
#:use-module (guix git-download)
|
||||||
#:use-module (guix utils)
|
#:use-module (guix utils)
|
||||||
|
#:use-module (guix build-system cmake)
|
||||||
#:use-module (guix build-system gnu)
|
#:use-module (guix build-system gnu)
|
||||||
#:use-module (guix build-system glib-or-gtk)
|
#:use-module (guix build-system glib-or-gtk)
|
||||||
#:use-module (guix build-system trivial)
|
#:use-module (guix build-system trivial)
|
||||||
|
@ -4449,7 +4450,7 @@ Exchange, Last.fm, IMAP/SMTP, Jabber, SIP and Kerberos.")
|
||||||
(define-public evolution-data-server
|
(define-public evolution-data-server
|
||||||
(package
|
(package
|
||||||
(name "evolution-data-server")
|
(name "evolution-data-server")
|
||||||
(version "3.22.3")
|
(version "3.24.2")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "mirror://gnome/sources/" name "/"
|
(uri (string-append "mirror://gnome/sources/" name "/"
|
||||||
|
@ -4457,26 +4458,20 @@ Exchange, Last.fm, IMAP/SMTP, Jabber, SIP and Kerberos.")
|
||||||
name "-" version ".tar.xz"))
|
name "-" version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0kygd46s0is6i451bqykagrfx34wjvrgjbjyyszaabnppp1dyn0c"))))
|
"1ywqy939n27v3kchlnyxs6ikhjxmlasv6f08ap4bldgr121vkfx9"))))
|
||||||
(build-system gnu-build-system)
|
(build-system cmake-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(;; XXX: fails with:
|
'(;; XXX FIXME: 11/85 tests are failing.
|
||||||
;; /Fixture/Calendar0: cleaning up pid xxxx
|
|
||||||
;; t status: 139)
|
|
||||||
#:tests? #f
|
#:tests? #f
|
||||||
#:configure-flags
|
#:configure-flags
|
||||||
(let ((nss (assoc-ref %build-inputs "nss"))
|
(list "-DENABLE_UOA=OFF" ;disable Ubuntu Online Accounts support
|
||||||
(nspr (assoc-ref %build-inputs "nspr")))
|
"-DENABLE_GOOGLE=OFF" ;disable Google Contacts support
|
||||||
(list "--disable-uoa" ; disable Ubuntu Online Accounts support
|
"-DENABLE_GOOGLE_AUTH=OFF" ;disable Google authentication
|
||||||
"--disable-google" ; disable Google Contacts support
|
"-DENABLE_VALA_BINDINGS=ON"
|
||||||
"--disable-google-auth" ; disable Google authentication
|
"-DENABLE_INTROSPECTION=ON") ;required for Vala bindings
|
||||||
"--enable-vala-bindings"
|
|
||||||
(string-append "--with-nspr-includes=" nspr "/include/nspr")
|
|
||||||
(string-append "--with-nss-includes=" nss "/include/nss")
|
|
||||||
(string-append "--with-nss-libs=" nss "/lib/nss")))
|
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-before 'check 'pre-check
|
(add-after 'unpack 'patch-paths
|
||||||
(lambda _
|
(lambda _
|
||||||
(substitute* "tests/test-server-utils/e-test-server-utils.c"
|
(substitute* "tests/test-server-utils/e-test-server-utils.c"
|
||||||
(("/bin/rm") (which "rm")))
|
(("/bin/rm") (which "rm")))
|
||||||
|
@ -4488,7 +4483,7 @@ Exchange, Last.fm, IMAP/SMTP, Jabber, SIP and Kerberos.")
|
||||||
("intltool" ,intltool)
|
("intltool" ,intltool)
|
||||||
("pkg-config" ,pkg-config)
|
("pkg-config" ,pkg-config)
|
||||||
("vala" ,vala)
|
("vala" ,vala)
|
||||||
("python" ,python)))
|
("python" ,python-wrapper)))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
;; These are all in the Requires field of .pc files.
|
;; These are all in the Requires field of .pc files.
|
||||||
`(("gtk+" ,gtk+)
|
`(("gtk+" ,gtk+)
|
||||||
|
@ -4501,7 +4496,9 @@ Exchange, Last.fm, IMAP/SMTP, Jabber, SIP and Kerberos.")
|
||||||
`(("bdb" ,bdb)
|
`(("bdb" ,bdb)
|
||||||
("gcr" ,gcr)
|
("gcr" ,gcr)
|
||||||
("gnome-online-accounts" ,gnome-online-accounts)
|
("gnome-online-accounts" ,gnome-online-accounts)
|
||||||
("libgweather" ,libgweather)))
|
("libgweather" ,libgweather)
|
||||||
|
("mit-krb5" ,mit-krb5)
|
||||||
|
("openldap" ,openldap)))
|
||||||
(synopsis "Store address books and calendars")
|
(synopsis "Store address books and calendars")
|
||||||
(home-page "https://wiki.gnome.org/Apps/Evolution")
|
(home-page "https://wiki.gnome.org/Apps/Evolution")
|
||||||
(description
|
(description
|
||||||
|
|
Reference in a new issue