From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:48643) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fCNxV-0001u0-F5 for guix-patches@gnu.org; Sat, 28 Apr 2018 07:24:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fCNxS-0007Ef-90 for guix-patches@gnu.org; Sat, 28 Apr 2018 07:24:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:33752) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fCNxS-0007EZ-4q for guix-patches@gnu.org; Sat, 28 Apr 2018 07:24:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fCNxR-0000O1-Ty for guix-patches@gnu.org; Sat, 28 Apr 2018 07:24:01 -0400 Subject: [bug#31301] [PATCH] gnu: glib: Update to 2.56.1. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:48590) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fCNx0-0001rj-N3 for guix-patches@gnu.org; Sat, 28 Apr 2018 07:23:35 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fCNwx-0007Bw-GT for guix-patches@gnu.org; Sat, 28 Apr 2018 07:23:34 -0400 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:52247) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fCNwx-0007Bs-BE for guix-patches@gnu.org; Sat, 28 Apr 2018 07:23:31 -0400 Received: from ip112-245-209-87.adsl2.static.versatel.nl ([87.209.245.112]:53423 helo=yellowstone) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1fCNww-00057c-9u for guix-patches@gnu.org; Sat, 28 Apr 2018 07:23:30 -0400 From: Roel Janssen Date: Sat, 28 Apr 2018 13:23:21 +0200 Message-ID: <87k1srmv6e.fsf@gnu.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 31301@debbugs.gnu.org --=-=-= Content-Type: text/plain Dear Guix, I'd like to update glib, as a starter for updating all things GNOME. This probably has a large impact on builds, so I'd like to know where and when we can apply this update. Kind regards, Roel Janssen --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0001-gnu-glib-Update-to-2.56.1.patch >From f57c9b1bb761a9cbc092e0db92147614334c7239 Mon Sep 17 00:00:00 2001 From: Roel Janssen Date: Sat, 28 Apr 2018 13:19:03 +0200 Subject: [PATCH 1/2] gnu: glib: Update to 2.56.1. * gnu/packages/glib.scm (glib): Update to 2.56.1 [arguments]: Disable test for guess_svg_from_data. --- gnu/packages/glib.scm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gnu/packages/glib.scm b/gnu/packages/glib.scm index 30a22d7d5..e4cedf2a3 100644 --- a/gnu/packages/glib.scm +++ b/gnu/packages/glib.scm @@ -148,7 +148,7 @@ shared NFS home directories.") (define glib (package (name "glib") - (version "2.54.2") + (version "2.56.1") (source (origin (method url-fetch) (uri (string-append "mirror://gnome/sources/" @@ -156,7 +156,7 @@ shared NFS home directories.") name "-" version ".tar.xz")) (sha256 (base32 - "0v4ffl172kbqgxrhgxyafhpw36bq3iklb2zjqyl6jcfkmb2yb2dv")) + "138b3hi7glfpbia49gi07lyz1dh9k0jl9vpd3aiwflf6y923zvs0")) (patches (search-patches "glib-respect-datadir.patch" "glib-tests-timer.patch")))) (build-system gnu-build-system) @@ -235,6 +235,7 @@ shared NFS home directories.") ("gio/tests/contenttype.c" (;; XXX: requires shared-mime-info. "/contenttype/guess" + "/contenttype/guess_svg_from_data" "/contenttype/subtype" "/contenttype/list" "/contenttype/icon" -- 2.17.0 --=-=-=--