[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#37817] [PATCH v2 1/9] gnu: Add cl-heap.
From: |
Guillaume Le Vaillant |
Subject: |
[bug#37817] [PATCH v2 1/9] gnu: Add cl-heap. |
Date: |
Mon, 21 Oct 2019 14:02:55 +0200 |
* gnu/packages/lisp.scm (cl-heap, sbcl-cl-heap, ecl-cl-heap): New variables.
---
gnu/packages/lisp.scm | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm
index dcc396dd25..7f62aed6b0 100644
--- a/gnu/packages/lisp.scm
+++ b/gnu/packages/lisp.scm
@@ -7866,3 +7866,33 @@ forms in parallel.")
(define-public ecl-simple-parallel-tasks
(sbcl-package->ecl-package sbcl-simple-parallel-tasks))
+
+(define-public sbcl-cl-heap
+ (package
+ (name "sbcl-cl-heap")
+ (version "0.1.6")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "https://common-lisp.net/project/cl-heap/releases/";
+ "cl-heap_" version ".tar.gz"))
+ (sha256
+ (base32
+ "163hb07p2nxz126rpq3cj5dyala24n0by5i5786n2qcr1w0bak4i"))))
+ (build-system asdf-build-system/sbcl)
+ (native-inputs
+ `(("xlunit" ,sbcl-xlunit)))
+ (arguments
+ `(#:test-asd-file "cl-heap-tests.asd"))
+ (synopsis "Heap and priority queue data structures for Common Lisp")
+ (description
+ "CL-HEAP provides various implementations of heap data structures (a
+binary heap and a Fibonacci heap) as well as an efficient priority queue.")
+ (home-page "https://common-lisp.net/project/cl-heap/";)
+ (license license:gpl3+)))
+
+(define-public cl-heap
+ (sbcl-package->cl-source-package sbcl-cl-heap))
+
+(define-public ecl-cl-heap
+ (sbcl-package->ecl-package sbcl-cl-heap))
--
2.23.0
- [bug#37817] [PATCH 1/7] gnu: Add cl-heap., (continued)
- [bug#37817] [PATCH 1/7] gnu: Add cl-heap., Guillaume Le Vaillant, 2019/10/18
- [bug#37817] [PATCH 4/7] gnu: sbcl-iterate: Add missing native input., Guillaume Le Vaillant, 2019/10/18
- [bug#37817] [PATCH 5/7] gnu: Add ecl-iterate., Guillaume Le Vaillant, 2019/10/18
- [bug#37817] [PATCH 2/7] gnu: Add curry-compose-reader-macros., Guillaume Le Vaillant, 2019/10/18
- [bug#37817] [PATCH 3/7] gnu: Add yason., Guillaume Le Vaillant, 2019/10/18
- [bug#37817] [PATCH 6/7] gnu: Add stefil., Guillaume Le Vaillant, 2019/10/18
- [bug#37817] [PATCH 7/7] gnu: Add graph., Guillaume Le Vaillant, 2019/10/18
- [bug#37817] [PATCH 1/7] gnu: Add cl-heap., [bug#37817] [PATCH 2/7] gnu: Add curry-compose-reader-macros., [bug#37817] [PATCH 3/7] gnu: Add yason., [bug#37817] [PATCH 4/7] gnu: sbcl-iterate: Add missing native input., [bug#37817] [PATCH 5/7] gnu: Add ecl-iterate., [bug#37817] [PATCH 6/7] gnu: Add stefil., [bug#37817] [PATCH 7/7] gnu: Add graph., Pierre Neidhardt, 2019/10/21
- [bug#37817] [PATCH 1/7] gnu: Add cl-heap., [bug#37817] [PATCH 2/7] gnu: Add curry-compose-reader-macros., [bug#37817] [PATCH 3/7] gnu: Add yason., [bug#37817] [PATCH 4/7] gnu: sbcl-iterate: Add missing native input., [bug#37817] [PATCH 5/7] gnu: Add ecl-iterate., [bug#37817] [PATCH 6/7] gnu: Add stefil., [bug#37817] [PATCH 7/7] gnu: Add graph., Guillaume Le Vaillant, 2019/10/21
- [bug#37817] [PATCH 1/7] gnu: Add cl-heap., [bug#37817] [PATCH 2/7] gnu: Add curry-compose-reader-macros., [bug#37817] [PATCH 3/7] gnu: Add yason., [bug#37817] [PATCH 4/7] gnu: sbcl-iterate: Add missing native input., [bug#37817] [PATCH 5/7] gnu: Add ecl-iterate., [bug#37817] [PATCH 6/7] gnu: Add stefil., [bug#37817] [PATCH 7/7] gnu: Add graph., Pierre Neidhardt, 2019/10/21
- [bug#37817] [PATCH v2 1/9] gnu: Add cl-heap.,
Guillaume Le Vaillant <=
- [bug#37817] [PATCH v2 3/9] gnu: Add yason., Guillaume Le Vaillant, 2019/10/21
- [bug#37817] [PATCH v2 4/9] gnu: sbcl-iterate: Add missing native input., Guillaume Le Vaillant, 2019/10/21
- [bug#37817] [PATCH v2 6/9] gnu: Add stefil., Guillaume Le Vaillant, 2019/10/21
- [bug#37817] [PATCH v2 5/9] gnu: Add ecl-iterate., Guillaume Le Vaillant, 2019/10/21
- [bug#37817] [PATCH v2 7/9] gnu: Add graph., Guillaume Le Vaillant, 2019/10/21
- [bug#37817] [PATCH v2 2/9] gnu: Add curry-compose-reader-macros., Guillaume Le Vaillant, 2019/10/21
- [bug#37817] [PATCH v2 9/9] gnu: Add sbcl-graph-json., Guillaume Le Vaillant, 2019/10/21
- [bug#37817] [PATCH v2 8/9] gnu: Add sbcl-graph-dot., Guillaume Le Vaillant, 2019/10/21
- [bug#37817] [PATCH 1/7] gnu: Add cl-heap., [bug#37817] [PATCH 2/7] gnu: Add curry-compose-reader-macros., [bug#37817] [PATCH 3/7] gnu: Add yason., [bug#37817] [PATCH 4/7] gnu: sbcl-iterate: Add missing native input., [bug#37817] [PATCH 5/7] gnu: Add ecl-iterate., [bug#37817] [PATCH 6/7] gnu: Add stefil., [bug#37817] [PATCH 7/7] gnu: Add graph., Pierre Neidhardt, 2019/10/22