GNU bug report logs - #57719
[PATCH] gnu: Add cl-draw-cons-tree.

Previous Next

Package: guix-patches;

Reported by: jgart <jgart <at> dismail.de>

Date: Sat, 10 Sep 2022 17:46:01 UTC

Severity: normal

Tags: patch

Done: Guillaume Le Vaillant <glv <at> posteo.net>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 57719 in the body.
You can then email your comments to 57719 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#57719; Package guix-patches. (Sat, 10 Sep 2022 17:46:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to jgart <jgart <at> dismail.de>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Sat, 10 Sep 2022 17:46:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: jgart <jgart <at> dismail.de>
To: guix-patches <at> gnu.org
Cc: jgart <jgart <at> dismail.de>
Subject: [PATCH] gnu: Add cl-draw-cons-tree.
Date: Sat, 10 Sep 2022 12:45:03 -0500
* gnu/packages/lisp-xyz.scm (cl-draw-cons-tree): New variable.
---
 gnu/packages/lisp-xyz.scm | 37 +++++++++++++++++++++++++++++++++++++
 1 file changed, 37 insertions(+)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 606aa06300..8ceaf990d2 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -23901,6 +23901,43 @@ (define-public cl-definitions-systems
 (define-public ecl-definitions-systems
   (sbcl-package->ecl-package sbcl-definitions-systems))
 
+(define-public sbcl-draw-cons-tree
+  (let ((commit "04334f5885a85cd7127db8dda3f6d6686a0438b1")
+        (revision "0"))
+    (package
+     (name "sbcl-draw-cons-tree")
+     (version (git-version "20220205" revision commit))
+     ;; https://github.com/quicklisp/quicklisp-projects/issues/2149
+     (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/phoe-trash/draw-cons-tree")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "1523bdkq8a5qn0qp9q7r16w47y6jb0hkfj7hbjfj6mg3xv001s3x"))))
+     (build-system asdf-build-system/sbcl)
+     (arguments
+      `(#:tests? #f ; There are no tests.
+        #:asd-systems '("draw-cons-tree" "draw-cons-tree/test")))
+     (native-inputs
+       (list sbcl-split-sequence
+             sbcl-fiveam))
+     (inputs
+       (list sbcl-alexandria))
+     (synopsis "Draws an ascii picture of a cons tree")
+     (description
+"@code{cl-draw-cons-tree} draws a cons tree in ASCII-art style.")
+     (home-page "https://github.com/cbaggers/draw-cons-tree/")
+     (license license:unlicense))))
+
+(define-public cl-draw-cons-tree
+  (sbcl-package->cl-source-package sbcl-draw-cons-tree))
+
+(define-public ecl-draw-cons-tree
+  (sbcl-package->ecl-package sbcl-draw-cons-tree))
+
 (define-public sbcl-smug
   (let ((commit "647a2428df297e1dd183ba7c19574bdb1320ae79")
         (revision "0"))
-- 
2.37.3





Information forwarded to guix-patches <at> gnu.org:
bug#57719; Package guix-patches. (Sat, 10 Sep 2022 17:49:02 GMT) Full text and rfc822 format available.

Message #8 received at 57719 <at> debbugs.gnu.org (full text, mbox):

From: jgart <jgart <at> dismail.de>
To: 57719 <at> debbugs.gnu.org
Cc: jgart <jgart <at> dismail.de>
Subject: [PATCH v2] gnu: Add cl-draw-cons-tree.
Date: Sat, 10 Sep 2022 12:47:54 -0500
* gnu/packages/lisp-xyz.scm (cl-draw-cons-tree): New variable.

Updated the uri to the new fork home page.

all best,

jgart
---
 gnu/packages/lisp-xyz.scm | 37 +++++++++++++++++++++++++++++++++++++
 1 file changed, 37 insertions(+)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 606aa06300..c69f67b6d5 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -23901,6 +23901,43 @@ (define-public cl-definitions-systems
 (define-public ecl-definitions-systems
   (sbcl-package->ecl-package sbcl-definitions-systems))
 
+(define-public sbcl-draw-cons-tree
+  (let ((commit "04334f5885a85cd7127db8dda3f6d6686a0438b1")
+        (revision "0"))
+    (package
+     (name "sbcl-draw-cons-tree")
+     (version (git-version "20220205" revision commit))
+     ;; https://github.com/quicklisp/quicklisp-projects/issues/2149
+     (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/phoe/draw-cons-tree")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "1523bdkq8a5qn0qp9q7r16w47y6jb0hkfj7hbjfj6mg3xv001s3x"))))
+     (build-system asdf-build-system/sbcl)
+     (arguments
+      `(#:tests? #f ; There are no tests.
+        #:asd-systems '("draw-cons-tree" "draw-cons-tree/test")))
+     (native-inputs
+       (list sbcl-split-sequence
+             sbcl-fiveam))
+     (inputs
+       (list sbcl-alexandria))
+     (synopsis "Draws an ascii picture of a cons tree")
+     (description
+"@code{cl-draw-cons-tree} draws a cons tree in ASCII-art style.")
+     (home-page "https://github.com/phoe/draw-cons-tree/")
+     (license license:unlicense))))
+
+(define-public cl-draw-cons-tree
+  (sbcl-package->cl-source-package sbcl-draw-cons-tree))
+
+(define-public ecl-draw-cons-tree
+  (sbcl-package->ecl-package sbcl-draw-cons-tree))
+
 (define-public sbcl-smug
   (let ((commit "647a2428df297e1dd183ba7c19574bdb1320ae79")
         (revision "0"))
-- 
2.37.3





Information forwarded to guix-patches <at> gnu.org:
bug#57719; Package guix-patches. (Sat, 10 Sep 2022 17:52:02 GMT) Full text and rfc822 format available.

Message #11 received at 57719 <at> debbugs.gnu.org (full text, mbox):

From: jgart <jgart <at> dismail.de>
To: 57719 <at> debbugs.gnu.org
Cc: jgart <jgart <at> dismail.de>
Subject: [PATCH v3] gnu: Add cl-draw-cons-tree.
Date: Sat, 10 Sep 2022 12:50:53 -0500
* gnu/packages/lisp-xyz.scm (cl-draw-cons-tree): New variable.

There's a version number on this package in:

https://github.com/phoe/draw-cons-tree/commit/04334f5885a85cd7127db8dda3f6d6686a0438b1

Here's v3
---
 gnu/packages/lisp-xyz.scm | 37 +++++++++++++++++++++++++++++++++++++
 1 file changed, 37 insertions(+)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 606aa06300..f8136ff393 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -23901,6 +23901,43 @@ (define-public cl-definitions-systems
 (define-public ecl-definitions-systems
   (sbcl-package->ecl-package sbcl-definitions-systems))
 
+(define-public sbcl-draw-cons-tree
+  (let ((commit "04334f5885a85cd7127db8dda3f6d6686a0438b1")
+        (revision "0"))
+    (package
+     (name "sbcl-draw-cons-tree")
+     (version (git-version "1.0" revision commit))
+     ;; https://github.com/quicklisp/quicklisp-projects/issues/2149
+     (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/phoe/draw-cons-tree")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "1523bdkq8a5qn0qp9q7r16w47y6jb0hkfj7hbjfj6mg3xv001s3x"))))
+     (build-system asdf-build-system/sbcl)
+     (arguments
+      `(#:tests? #f ; There are no tests.
+        #:asd-systems '("draw-cons-tree" "draw-cons-tree/test")))
+     (native-inputs
+       (list sbcl-split-sequence
+             sbcl-fiveam))
+     (inputs
+       (list sbcl-alexandria))
+     (synopsis "Draws an ascii picture of a cons tree")
+     (description
+"@code{cl-draw-cons-tree} draws a cons tree in ASCII-art style.")
+     (home-page "https://github.com/phoe/draw-cons-tree/")
+     (license license:unlicense))))
+
+(define-public cl-draw-cons-tree
+  (sbcl-package->cl-source-package sbcl-draw-cons-tree))
+
+(define-public ecl-draw-cons-tree
+  (sbcl-package->ecl-package sbcl-draw-cons-tree))
+
 (define-public sbcl-smug
   (let ((commit "647a2428df297e1dd183ba7c19574bdb1320ae79")
         (revision "0"))
-- 
2.37.3





Information forwarded to guix-patches <at> gnu.org:
bug#57719; Package guix-patches. (Sat, 10 Sep 2022 18:01:02 GMT) Full text and rfc822 format available.

Message #14 received at 57719 <at> debbugs.gnu.org (full text, mbox):

From: jgart <jgart <at> dismail.de>
To: 57719 <at> debbugs.gnu.org
Cc: jgart <jgart <at> dismail.de>
Subject: [PATCH v4] gnu: Add cl-draw-cons-tree.
Date: Sat, 10 Sep 2022 13:00:11 -0500
* gnu/packages/lisp-xyz.scm (cl-draw-cons-tree): New variable.

Tests were disabled ;()

I enabled them now.

Thanks!

all best,

jgart
---
 gnu/packages/lisp-xyz.scm | 34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 606aa06300..dc5ceb9ee0 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -23901,6 +23901,40 @@ (define-public cl-definitions-systems
 (define-public ecl-definitions-systems
   (sbcl-package->ecl-package sbcl-definitions-systems))
 
+(define-public sbcl-draw-cons-tree
+  (let ((commit "04334f5885a85cd7127db8dda3f6d6686a0438b1")
+        (revision "0"))
+    (package
+     (name "sbcl-draw-cons-tree")
+     (version (git-version "1.0" revision commit))
+     ;; https://github.com/quicklisp/quicklisp-projects/issues/2149
+     (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/phoe/draw-cons-tree")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "1523bdkq8a5qn0qp9q7r16w47y6jb0hkfj7hbjfj6mg3xv001s3x"))))
+     (build-system asdf-build-system/sbcl)
+     (native-inputs
+       (list sbcl-split-sequence
+             sbcl-fiveam))
+     (inputs
+       (list sbcl-alexandria))
+     (synopsis "Draws an ascii picture of a cons tree")
+     (description
+"@code{cl-draw-cons-tree} draws a cons tree in ASCII-art style.")
+     (home-page "https://github.com/phoe/draw-cons-tree/")
+     (license license:unlicense))))
+
+(define-public cl-draw-cons-tree
+  (sbcl-package->cl-source-package sbcl-draw-cons-tree))
+
+(define-public ecl-draw-cons-tree
+  (sbcl-package->ecl-package sbcl-draw-cons-tree))
+
 (define-public sbcl-smug
   (let ((commit "647a2428df297e1dd183ba7c19574bdb1320ae79")
         (revision "0"))
-- 
2.37.3





Reply sent to Guillaume Le Vaillant <glv <at> posteo.net>:
You have taken responsibility. (Sun, 11 Sep 2022 11:30:01 GMT) Full text and rfc822 format available.

Notification sent to jgart <jgart <at> dismail.de>:
bug acknowledged by developer. (Sun, 11 Sep 2022 11:30:02 GMT) Full text and rfc822 format available.

Message #19 received at 57719-done <at> debbugs.gnu.org (full text, mbox):

From: Guillaume Le Vaillant <glv <at> posteo.net>
To: jgart <jgart <at> dismail.de>
Cc: 57719-done <at> debbugs.gnu.org
Subject: Re: [bug#57719] [PATCH v4] gnu: Add cl-draw-cons-tree.
Date: Sun, 11 Sep 2022 11:28:26 +0000
[Message part 1 (text/plain, inline)]
Patch pushed as 1da91705b0b01b9578353777567e6058242ebb5b.
Thanks.
[signature.asc (application/pgp-signature, inline)]

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Mon, 10 Oct 2022 11:24:07 GMT) Full text and rfc822 format available.

This bug report was last modified 1 year and 170 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.