From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alex Vong Subject: [PATCH] gnu: racket: Update to 6.5. Date: Thu, 14 Jul 2016 21:35:47 +0800 Message-ID: <87d1mg4a18.fsf@gmail.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:54057) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bNgnz-0007TC-BV for guix-devel@gnu.org; Thu, 14 Jul 2016 09:35:56 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bNgnv-0008Ss-68 for guix-devel@gnu.org; Thu, 14 Jul 2016 09:35:54 -0400 Received: from mail-pf0-x22a.google.com ([2607:f8b0:400e:c00::22a]:33304) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bNgnu-0008Sm-UQ for guix-devel@gnu.org; Thu, 14 Jul 2016 09:35:51 -0400 Received: by mail-pf0-x22a.google.com with SMTP id y134so4205784pfg.0 for ; Thu, 14 Jul 2016 06:35:50 -0700 (PDT) List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org --=-=-= Content-Type: text/plain Hello, This upgrades racket to 6.5 which should fix build failure on hydra (currently unavailable). The analogous bug report on nix is here: https://github.com/NixOS/nixpkgs/issues/13733. The patch mentions it is fixed after the 6.4 release, https://github.com/NixOS/nixpkgs/commit/927ce5ca718d0bbba69a062534b296a42595ef50, so it should definitely be fixed on 6.5. Cheers, Alex --=-=-= Content-Type: text/x-diff Content-Disposition: inline; filename=0001-gnu-racket-Update-to-6.5.patch >From 70b4dc449cf8f1db97966e970fcce00d73f38537 Mon Sep 17 00:00:00 2001 From: Alex Vong Date: Wed, 13 Jul 2016 23:29:31 +0800 Subject: [PATCH] gnu: racket: Update to 6.5. * gnu/packages/scheme.scm (racket): Update to 6.5. --- gnu/packages/scheme.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/scheme.scm b/gnu/packages/scheme.scm index e4a26ed..e7cf950 100644 --- a/gnu/packages/scheme.scm +++ b/gnu/packages/scheme.scm @@ -394,7 +394,7 @@ implementation techniques and as an expository tool.") (define-public racket (package (name "racket") - (version "6.2.1") + (version "6.5") (source (origin (method url-fetch) (uri (list (string-append "http://mirror.racket-lang.org/installers/" @@ -404,7 +404,7 @@ implementation techniques and as an expository tool.") version "/racket/racket-" version "-src-unix.tgz"))) (sha256 (base32 - "0555j63k7fs10iv0icmivlxpzgp6s7gwcbfddmbwxlf2rk80qhq0")))) + "0gvh7i5k87mg1gpqk8gaq50ja9ksbhnvdqn7qqh0n17byidd6999")))) (build-system gnu-build-system) (arguments '(#:phases -- 2.9.0 --=-=-=--