diff options
author | Eric Bavier <bavier@member.fsf.org> | 2014-07-02 13:58:02 -0500 |
---|---|---|
committer | Eric Bavier <bavier@member.fsf.org> | 2014-07-02 13:58:02 -0500 |
commit | 59bad04fe4dd3f030ac1e11530799a96cdc121e8 (patch) | |
tree | d984408411e661ab7d888b4580849a395111a775 /gnu/packages/glib.scm | |
parent | f1fc45a9fd168f3b44f03112815bda83d2c6f3ed (diff) | |
download | guix-59bad04fe4dd3f030ac1e11530799a96cdc121e8.tar.gz |
gnu: glib: Upgrade to 2.40.0.
* gnu/packages/glib.scm (glib)[source]: Upgrade to 2.40.0. Adjust patch list. * gnu/packages/patches/glib-tests-newnet.patch: Remove. * gnu/packages/patches/glib-tests-desktop.patch: Adjust for 2.40.0.
Diffstat (limited to 'gnu/packages/glib.scm')
-rw-r--r-- | gnu/packages/glib.scm | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/gnu/packages/glib.scm b/gnu/packages/glib.scm index 59efc6eaf5..c3b0b39f10 100644 --- a/gnu/packages/glib.scm +++ b/gnu/packages/glib.scm @@ -106,18 +106,17 @@ shared NFS home directories.") (define glib (package (name "glib") - (version "2.39.1") + (version "2.40.0") (source (origin (method url-fetch) (uri (string-append "mirror://gnome/sources/" name "/" (string-take version 4) "/" name "-" version ".tar.xz")) (sha256 - (base32 "0lqi6z47068vgh91fm59jn0kq969wf3g2q8k4m33jsb0amprg36h")) + (base32 "1d98mbqjmc34s8095lkw1j1bwvnnkw9581yfvjaikjvfjsaz29qd")) (patches (list (search-patch "glib-tests-homedir.patch") (search-patch "glib-tests-desktop.patch") - (search-patch "glib-tests-prlimit.patch") - (search-patch "glib-tests-newnet.patch"))))) + (search-patch "glib-tests-prlimit.patch"))))) (build-system gnu-build-system) (outputs '("out" ; everything "bin" ; glib-mkenums, gtester, etc.; depends on Python @@ -128,7 +127,7 @@ shared NFS home directories.") ("zlib" ,zlib) ("tzdata" ,tzdata))) ; for tests/gdatetime.c (native-inputs - `(("gettext" ,gnu-gettext) + `(("gettext" ,gnu-gettext) ("dbus" ,dbus) ; for GDBus tests ("pkg-config" ,pkg-config) ("python" ,python-wrapper) |