[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
43/49: gnu: evolution-data-server: Update to 3.30.2.
From: |
guix-commits |
Subject: |
43/49: gnu: evolution-data-server: Update to 3.30.2. |
Date: |
Sat, 4 May 2019 08:18:50 -0400 (EDT) |
rekado pushed a commit to branch wip-gnome3.30
in repository guix.
commit e904d0abdef1f46a74a0ec24a911e265c158bf9d
Author: Ricardo Wurmus <address@hidden>
Date: Thu Dec 6 23:11:43 2018 +0100
gnu: evolution-data-server: Update to 3.30.2.
* gnu/packages/gnome.scm (evolution-data-server): Update to 3.30.2.
[arguments]: Enable tests; add phase to disable failing tests; update phase
"patch-paths".
[inputs]: Add libcanberra.
---
gnu/packages/gnome.scm | 29 +++++++++++++++++++----------
1 file changed, 19 insertions(+), 10 deletions(-)
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 93546c3..c35afe5 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -5134,7 +5134,7 @@ Exchange, Last.fm, IMAP/SMTP, Jabber, SIP and Kerberos.")
(define-public evolution-data-server
(package
(name "evolution-data-server")
- (version "3.28.3")
+ (version "3.30.2")
(source (origin
(method url-fetch)
(uri (string-append "mirror://gnome/sources/" name "/"
@@ -5142,17 +5142,14 @@ Exchange, Last.fm, IMAP/SMTP, Jabber, SIP and
Kerberos.")
name "-" version ".tar.xz"))
(sha256
(base32
- "11sq795115vrcgxl9svscm6wg8isjj784c3d84qzb6z47zq92zj3"))))
+ "0h4f71kpf2ypdgifg369z35pk4cq99daw540yzjpax52grav2fjv"))))
(outputs '("out" "libedataserverui"))
(build-system cmake-build-system)
(arguments
- '(;; XXX FIXME: 11/85 tests are failing.
- #:tests? #f
- #:configure-flags
- (let* ((lib (string-append (assoc-ref %outputs "out")
- "/lib"))
- (runpaths (map (lambda (s) (string-append
- lib "/evolution-data-server/" s))
+ '(#:configure-flags
+ (let* ((lib (string-append (assoc-ref %outputs "out") "/lib"))
+ (runpaths (map (lambda (s)
+ (string-append lib "/evolution-data-server/" s))
'("addressbook-backends" "calendar-backends"
"camel-providers" "credential-modules"
"registry-modules"))))
@@ -5173,9 +5170,20 @@ Exchange, Last.fm, IMAP/SMTP, Jabber, SIP and Kerberos.")
"-DENABLE_INTROSPECTION=ON")) ;required for Vala bindings
#:phases
(modify-phases %standard-phases
+ (add-after 'unpack 'disable-failing-tests
+ (lambda _
+ ;; tests/book-migration/test-migration.c:160:test_fetch_contacts:
+ ;; assertion failed (g_slist_length (contacts) == 20): (0 == 20)
+ (delete-file-recursively "tests/book-migration")
+ (substitute* "tests/CMakeLists.txt"
+ (("add_subdirectory\\(book-migration\\)") ""))
+ #t))
(add-after 'unpack 'patch-paths
(lambda _
- (substitute* "tests/test-server-utils/e-test-server-utils.c"
+ (substitute* '("tests/test-server-utils/e-test-server-utils.c"
+ "tests/libedata-book/data-test-utils.c"
+ "tests/libedata-book/test-book-cache-utils.c"
+ "tests/libedata-cal/test-cal-cache-utils.c")
(("/bin/rm") (which "rm")))
#t))
(add-before 'configure 'dont-override-rpath
@@ -5227,6 +5235,7 @@ Exchange, Last.fm, IMAP/SMTP, Jabber, SIP and Kerberos.")
("gcr" ,gcr)
("gnome-online-accounts:lib" ,gnome-online-accounts "lib")
("json-glib" ,json-glib)
+ ("libcanberra" ,libcanberra)
("libgweather" ,libgweather)
("mit-krb5" ,mit-krb5)
("openldap" ,openldap)
- 45/49: gnu: gnome-online-accounts: Update to 3.30.0., (continued)
- 45/49: gnu: gnome-online-accounts: Update to 3.30.0., guix-commits, 2019/05/04
- 41/49: gnu: yelp-xsl: Update to 3.30.1., guix-commits, 2019/05/04
- 38/49: gnu: eog: Update to 3.28.4., guix-commits, 2019/05/04
- 39/49: gnu: epiphany: Update to 3.30.2., guix-commits, 2019/05/04
- 40/49: gnu: yelp: Update to 3.30.0., guix-commits, 2019/05/04
- 42/49: gnu: libgnome-games-support: Update to 1.4.2., guix-commits, 2019/05/04
- 49/49: gnu: gnome-shell: Update to 3.30.2., guix-commits, 2019/05/04
- 33/49: gnu: libgdata: Update to 0.17.9., guix-commits, 2019/05/04
- 47/49: gnu: gtksourceview: Update to 4.0.3., guix-commits, 2019/05/04
- 44/49: gnu: evolution-data-server: Do not split outputs., guix-commits, 2019/05/04
- 43/49: gnu: evolution-data-server: Update to 3.30.2.,
guix-commits <=