From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:46912) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eouBH-0001iz-Sg for guix-patches@gnu.org; Thu, 22 Feb 2018 11:57:25 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eouB5-0004si-GV for guix-patches@gnu.org; Thu, 22 Feb 2018 11:57:15 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:48816) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1eouB4-0004rq-Mx for guix-patches@gnu.org; Thu, 22 Feb 2018 11:57:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1eouB4-0003Ac-9c for guix-patches@gnu.org; Thu, 22 Feb 2018 11:57:02 -0500 Subject: [bug#30575] [PATCH] gnu: racket: Update to 6.12. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:45296) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eouAa-0001ZL-1p for guix-patches@gnu.org; Thu, 22 Feb 2018 11:56:34 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eouAW-0004F3-L0 for guix-patches@gnu.org; Thu, 22 Feb 2018 11:56:31 -0500 Received: from dd26836.kasserver.com ([85.13.145.193]:48028) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1eouAW-0004EP-DA for guix-patches@gnu.org; Thu, 22 Feb 2018 11:56:28 -0500 From: Danny Milosavljevic Date: Thu, 22 Feb 2018 17:56:21 +0100 Message-Id: <20180222165621.2297-1-dannym@scratchpost.org> 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: 30575@debbugs.gnu.org * gnu/packages/scheme.scm (racket): Update to 6.12. [arguments]<#:phases>[patch-/bin/sh]: Add substitution. --- gnu/packages/scheme.scm | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/gnu/packages/scheme.scm b/gnu/packages/scheme.scm index d5286b312..a90f88fce 100644 --- a/gnu/packages/scheme.scm +++ b/gnu/packages/scheme.scm @@ -404,7 +404,7 @@ implementation techniques and as an expository tool.") (define-public racket (package (name "racket") - (version "6.11") + (version "6.12") (source (origin (method url-fetch) (uri (list (string-append "http://mirror.racket-lang.org/installers/" @@ -414,7 +414,7 @@ implementation techniques and as an expository tool.") version "/racket-" version "-src.tgz"))) (sha256 (base32 - "1nk7705x24jjlbqqhj8yvbgqkfscxx3m81bry1g56kjxysjmf3sw")))) + "0cwcypzjfl9py1s695mhqkiapff7c1w29llsmdj7qgn58wl0apk5")))) (build-system gnu-build-system) (arguments '(#:phases @@ -484,6 +484,9 @@ implementation techniques and as an expository tool.") (lambda _ (substitute* "collects/racket/system.rkt" (("/bin/sh") (which "sh"))) + (substitute* "src/racket/src/schpriv.h" + ;; Our gcc version is too old so signbit is not a builtin. + (("MZ_IS_NEG_ZERO") "MZ_IS_NEG_ZEROdisable")) #t))) #:tests? #f ; XXX: how to run them? ))