all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#73616] [PATCH 0/2] Add cl-s-graphviz and its dependency cl-literate-lisp.
@ 2024-10-03 14:37 Konrad Hinsen
  2024-10-03 14:40 ` [bug#73616] [PATCH 1/2] gnu: Add cl-literate-lisp Konrad Hinsen
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Konrad Hinsen @ 2024-10-03 14:37 UTC (permalink / raw)
  To: 73616

Konrad Hinsen (2):
  gnu: Add cl-literate-lisp.
  gnu: Add cl-s-graphviz.

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


base-commit: 308877be17b2c2c92d972e105e8cc6a782ab4c82
-- 
2.46.0





^ permalink raw reply	[flat|nested] 4+ messages in thread

* [bug#73616] [PATCH 1/2] gnu: Add cl-literate-lisp.
  2024-10-03 14:37 [bug#73616] [PATCH 0/2] Add cl-s-graphviz and its dependency cl-literate-lisp Konrad Hinsen
@ 2024-10-03 14:40 ` Konrad Hinsen
  2024-10-03 14:41 ` [bug#73616] [PATCH 2/2] gnu: Add cl-s-graphviz Konrad Hinsen
  2024-10-06 10:03 ` bug#73616: [PATCH 0/2] Add cl-s-graphviz and its dependency cl-literate-lisp Guillaume Le Vaillant
  2 siblings, 0 replies; 4+ messages in thread
From: Konrad Hinsen @ 2024-10-03 14:40 UTC (permalink / raw)
  To: 73616

* gnu/packages/lisp-xyz.scm (cl-literate-lisp, ecl-literate-lisp,
sbcl-literate-lisp): New variables.

Change-Id: I2b72273c3611d9394d107ad030f21fa7538120b8
---
 gnu/packages/lisp-xyz.scm | 33 +++++++++++++++++++++++++++++++++
 1 file changed, 33 insertions(+)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 64fe6d3181..d6f18ad18d 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -19721,6 +19721,39 @@ (define-public cl-listopia
 (define-public ecl-listopia
   (sbcl-package->ecl-package sbcl-listopia))
 
+(define-public sbcl-literate-lisp
+  (let ((commit "76d4d2c16ab08296d58e0ef3c41861b615e697c0"))
+    (package
+      (name "sbcl-literate-lisp")
+      (version "0.6")
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/jingtaozf/literate-lisp")
+               (commit commit)))
+         (file-name (git-file-name "literate-lisp" version))
+         (sha256
+          (base32 "0smxf0a62dnwcfxsbsdkx4n5nqx9dlxdz6c2vfivxpqld6d6ap02"))))
+      (build-system asdf-build-system/sbcl)
+      (inputs
+       (list sbcl-cl-ppcre
+             sbcl-iterate
+             sbcl-cl-fad))
+      (native-inputs
+       (list sbcl-fiveam))
+      (home-page "https://github.com/jingtaozf/literate-lisp")
+      (synopsis "Load Common Lisp code blocks from Org-mode files")
+      (description "This package extends the Common Lisp reader
+syntax such that is accepts Org files as Lisp source code files.")
+      (license license:expat))))
+
+(define-public cl-literate-lisp
+  (sbcl-package->cl-source-package sbcl-literate-lisp))
+
+(define-public ecl-literate-lisp
+  (sbcl-package->ecl-package sbcl-literate-lisp))
+
 (define-public sbcl-livesupport
   (let ((commit "71e6e412df9f3759ad8378fabb203913d82e228a")
 	(revision "1"))
-- 
2.46.0




^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [bug#73616] [PATCH 2/2] gnu: Add cl-s-graphviz.
  2024-10-03 14:37 [bug#73616] [PATCH 0/2] Add cl-s-graphviz and its dependency cl-literate-lisp Konrad Hinsen
  2024-10-03 14:40 ` [bug#73616] [PATCH 1/2] gnu: Add cl-literate-lisp Konrad Hinsen
@ 2024-10-03 14:41 ` Konrad Hinsen
  2024-10-06 10:03 ` bug#73616: [PATCH 0/2] Add cl-s-graphviz and its dependency cl-literate-lisp Guillaume Le Vaillant
  2 siblings, 0 replies; 4+ messages in thread
From: Konrad Hinsen @ 2024-10-03 14:41 UTC (permalink / raw)
  To: 73616

* gnu/packages/lisp-xyz.scm (cl-s-graphviz, ecl-s-graphviz,
sbcl-s-graphviz): New variables.

Change-Id: I501e7f48fb3f04380ded5670b522d1ff936d32a4
---
 gnu/packages/lisp-xyz.scm | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index d6f18ad18d..13d6923d5a 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -25993,6 +25993,37 @@ (define-public cl-s-base64
 (define-public ecl-s-base64
   (sbcl-package->ecl-package sbcl-s-base64))
 
+(define-public sbcl-s-graphviz
+  (let ((commit "a06d9573f0d4e21751b0ae782515b63a40ad6eae"))
+    (package
+      (name "sbcl-s-graphviz")
+      (version "2.0")
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/jingtaozf/s-graphviz")
+               (commit commit)))
+         (file-name (git-file-name "s-graphviz" version))
+         (sha256
+          (base32 "1841xwci6y1gfhg15464wrlnw8xgsh1mwbg4yy2y7di02q4fbma2"))))
+      (build-system asdf-build-system/sbcl)
+      (inputs
+       (list sbcl-iterate))
+      (native-inputs
+       (list sbcl-literate-lisp))
+      (home-page "https://github.com/jingtaozf/s-graphviz")
+      (synopsis "S-expression representation of the GraphViz DOT Language")
+      (description "This package creates GraphViz DOT files from
+an equivalent s-expression representation.")
+      (license license:expat))))
+
+(define-public cl-s-graphviz
+  (sbcl-package->cl-source-package sbcl-s-graphviz))
+
+(define-public ecl-s-graphviz
+  (sbcl-package->ecl-package sbcl-s-graphviz))
+
 (define-public sbcl-s-sysdeps
   ;; No release since 2013.
   (let ((commit "7f8de283b7fbd8b038fdf08493063a736db36ce7")
-- 
2.46.0




^ permalink raw reply related	[flat|nested] 4+ messages in thread

* bug#73616: [PATCH 0/2] Add cl-s-graphviz and its dependency cl-literate-lisp.
  2024-10-03 14:37 [bug#73616] [PATCH 0/2] Add cl-s-graphviz and its dependency cl-literate-lisp Konrad Hinsen
  2024-10-03 14:40 ` [bug#73616] [PATCH 1/2] gnu: Add cl-literate-lisp Konrad Hinsen
  2024-10-03 14:41 ` [bug#73616] [PATCH 2/2] gnu: Add cl-s-graphviz Konrad Hinsen
@ 2024-10-06 10:03 ` Guillaume Le Vaillant
  2 siblings, 0 replies; 4+ messages in thread
From: Guillaume Le Vaillant @ 2024-10-06 10:03 UTC (permalink / raw)
  To: Konrad Hinsen; +Cc: 73616-done

[-- Attachment #1: Type: text/plain, Size: 114 bytes --]

Patches applied as 91cb1bb5829d6191288bd45331ce59630e35d346 and
following with a few minor modifications.
Thanks.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 247 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2024-10-06 10:04 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-03 14:37 [bug#73616] [PATCH 0/2] Add cl-s-graphviz and its dependency cl-literate-lisp Konrad Hinsen
2024-10-03 14:40 ` [bug#73616] [PATCH 1/2] gnu: Add cl-literate-lisp Konrad Hinsen
2024-10-03 14:41 ` [bug#73616] [PATCH 2/2] gnu: Add cl-s-graphviz Konrad Hinsen
2024-10-06 10:03 ` bug#73616: [PATCH 0/2] Add cl-s-graphviz and its dependency cl-literate-lisp Guillaume Le Vaillant

Code repositories for project(s) associated with this external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.