[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
165/181: gnu: evolution: Update to 3.45.3.
From: |
guix-commits |
Subject: |
165/181: gnu: evolution: Update to 3.45.3. |
Date: |
Tue, 13 Sep 2022 02:26:32 -0400 (EDT) |
apteryx pushed a commit to branch master
in repository guix.
commit e4bf10ab0bc7c397fe7cbc52aea87d5ea2dfda7d
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Sun Sep 11 20:48:29 2022 -0400
gnu: evolution: Update to 3.45.3.
* gnu/packages/gnome.scm (evolution): Update to 3.45.3.
[arguments]: Use gexps.
[configure-flags]: Remove -DENABLE_LIBCRYPTUI=OFF, obsolete.
[phases]{patch-ui-module-dir}: Update phase.
[inputs]: Replace libgweather with libgweather4. Replace
webkitgtk-with-libsoup2 with webkitgtk. Remove libnotify.
---
gnu/packages/gnome.scm | 87 ++++++++++++++++++++++++++------------------------
1 file changed, 46 insertions(+), 41 deletions(-)
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index eb9412dab1..d375be34c2 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -11433,7 +11433,7 @@ generic enough to work for everyone.")
(define-public evolution
(package
(name "evolution")
- (version "3.42.1")
+ (version "3.45.3")
(source (origin
(method url-fetch)
(uri (string-append "mirror://gnome/sources/evolution/"
@@ -11441,53 +11441,58 @@ generic enough to work for everyone.")
"evolution-" version ".tar.xz"))
(sha256
(base32
- "0igfzapdvgfx2gnpwfkjfkn7l5j186wk88ni39vqas1sl7ijlls6"))))
+ "1q4fa5l7k0rax39iwn2spmzxcr2l73mj3644lf8j9mnp5w774c96"))))
(build-system cmake-build-system)
(arguments
- `(#:imported-modules (,@%cmake-build-system-modules
+ (list
+ #:imported-modules `(,@%cmake-build-system-modules
(guix build glib-or-gtk-build-system))
- #:modules ((guix build cmake-build-system)
+ #:modules '((guix build cmake-build-system)
((guix build glib-or-gtk-build-system) #:prefix glib-or-gtk:)
(guix build utils))
- #:configure-flags
- (list "-DENABLE_PST_IMPORT=OFF" ; libpst is not packaged
- "-DENABLE_LIBCRYPTUI=OFF") ; libcryptui hasn't seen a release
- ; in four years and cannot be built.
- #:phases
- (modify-phases %standard-phases
- ;; The build system attempts to install user interface modules to the
- ;; output directory of the "evolution-data-server" package. This
- ;; change redirects that change.
- (add-after 'unpack 'patch-ui-module-dir
- (lambda* (#:key outputs #:allow-other-keys)
- (substitute* "src/modules/alarm-notify/CMakeLists.txt"
- (("\\$\\{edsuimoduledir\\}")
- (string-append (assoc-ref outputs "out")
- "/lib/evolution-data-server/ui-modules")))))
- (add-after 'install 'glib-or-gtk-compile-schemas
- (assoc-ref glib-or-gtk:%standard-phases
'glib-or-gtk-compile-schemas))
- (add-after 'install 'glib-or-gtk-wrap
- (assoc-ref glib-or-gtk:%standard-phases 'glib-or-gtk-wrap)))))
+ #:configure-flags
+ #~(list "-DENABLE_PST_IMPORT=OFF") ;libpst is not packaged
+ #:phases
+ #~(modify-phases %standard-phases
+ ;; The build system attempts to install user interface modules to
+ ;; the output directory of the "evolution-data-server" package;
+ ;; patch it to install to the same location under #$output prefix.
+ (add-after 'unpack 'patch-ui-module-dir
+ (lambda* (#:key outputs #:allow-other-keys)
+ (substitute* "src/modules/alarm-notify/CMakeLists.txt"
+ (("\\$\\{edsuimoduledir\\}")
+ (string-append
+ #$output "/lib/evolution-data-server/ui-modules")))
+ (substitute* "src/modules/rss/camel/CMakeLists.txt"
+ (("\\$\\{camel_providerdir}")
+ (string-append
+ #$output "/lib/evolution-data-server/camel-providers")))))
+ (add-after 'install 'glib-or-gtk-compile-schemas
+ (assoc-ref glib-or-gtk:%standard-phases
'glib-or-gtk-compile-schemas))
+ (add-after 'install 'glib-or-gtk-wrap
+ (assoc-ref glib-or-gtk:%standard-phases 'glib-or-gtk-wrap)))))
(native-inputs
- (list `(,glib "bin") ; glib-mkenums
- pkg-config intltool itstool))
+ (list `(,glib "bin") ;glib-mkenums
+ intltool
+ itstool
+ pkg-config))
(inputs
- `(("enchant" ,enchant)
- ("evolution-data-server" ,evolution-data-server) ; must be the same
version
- ("gcr" ,gcr)
- ("gsettings-desktop-schemas" ,gsettings-desktop-schemas)
- ("gnome-autoar" ,gnome-autoar)
- ("gnome-desktop" ,gnome-desktop)
- ("gspell" ,gspell)
- ("highlight" ,highlight)
- ("libcanberra" ,libcanberra)
- ("libgweather" ,libgweather)
- ("libnotify" ,libnotify)
- ("libsoup" ,libsoup)
- ("nss" ,nss)
- ("openldap" ,openldap)
- ("webkitgtk" ,webkitgtk-with-libsoup2) ; because of
evolution-data-server
- ("ytnef" ,ytnef)))
+ (list cmark
+ enchant
+ evolution-data-server ;must be the same version
+ gcr
+ gsettings-desktop-schemas
+ gnome-autoar
+ gnome-desktop
+ gspell
+ highlight
+ libcanberra
+ libgweather4
+ libsoup
+ nss
+ openldap
+ webkitgtk
+ ytnef))
(home-page "https://gitlab.gnome.org/GNOME/evolution")
(synopsis "Manage your email, contacts and schedule")
(description "Evolution is a personal information management application
- 85/181: gnu: gnome-tweaks: Update to 40.10., (continued)
- 85/181: gnu: gnome-tweaks: Update to 40.10., guix-commits, 2022/09/13
- 54/181: gnu: libgweather4: Update to 4.1.1 and run tests., guix-commits, 2022/09/13
- 95/181: gnu: gssdp: Update to 1.5.2, guix-commits, 2022/09/13
- 115/181: gnu: devhelp: Update to 41.3., guix-commits, 2022/09/13
- 108/181: gnu: libwnck: Update to 40.1., guix-commits, 2022/09/13
- 158/181: gnu: jsonrpc-glib: Update to 3.42.0., guix-commits, 2022/09/13
- 170/181: gnu: Add folks-with-libsoup2., guix-commits, 2022/09/13
- 157/181: gnu: piper: Update to 0.7 and enable tests., guix-commits, 2022/09/13
- 169/181: gnu: libgweather: Use geocode-glib-with-libsoup2., guix-commits, 2022/09/13
- 164/181: gnu: evolution-data-server: Update to 3.45.3., guix-commits, 2022/09/13
- 165/181: gnu: evolution: Update to 3.45.3.,
guix-commits <=
- 172/181: gnu: chatty: Fix build., guix-commits, 2022/09/13
- 177/181: gnu: Add pkgconf., guix-commits, 2022/09/13
- 180/181: gnu: glade: Remove meson argument., guix-commits, 2022/09/13
- 179/181: gnu: gnome-2048: Remove input labels., guix-commits, 2022/09/13
- 77/181: gnu: gnome-sudoku: Update to 42.0., guix-commits, 2022/09/13