GNU bug report logs -
#57617
[PATCH] gnu: Add cl-amb.
Previous Next
Reported by: jgart <jgart <at> dismail.de>
Date: Tue, 6 Sep 2022 12:59:01 UTC
Severity: normal
Tags: patch
Done: Guillaume Le Vaillant <glv <at> posteo.net>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Your bug report
#57617: [PATCH] gnu: Add cl-amb.
which was filed against the guix-patches package, has been closed.
The explanation is attached below, along with your original report.
If you require more details, please reply to 57617 <at> debbugs.gnu.org.
--
57617: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=57617
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
[Message part 3 (text/plain, inline)]
Patch pushed as b8ffdefd56bb8a877166efa47146aaa6d2feb8b3.
Thanks.
[signature.asc (application/pgp-signature, inline)]
[Message part 5 (message/rfc822, inline)]
* gnu/packages/lisp-xyz.scm (cl-amb): New variable.
---
gnu/packages/lisp-xyz.scm | 35 +++++++++++++++++++++++++++++++++++
1 file changed, 35 insertions(+)
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index f7ffa23648..b16ddbe304 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -22705,6 +22705,41 @@ (define-public cl-cl-geometry
(define-public ecl-cl-geometry
(sbcl-package->ecl-package sbcl-cl-geometry))
+(define-public sbcl-amb
+ (let ((commit "884bef69a1ea02f3b9deae0341e1a038ff31b896")
+ (revision "0"))
+ (package
+ (name "sbcl-amb")
+ (version (git-version "20220117" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/phoe/amb")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1klh1aakklj1famrff0sccnwlv8238b1q446288aqnqgxxw6pf21"))))
+ (build-system asdf-build-system/sbcl)
+ (arguments
+ `(#:asd-systems '("amb" "amb/test")))
+ (inputs
+ (list sbcl-alexandria))
+ (native-inputs
+ (list sbcl-parachute))
+ (synopsis "Implementation of John McCarthy's ambiguous operator")
+ (description
+"The @code{cl-amb} provides an implementation of John McCarthy's ambiguous
+operator in portable Common Lisp.")
+ (home-page "https://github.com/phoe/amb/")
+ (license license:expat))))
+
+(define-public cl-amb
+ (sbcl-package->cl-source-package sbcl-amb))
+
+(define-public ecl-amb
+ (sbcl-package->ecl-package sbcl-amb))
+
(define-public sbcl-sketch
;; No release in years.
(let ((commit "4cc00b08e202c7adda41391463096cf9df1705c3"))
--
2.37.2
This bug report was last modified 2 years and 263 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.