gnu: cl-ciel: Update to 0.2.1.

* gnu/packages/lisp-xyz.scm (sbcl-ciel): Update to 0.2.1.

Change-Id: Ie0a122ebdba4f9b5bb83275cc349864d0306c080
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
This commit is contained in:
Konrad Hinsen 2024-09-05 21:42:36 +02:00 committed by Guillaume Le Vaillant
parent b2f9231cd9
commit 904f871378
No known key found for this signature in database
GPG key ID: 6BE8208ADF21FE3F

View file

@ -3462,20 +3462,20 @@ defined in RFC 2616.")
(sbcl-package->ecl-package sbcl-chunga)) (sbcl-package->ecl-package sbcl-chunga))
(define-public sbcl-ciel (define-public sbcl-ciel
(let ((commit "6cc1cef5e37e9f495c8163271a5de48de99f348a") (let ((commit "0b26d64dcd91a3a2aa962842629a853261dd30fe")
(revision "0")) (revision "0"))
(package (package
(name "sbcl-ciel") (name "sbcl-ciel")
(version (git-version "0.1.0" revision commit)) (version (git-version "0.2.1" revision commit))
(source (source
(origin (origin
(method git-fetch) (method git-fetch)
(uri (git-reference (uri (git-reference
(url "https://github.com/ciel-lang/CIEL") (url "https://github.com/ciel-lang/CIEL")
(commit commit))) (commit commit)))
(file-name (git-file-name "ciel" version)) (file-name (git-file-name "cl-ciel" version))
(sha256 (sha256
(base32 "1bwafbbsppxqvijf43dii55mpzrklh6faj2m5dhajg2f2m8qckgi")))) (base32 "0gm8slnz4jw98rkijnh2dp6x629xdnfk8z7j35g03j6ypr56v06h"))))
(build-system asdf-build-system/sbcl) (build-system asdf-build-system/sbcl)
(native-inputs (native-inputs
(list sbcl-fiveam)) (list sbcl-fiveam))
@ -3485,12 +3485,11 @@ defined in RFC 2616.")
sbcl-arrow-macros sbcl-arrow-macros
sbcl-bordeaux-threads sbcl-bordeaux-threads
sbcl-cl-ansi-text sbcl-cl-ansi-text
sbcl-cl-ansi-text
sbcl-cl-cron sbcl-cl-cron
sbcl-cl-csv sbcl-cl-csv
sbcl-cl-ftp
sbcl-cl-json-pointer sbcl-cl-json-pointer
sbcl-cl-ppcre sbcl-cl-ppcre
sbcl-cl-punch
sbcl-cl-reexport sbcl-cl-reexport
sbcl-cl-str sbcl-cl-str
sbcl-clesh sbcl-clesh
@ -3499,12 +3498,11 @@ defined in RFC 2616.")
sbcl-cmd sbcl-cmd
sbcl-dbi sbcl-dbi
sbcl-defstar sbcl-defstar
sbcl-deploy
sbcl-dexador sbcl-dexador
sbcl-dissect sbcl-dissect
sbcl-easy-routes sbcl-easy-routes
sbcl-file-finder
sbcl-file-notify sbcl-file-notify
sbcl-fn
sbcl-for sbcl-for
sbcl-fset sbcl-fset
sbcl-generic-cl sbcl-generic-cl
@ -3515,20 +3513,23 @@ defined in RFC 2616.")
sbcl-lquery sbcl-lquery
sbcl-metabang-bind sbcl-metabang-bind
sbcl-modf sbcl-modf
sbcl-moira
sbcl-named-readtables sbcl-named-readtables
sbcl-nodgui
sbcl-parse-float sbcl-parse-float
sbcl-parse-number sbcl-parse-number
sbcl-printv sbcl-printv
sbcl-progressons
sbcl-pythonic-string-reader sbcl-pythonic-string-reader
sbcl-quicksearch sbcl-quicksearch
sbcl-quri sbcl-quri
sbcl-repl-utilities sbcl-repl-utilities
sbcl-secret-values
sbcl-serapeum sbcl-serapeum
sbcl-shasht sbcl-shasht
sbcl-shlex sbcl-shlex
sbcl-spinneret sbcl-spinneret
sbcl-sxql sbcl-sxql
sbcl-termp
sbcl-trivia sbcl-trivia
sbcl-trivial-arguments sbcl-trivial-arguments
sbcl-trivial-do sbcl-trivial-do
@ -3537,12 +3538,23 @@ defined in RFC 2616.")
sbcl-trivial-types sbcl-trivial-types
sbcl-vgplot sbcl-vgplot
sbcl-which)) sbcl-which))
(outputs '("out" "image"))
(arguments
(list
#:phases
#~(modify-phases %standard-phases
(add-after 'create-asdf-configuration 'build-image
(lambda* (#:key outputs #:allow-other-keys)
(build-image
(string-append (assoc-ref outputs "image") "/bin/ciel")
outputs
#:dependencies '("ciel")))))))
(home-page "http://ciel-lang.org/") (home-page "http://ciel-lang.org/")
(synopsis "CIEL Is an Extended Lisp") (synopsis "CIEL Is an Extended Lisp")
(description (description
"CIEL is a ready-to-use collection of libraries providing: a binary, to "CIEL is a ready-to-use collection of libraries providing: a binary, to
run CIEL scripts; a simple full-featured REPL for the terminal; a Lisp library run CIEL scripts; a simple full-featured REPL for the terminal; a Lisp library
and a core image .") and a core image.")
(license license:expat)))) (license license:expat))))
(define-public cl-ciel (define-public cl-ciel