From mboxrd@z Thu Jan 1 00:00:00 1970 From: Efraim Flashner Subject: Re: [PATCH] Update lisp.scm CCL and SBCL to latest versions Date: Thu, 11 Feb 2016 20:46:13 +0200 Message-ID: <20160211204613.45bcd5c4@debian-netbook> References: <87ziv8qb86.fsf@mordocai.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; boundary="Sig_/8.5aeQmhCcPvY3zdz+7pJ=z"; protocol="application/pgp-signature" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:34072) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aTwFw-0003Eh-O3 for guix-devel@gnu.org; Thu, 11 Feb 2016 13:46:22 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aTwFt-0004v9-HL for guix-devel@gnu.org; Thu, 11 Feb 2016 13:46:20 -0500 Received: from flashner.co.il ([178.62.234.194]:44688) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aTwFt-0004v2-6l for guix-devel@gnu.org; Thu, 11 Feb 2016 13:46:17 -0500 In-Reply-To: <87ziv8qb86.fsf@mordocai.net> 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-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: Christopher W Carpenter Cc: guix-devel@gnu.org --Sig_/8.5aeQmhCcPvY3zdz+7pJ=z Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable On Wed, 10 Feb 2016 19:36:41 -0600 Christopher W Carpenter wrote: > From: Christopher W Carpenter > To: guix-devel@gnu.org > Subject: [PATCH] Update lisp.scm CCL and SBCL to latest versions > Date: Wed, 10 Feb 2016 19:36:41 -0600 > Sender: guix-devel-bounces+efraim=3Dflashner.co.il@gnu.org > User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.5 (gnu/linux) >=20 >=20 > I don't have another machine to check for reproducibility right now, but > I believe i've done everything else specified by the contributing > section of the manual. >=20 > Each version upgrade is a separate attachment. somehow they ended up inline in the email here. >=20 > =3D=3D=3DFile > /home/mordocai/git_repos/guix/0001-Update-lisp.scm-sbcl-package-to-versio= n-1.3.2.patch=3D=3D=3D > From 39e7c9ef9a323fb4b97c138318c20cb869120bd5 Mon Sep 17 00:00:00 2001 > From: "Christopher W. Carpenter (https://mordocai.net/gpg.html)" > > Date: Wed, 10 Feb 2016 18:45:56 -0600 > Subject: [PATCH 1/2] Update lisp.scm sbcl package to version 1.3.2 >=20 > The error with the ./tests/data/compile-with-pos-utf16be.lisp file is > very strange and I plan on looking into it more. I can't tell exactly with the patches inline, but the commit message should= be: gnu: sbcl: Update to 1.3.2. * gnu/packages/lisp.scm (sbcl): Update to 1.3.2. [arguments]: Delete test that breaks compilation. > --- > gnu/packages/lisp.scm | 8 +++++--- > 1 file changed, 5 insertions(+), 3 deletions(-) >=20 > diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm > index 85f3f3c..daba49e 100644 > --- a/gnu/packages/lisp.scm > +++ b/gnu/packages/lisp.scm > @@ -209,14 +209,14 @@ an interpreter, a compiler, a debugger, and much mo= re.") > (define-public sbcl > (package > (name "sbcl") > - (version "1.2.8") > + (version "1.3.2") > (source > (origin > (method url-fetch) > (uri (string-append "mirror://sourceforge/sbcl/sbcl/" version "/s= bcl-" > version "-source.tar.bz2")) > (sha256 > - (base32 "0ab9lw056yf6y0rjmx3iirn5n59pmssqxf00fbmpyl6qsnpaja1d"))= )) > + (base32 "18mgj1h9wqi0zq4k7y5r5fk10mlbpgh3796d3dac75bpxabg30nk"))= )) > (build-system gnu-build-system) > (outputs '("out" "doc")) > ;; Bootstrap with CLISP. > @@ -243,7 +243,9 @@ an interpreter, a compiler, a debugger, and much more= .") > ;; occurs in some .sh files too (which contain Lisp code)= . Use > ;; ISO-8859-1 because some of the files are ISO-8859-1 en= coded. > (with-fluids ((%default-port-encoding #f)) > - (substitute* (find-files "." "\\.(lisp|sh)$") > + ;; Delete file that breaks. Due guile's regex parser? > + (substitute* (delete "./tests/data/compile-file-pos-utf= 16be.lisp" the above line looks like it's more than 80 characters > + (find-files "." "\\.(lisp|sh)$")) > (("\"/bin/sh\"") (quoted-path bash "/bin/sh")) > (("\"/usr/bin/env\"") (quoted-path coreutils "/usr/bi= n/env")) this line also looks too long > (("\"/bin/cat\"") (quoted-path coreutils "/bin/cat")) > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > =3D=3D=3DFile > /home/mordocai/git_repos/guix/0002-Update-lisp.scm-ccl-package-to- versio= n-1.11.patch=3D=3D=3D > From 5da335ea49aac640828d366aa693dbf28d414639 Mon Sep 17 00:00:00 2001 > From: "Christopher W. Carpenter (https://mordocai.net/gpg.html)" > > Date: Wed, 10 Feb 2016 19:00:08 -0600 > Subject: [PATCH 2/2] Update lisp.scm ccl package to version 1.11 same thing here with the commit message > --- > gnu/packages/lisp.scm | 8 ++++---- > 1 file changed, 4 insertions(+), 4 deletions(-) > > diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm > index daba49e..26d54e1 100644 > --- a/gnu/packages/lisp.scm > +++ b/gnu/packages/lisp.scm > @@ -317,7 +317,7 @@ statistical profiler, a code coverage tool, and many = other extensions.") > (define-public ccl > (package > (name "ccl") > - (version "1.10") > + (version "1.11") > (source #f) > (build-system gnu-build-system) > ;; CCL consists of a "lisp kernel" and "heap image", both of which a= re > @@ -330,7 +330,7 @@ statistical profiler, a code coverage tool, and many = other extensions.") > ,(origin > (method url-fetch) > (uri (string-append > - "ftp://ftp.clozure.com/pub/release/1.10/ccl-" version "= -" > + "ftp://ftp.clozure.com/pub/release/" version "/ccl-" ve= rsion "-" > (match (%current-system) > ((or "i686-linux" "x86_64-linux") "linuxx86") > ("armhf-linux" "linuxarm") > @@ -342,9 +342,9 @@ statistical profiler, a code coverage tool, and many = other extensions.") > (base32 > (match (%current-system) > ((or "i686-linux" "x86_64-linux") > - "0mr653q5px05lr11z2mk551m5g47b4wq96vbfibpp0qlc9jp58lc") > + "0w3dmj7q9kqyra3yrf1lxclnjz151yvf5s5q8ayllvmvqbl8bs08") > ("armhf-linux" > - "1py02irpmi2qz5rq3h33wfv6impf15z8i2rign6hvhlqn7s99wwh") > + "1x487aaz2rqcb6k301sy2p39a1m4qdhg6z9p9fb76ssipqgr38b4") > (_ "")))))))) > (native-inputs > `(("m4" ,m4) > --=20 > 2.7.0 > > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --=20 Efraim Flashner =D7=90=D7=A4=D7=A8=D7=99=D7=9D = =D7=A4=D7=9C=D7=A9=D7=A0=D7=A8 GPG key =3D A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351 Confidentiality cannot be guaranteed on emails sent or received unencrypted --Sig_/8.5aeQmhCcPvY3zdz+7pJ=z Content-Type: application/pgp-signature Content-Description: OpenPGP digital signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQIcBAEBCgAGBQJWvNb1AAoJEPTB05F+rO6TdmAP/AziuTztIoap89dDLf7W/qQ7 d7BL9AIkdOS7pQ+kseQ2cyYRb6QgZgQyw0aVHjWl9xhTnVpzAUv9X0Z59q3JOto/ o95tgMlQGZT2vIdId6pua0Q0fkhWr13FeimCab8hRgv6VBtnx6jZeRTXmfV9Zleq uwbvC7FIdQsWk00ggxzil5TRmMUqhStuWnTCiZqRiT0+3zQzuuy9xtsxrVbU2VQR 8d2cDWFa1UAmSsi5ww8xZ7t8PW+DO50b0khJhLEhsSJy99cihvR7ElKXSZuseIJ3 dbJ5zDdOpIZ+35yCwsVIeiWdbQ8iRDZRUQqn8n1W9gECeY9xpqRBcsOL3jguQnKM 1ytiW93HRV7URoUDY+KB52ogS960iwXkV6CJfPbgEEiD/Lej9jLGKNytUuf7Ft0P ciq+f5e/kmEZ1FWMwrtRkTq3nWtvRZcXKm5wKLdT3bmHwDQRqt+DMzH4gT9TXSS9 D/bqBbc0C/DSgLJUDu8vtG/Sj+vTepr8B5qlIaZ7x6SGdwZ7+trf5wv3NEqip82r ytEVw0H/uG4741ksVRze8Ob+tpNe4wITVzM/h7sD6Jk+V7bP3WywNfWInY1zFxh7 CabUCR84s7SRvF8r2djhTPpXGRFH7P6IHSwjTxnjOT+4ErVpWXXZFzMJ1N31ZxJC wRwAkB1or6jT3q1eaDq+ =Z/YQ -----END PGP SIGNATURE----- --Sig_/8.5aeQmhCcPvY3zdz+7pJ=z--