mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-31 16:42:38 -05:00
gnu: evolution-data-server: Update to 3.45.3.
* gnu/packages/gnome.scm (evolution-data-server): Update to 3.45.3. [configure-flags]: Add -DENABLE_OAUTH2_WEBKITGTK4=OFF. [native-inputs]: Sort. [propagated-inputs]: Add glib, gtk and json-glib. Replace libsoup-minimal-2 with libsoup. [inputs]: Replace libgweather with libgweather4. Replace webkitgtk-with-libsoup2 with webkitgtk. Add pango-next. (evolution-data-server-3.44): New variable.
This commit is contained in:
parent
ad519b73e2
commit
629172258d
1 changed files with 38 additions and 9 deletions
|
@ -7957,7 +7957,7 @@ (define-public gnome-online-accounts-3.44
|
||||||
(define-public evolution-data-server
|
(define-public evolution-data-server
|
||||||
(package
|
(package
|
||||||
(name "evolution-data-server")
|
(name "evolution-data-server")
|
||||||
(version "3.44.4")
|
(version "3.45.3")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
|
@ -7965,7 +7965,7 @@ (define-public evolution-data-server
|
||||||
(version-major+minor version) "/"
|
(version-major+minor version) "/"
|
||||||
name "-" version ".tar.xz"))
|
name "-" version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1sxjrjr31wqbp9g4pf6dwj8rc4mi7c5fbfd489ha92ym7246bin0"))))
|
(base32 "1zjg9b77qmfin9m16rqa6cpqp1rh63pg3bcnkh25vmklslwhvq7a"))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
(list
|
(list
|
||||||
|
@ -7981,7 +7981,8 @@ (define-public evolution-data-server
|
||||||
(string-append "-DCMAKE_INSTALL_RPATH=" lib ";"
|
(string-append "-DCMAKE_INSTALL_RPATH=" lib ";"
|
||||||
(string-append lib "/evolution-data-server;")
|
(string-append lib "/evolution-data-server;")
|
||||||
(string-join runpaths ";"))
|
(string-join runpaths ";"))
|
||||||
"-DENABLE_INTROSPECTION=ON" ;required for Vala bindings
|
"-DENABLE_INTROSPECTION=ON" ;required for Vala bindings
|
||||||
|
"-DENABLE_OAUTH2_WEBKITGTK4=OFF" ;requires webkitgtk-next
|
||||||
"-DWITH_PHONENUMBER=ON"))
|
"-DWITH_PHONENUMBER=ON"))
|
||||||
#:phases
|
#:phases
|
||||||
#~(modify-phases %standard-phases
|
#~(modify-phases %standard-phases
|
||||||
|
@ -8013,14 +8014,17 @@ (define-public evolution-data-server
|
||||||
intltool
|
intltool
|
||||||
pkg-config
|
pkg-config
|
||||||
protobuf
|
protobuf
|
||||||
vala
|
python-wrapper
|
||||||
python-wrapper))
|
vala))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
;; These are all in the Requires field of .pc files.
|
;; These are all in the Requires field of .pc files.
|
||||||
(list gtk+
|
(list glib
|
||||||
|
gtk
|
||||||
|
gtk+
|
||||||
|
json-glib
|
||||||
libical
|
libical
|
||||||
libsecret
|
libsecret
|
||||||
libsoup-minimal-2
|
libsoup
|
||||||
nss
|
nss
|
||||||
sqlite))
|
sqlite))
|
||||||
(inputs
|
(inputs
|
||||||
|
@ -8030,11 +8034,12 @@ (define-public evolution-data-server
|
||||||
gnome-online-accounts
|
gnome-online-accounts
|
||||||
json-glib
|
json-glib
|
||||||
libcanberra
|
libcanberra
|
||||||
libgweather
|
libgweather4
|
||||||
libphonenumber
|
libphonenumber
|
||||||
mit-krb5
|
mit-krb5
|
||||||
openldap
|
openldap
|
||||||
webkitgtk-with-libsoup2))
|
pango-next ;remove after it's the default
|
||||||
|
webkitgtk))
|
||||||
(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
|
||||||
|
@ -8043,6 +8048,30 @@ (define-public evolution-data-server
|
||||||
Evolution (hence the name), but is now used by other packages as well.")
|
Evolution (hence the name), but is now used by other packages as well.")
|
||||||
(license license:lgpl2.0)))
|
(license license:lgpl2.0)))
|
||||||
|
|
||||||
|
;;; This version can be used for projects with dependencies stuck on libsoup2.
|
||||||
|
(define-public evolution-data-server-3.44
|
||||||
|
(package
|
||||||
|
(inherit evolution-data-server)
|
||||||
|
(name "evolution-data-server")
|
||||||
|
(version "3.44.4")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "mirror://gnome/sources/" name "/"
|
||||||
|
(version-major+minor version) "/"
|
||||||
|
name "-" version ".tar.xz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "1sxjrjr31wqbp9g4pf6dwj8rc4mi7c5fbfd489ha92ym7246bin0"))))
|
||||||
|
(inputs
|
||||||
|
(modify-inputs (package-inputs evolution-data-server)
|
||||||
|
(replace "gnome-online-accounts" gnome-online-accounts-3.44)
|
||||||
|
(replace "libgweather4" libgweather)
|
||||||
|
(replace "webkitgtk" webkitgtk-with-libsoup2)))
|
||||||
|
(propagated-inputs
|
||||||
|
(modify-inputs (package-propagated-inputs evolution-data-server)
|
||||||
|
(delete "gtk")
|
||||||
|
(replace "libsoup" libsoup-minimal-2)))))
|
||||||
|
|
||||||
(define-public caribou
|
(define-public caribou
|
||||||
(package
|
(package
|
||||||
(name "caribou")
|
(name "caribou")
|
||||||
|
|
Loading…
Reference in a new issue