emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#55520: closed ([PATCH] gnu: Add cl-listopia.)


From: GNU bug Tracking System
Subject: bug#55520: closed ([PATCH] gnu: Add cl-listopia.)
Date: Fri, 20 May 2022 18:05:01 +0000

Your message dated Fri, 20 May 2022 18:20:27 +0530
with message-id <875ym0tlkc.fsf@systemreboot.net>
and subject line Re: [bug#55520] [PATCH] gnu: Add cl-listopia.
has caused the debbugs.gnu.org bug report #55520,
regarding [PATCH] gnu: Add cl-listopia.
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
55520: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=55520
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH] gnu: Add cl-listopia. Date: Thu, 19 May 2022 16:45:44 +0530
* gnu/packages/lisp-xyz.scm (sbcl-listopia, cl-listopia, ecl-listopia): New
variables.
---
 gnu/packages/lisp-xyz.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index fa234af3c3..7fa0db59f9 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -21322,3 +21322,31 @@ (define-public sbcl-lmdb
 
 (define-public cl-lmdb
   (sbcl-package->cl-source-package sbcl-lmdb))
+
+(define-public sbcl-listopia
+  (package
+    (name "sbcl-listopia")
+    (version "0.12.0")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/Dimercel/listopia";)
+                    (commit version)))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "07xa2s2s60h9f40az3zdacybl5pk1x8bhvga9phsra0czbv44lx2"))))
+    (build-system asdf-build-system/sbcl)
+    (native-inputs
+     (list sbcl-prove))
+    (home-page "https://github.com/Dimercel/listopia";)
+    (synopsis "List manipulation library for Common Lisp")
+    (description "This package is a list manipulation library for Common Lisp
+inspired by Haskell package @code{Data.List}.")
+    (license license:llgpl)))
+
+(define-public cl-listopia
+  (sbcl-package->cl-source-package sbcl-listopia))
+
+(define-public ecl-listopia
+  (sbcl-package->ecl-package sbcl-listopia))
-- 
2.36.0




--- End Message ---
--- Begin Message --- Subject: Re: [bug#55520] [PATCH] gnu: Add cl-listopia. Date: Fri, 20 May 2022 18:20:27 +0530
Pushed, thanks!


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]