From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:35228) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1enh8R-00022H-0i for guix-patches@gnu.org; Mon, 19 Feb 2018 03:49:27 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1enh8A-0002MZ-N7 for guix-patches@gnu.org; Mon, 19 Feb 2018 03:49:18 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:42675) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1enh8A-0002MD-Dc for guix-patches@gnu.org; Mon, 19 Feb 2018 03:49:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1enh8A-00075u-5N for guix-patches@gnu.org; Mon, 19 Feb 2018 03:49:02 -0500 Subject: [bug#30521] Lisp updates Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:37335) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1enh48-0000ey-Om for guix-patches@gnu.org; Mon, 19 Feb 2018 03:46:57 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1enh30-00073K-B4 for guix-patches@gnu.org; Mon, 19 Feb 2018 03:44:48 -0500 Received: from mailchk-m04.uwaterloo.ca ([129.97.128.236]:47712) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1enh2v-0006wK-6U for guix-patches@gnu.org; Mon, 19 Feb 2018 03:43:39 -0500 Received: from localhost (CPEac202e023313-CMac202e023310.cpe.net.cable.rogers.com [99.231.16.156]) (authenticated bits=0) by mailchk-m04.uwaterloo.ca (8.14.4/8.14.4) with ESMTP id w1J7v2c8009228 (version=TLSv1/SSLv3 cipher=AES256-GCM-SHA384 bits=256 verify=NO) for ; Mon, 19 Feb 2018 02:57:03 -0500 Date: Mon, 19 Feb 2018 02:57:01 -0500 From: Andy Patterson Message-ID: <20180219025701.253a5ef9@uwaterloo.ca> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="MP_/jFcz0v9abXDDqO4D7ISJ6ba" 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: 30521@debbugs.gnu.org --MP_/jFcz0v9abXDDqO4D7ISJ6ba Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Content-Disposition: inline Hey all, Here are a couple of updates to lisp packages which started breaking in the latest core-updates cycle. Unfortunately, I haven't been able to get slynk building yet. Thanks, -- Andy --MP_/jFcz0v9abXDDqO4D7ISJ6ba Content-Type: text/x-patch Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=0001-gnu-ccl-Update-to-1.11.5.patch >From 2d32abca2576a1a6b2f760735643c486e8013042 Mon Sep 17 00:00:00 2001 From: Andy Patterson Date: Sun, 18 Feb 2018 22:08:15 -0500 Subject: [PATCH 1/2] gnu: ccl: Update to 1.11.5. * gnu/packages/lisp.scm (ccl): Update to 1.11.5. [inputs]: Update ccl to its new hosting location. --- 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 98469ee8a..3a7db0580 100644 --- a/gnu/packages/lisp.scm +++ b/gnu/packages/lisp.scm @@ -436,7 +436,7 @@ statistical profiler, a code coverage tool, and many other extensions.") (define-public ccl (package (name "ccl") - (version "1.11") + (version "1.11.5") (source #f) (build-system gnu-build-system) ;; CCL consists of a "lisp kernel" and "heap image", both of which are @@ -449,7 +449,7 @@ statistical profiler, a code coverage tool, and many other extensions.") ,(origin (method url-fetch) (uri (string-append - "ftp://ftp.clozure.com/pub/release/" version + "https://github.com/Clozure/ccl/releases/download/v" version "/ccl-" version "-" (match (%current-system) ((or "i686-linux" "x86_64-linux") "linuxx86") @@ -462,9 +462,9 @@ statistical profiler, a code coverage tool, and many other extensions.") (base32 (match (%current-system) ((or "i686-linux" "x86_64-linux") - "0w3dmj7q9kqyra3yrf1lxclnjz151yvf5s5q8ayllvmvqbl8bs08") + "0hs1f3z7crgzvinpj990kv9gvbsipxvcvwbmk54n51nasvc5025q") ("armhf-linux" - "1x487aaz2rqcb6k301sy2p39a1m4qdhg6z9p9fb76ssipqgr38b4") + "0p0l1dzsygb6i1xxgbipjpxkn46xhq3jm41a34ga1qqp4x8lkr62") (_ "")))))))) (native-inputs `(("m4" ,m4) -- 2.16.1 --MP_/jFcz0v9abXDDqO4D7ISJ6ba Content-Type: text/x-patch Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=0002-gnu-cl-bordeaux-threads-Update-to-commit-354abb0a.patch >From 8062f91b32627cb1b6a7afcf4c49daafdd0844c7 Mon Sep 17 00:00:00 2001 From: Andy Patterson Date: Sun, 18 Feb 2018 22:20:06 -0500 Subject: [PATCH 2/2] gnu: cl-bordeaux-threads: Update to commit 354abb0a. This commit includes a fix which makes the package compatible asdf 3.3.1. * gnu/packages/lisp.scm (sbcl-bordeaux-threads): Update to commit 354abb0a. --- gnu/packages/lisp.scm | 40 +++++++++++++++++++++------------------- 1 file changed, 21 insertions(+), 19 deletions(-) diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm index 3a7db0580..922f2baa3 100644 --- a/gnu/packages/lisp.scm +++ b/gnu/packages/lisp.scm @@ -727,27 +727,29 @@ interactive development model in mind.") (sbcl-package->ecl-package sbcl-fiveam)) (define-public sbcl-bordeaux-threads - (package - (name "sbcl-bordeaux-threads") - (version "0.8.5") - (source (origin - (method url-fetch) - (uri (string-append - "https://github.com/sionescu/bordeaux-threads/archive/v" - version ".tar.gz")) - (sha256 - (base32 "10ryrcx832fwqdawb6jmknymi7wpdzhi30qzx7cbrk0cpnka71w2")) - (file-name - (string-append "bordeaux-threads-" version ".tar.gz")))) - (inputs `(("alexandria" ,sbcl-alexandria))) - (native-inputs `(("fiveam" ,sbcl-fiveam))) - (build-system asdf-build-system/sbcl) - (synopsis "Portable shared-state concurrency library for Common Lisp") - (description "BORDEAUX-THREADS is a proposed standard for a minimal + (let ((commit "354abb0ae9f1d9324001e1a8abab3128d7420e0e") + (revision "1")) + (package + (name "sbcl-bordeaux-threads") + (version (git-version "0.8.5" revision commit)) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sionescu/bordeaux-threads.git") + (commit commit))) + (sha256 + (base32 "1hcfp21l6av1xj6z7r77sp6h4mwf9vvx4s745803sysq2qy2mwnq")) + (file-name + (git-file-name "bordeaux-threads" version)))) + (inputs `(("alexandria" ,sbcl-alexandria))) + (native-inputs `(("fiveam" ,sbcl-fiveam))) + (build-system asdf-build-system/sbcl) + (synopsis "Portable shared-state concurrency library for Common Lisp") + (description "BORDEAUX-THREADS is a proposed standard for a minimal MP/Threading interface. It is similar to the CLIM-SYS threading and lock support.") - (home-page "https://common-lisp.net/project/bordeaux-threads/") - (license license:x11))) + (home-page "https://common-lisp.net/project/bordeaux-threads/") + (license license:x11)))) (define-public cl-bordeaux-threads (sbcl-package->cl-source-package sbcl-bordeaux-threads)) -- 2.16.1 --MP_/jFcz0v9abXDDqO4D7ISJ6ba--