From f0b925038255e0e6909bad14115007cc34590f3a Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Thu, 27 May 2021 17:30:25 +0200 Subject: gnu: ccl: Update to 1.12.1. * gnu/packages/lisp.scm (ccl): Update to 1.12.1. [inputs]: Keep using the 1.12 bootstrap for ARM. --- gnu/packages/lisp.scm | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) (limited to 'gnu/packages/lisp.scm') diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm index f6df3ef824..082eb920be 100644 --- a/gnu/packages/lisp.scm +++ b/gnu/packages/lisp.scm @@ -598,7 +598,9 @@ (define-public ccl ;; it, as is the case for SBCL, but I know of no attempt to do so." (package (name "ccl") - (version "1.12") + ;; XXX When updating this package, check whether we can simply append + ;; VERSION to the ccl-bootstrap URL again, instead of per architecture. + (version "1.12.1") (source (origin (method git-fetch) (uri (git-reference @@ -607,7 +609,7 @@ (define-public ccl (file-name (git-file-name "ccl" version)) (sha256 (base32 - "0kxr24d2fzsmpsilijpwwfl6g89y7fcrwb80kai5nx9pwgxmjbp3")))) + "1zz291lvsrr7pps8wfl2kdxsnzjngqi4v3mil14pga4r5zanmsi7")))) (build-system gnu-build-system) ;; CCL consists of a "lisp kernel" and "heap image", both of which are ;; shipped in precompiled form in source tarballs. The former is a C @@ -619,20 +621,20 @@ (define-public ccl ,(origin (method url-fetch) (uri (string-append - "https://github.com/Clozure/ccl/releases/download/v" version "/" + "https://github.com/Clozure/ccl/releases/download/v" (match (%current-system) - ("armhf-linux" "linuxarm") + ("armhf-linux" "1.12/linuxarm") ;; XXX: This source only works on x86, but provide it as a ;; catch-all to prevent errors when querying this package ;; on unsupported platforms. - (_ "linuxx86")) + (_ "1.12.1/linuxx86")) ".tar.gz")) (sha256 (base32 (match (%current-system) ("armhf-linux" "0x4bjx6cxsjvxyagijhlvmc7jkyxifdvz5q5zvz37028va65243c") - (_ "15l7cfa4a7jkfwdzsfm4q3n22jnb57imxahpql3h77xin57v1gbz")))))))) + (_ "0ll017ajcfsyx8f7zsy4394y8xxvz40iz0gcsmznp0n3mf0xi67c")))))))) (native-inputs `(("cl-asdf" ,cl-asdf) ("m4" ,m4))) -- cgit v1.2.3 From b4e3b77270be9d6ff579429d5ced84b467f0f6a3 Mon Sep 17 00:00:00 2001 From: Pierre Neidhardt Date: Tue, 1 Jun 2021 12:00:57 +0200 Subject: gnu: sbcl: Update to 2.1.5. * gnu/packages/lisp.scm (sbcl): Update to 2.1.5. --- gnu/packages/lisp.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/lisp.scm') diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm index 082eb920be..55da4b061e 100644 --- a/gnu/packages/lisp.scm +++ b/gnu/packages/lisp.scm @@ -400,14 +400,14 @@ (define-public clisp (define-public sbcl (package (name "sbcl") - (version "2.1.4") + (version "2.1.5") (source (origin (method url-fetch) (uri (string-append "mirror://sourceforge/sbcl/sbcl/" version "/sbcl-" version "-source.tar.bz2")) (sha256 - (base32 "04dxxycqhds9r1ycqx3cbavv7p4r13svl5bfakjjmlpw8qihw9lr")))) + (base32 "1id8r2y8hiz34lmvszikdqgrmr778jshim0fibb915assvn0fn4n")))) (build-system gnu-build-system) (outputs '("out" "doc")) (native-inputs -- cgit v1.2.3