unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Guillaume Le Vaillant <glv@posteo.net>
To: 37817@debbugs.gnu.org
Cc: Guillaume Le Vaillant <glv@posteo.net>
Subject: [bug#37817] [PATCH 1/7] gnu: Add cl-heap.
Date: Fri, 18 Oct 2019 22:42:00 +0200	[thread overview]
Message-ID: <20191018204206.15154-1-glv@posteo.net> (raw)
In-Reply-To: <87k191x006.fsf@yamatai>

* 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 bb2a589578..e407093348 100644
--- a/gnu/packages/lisp.scm
+++ b/gnu/packages/lisp.scm
@@ -7833,3 +7833,33 @@ Clojure, as well as several expansions on the idea.")
 
 (define-public ecl-arrows
   (sbcl-package->ecl-package sbcl-arrows))
+
+(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

  reply	other threads:[~2019-10-18 20:43 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-10-18 20:38 [bug#37817] [PATCH 0/7] Add graph Common Lisp library and dependencies Guillaume Le Vaillant
2019-10-18 20:42 ` Guillaume Le Vaillant [this message]
2019-10-18 20:42   ` [bug#37817] [PATCH 2/7] gnu: Add curry-compose-reader-macros Guillaume Le Vaillant
2019-10-18 20:42   ` [bug#37817] [PATCH 3/7] gnu: Add yason Guillaume Le Vaillant
2019-10-18 20:42   ` [bug#37817] [PATCH 4/7] gnu: sbcl-iterate: Add missing native input Guillaume Le Vaillant
2019-10-18 20:42   ` [bug#37817] [PATCH 5/7] gnu: Add ecl-iterate Guillaume Le Vaillant
2019-10-18 20:42   ` [bug#37817] [PATCH 6/7] gnu: Add stefil Guillaume Le Vaillant
2019-10-18 20:42   ` [bug#37817] [PATCH 7/7] gnu: Add graph Guillaume Le Vaillant
2019-10-21  9:16   ` [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., " Pierre Neidhardt
2019-10-21 10:05     ` Guillaume Le Vaillant
2019-10-21 10:16       ` Pierre Neidhardt
2019-10-21 12:02         ` [bug#37817] [PATCH v2 1/9] gnu: Add cl-heap Guillaume Le Vaillant
2019-10-21 12:02           ` [bug#37817] [PATCH v2 2/9] gnu: Add curry-compose-reader-macros Guillaume Le Vaillant
2019-10-21 12:02           ` [bug#37817] [PATCH v2 3/9] gnu: Add yason Guillaume Le Vaillant
2019-10-21 12:02           ` [bug#37817] [PATCH v2 4/9] gnu: sbcl-iterate: Add missing native input Guillaume Le Vaillant
2019-10-21 12:02           ` [bug#37817] [PATCH v2 5/9] gnu: Add ecl-iterate Guillaume Le Vaillant
2019-10-21 12:03           ` [bug#37817] [PATCH v2 6/9] gnu: Add stefil Guillaume Le Vaillant
2019-10-21 12:03           ` [bug#37817] [PATCH v2 7/9] gnu: Add graph Guillaume Le Vaillant
2019-10-21 12:03           ` [bug#37817] [PATCH v2 8/9] gnu: Add sbcl-graph-dot Guillaume Le Vaillant
2019-10-21 12:03           ` [bug#37817] [PATCH v2 9/9] gnu: Add sbcl-graph-json Guillaume Le Vaillant
2019-10-22  8:50         ` [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

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20191018204206.15154-1-glv@posteo.net \
    --to=glv@posteo.net \
    --cc=37817@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).