all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#48550] [PATCH 2/2]: gnu: sbcl-cl-html5-parser: Update to 0.0.0-2.74a92eb
@ 2021-05-20 22:05 Sharlatan Hellseher
  2021-05-20 22:08 ` [bug#48550] [PATCH 1/2]: gnu: Add json-streams Sharlatan Hellseher
  2021-05-21  9:23 ` bug#48550: [PATCH 2/2]: gnu: sbcl-cl-html5-parser: Update to 0.0.0-2.74a92eb Guillaume Le Vaillant
  0 siblings, 2 replies; 3+ messages in thread
From: Sharlatan Hellseher @ 2021-05-20 22:05 UTC (permalink / raw)
  To: 48550

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

-- 
… наш разум - превосходная объяснительная машина которая способна
найти смысл почти в чем угодно, истолковать любой феномен, но
совершенно не в состоянии принять мысль о непредсказуемости.

[-- Attachment #2: 0002-gnu-sbcl-cl-html5-parser-Update-to-0.0.0-2.74a92eb.patch --]
[-- Type: text/x-patch, Size: 1491 bytes --]

From f74321dd73bb305dd835c456f4c84b4cbaad20c3 Mon Sep 17 00:00:00 2001
From: Sharlatan Hellseher <sharlatanus@gmail.com>
Date: Thu, 20 May 2021 23:00:35 +0100
Subject: [PATCH 2/2] gnu: sbcl-cl-html5-parser: Update to 0.0.0-2.74a92eb

* gnu/packages/lisp-xyz.scm: (sbcl-cl-html5-parser)
  [arguments]: Enable tests, clean up not required #:asd-systems
  [native-inputs]: Add json-streams, split-sequence and stefil
---
 gnu/packages/lisp-xyz.scm | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 64394821db..689be8c4ae 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -15370,7 +15370,7 @@ Lisp.")
 
 (define-public sbcl-cl-html5-parser
   (let ((commit "74a92eb3a183a0afd089ea33350e816e6b9aeefa")
-        (revision "1"))
+        (revision "2"))
     (package
       (name "sbcl-cl-html5-parser")
       (version (git-version "0.0.0" revision commit))
@@ -15384,9 +15384,10 @@ Lisp.")
          (sha256
           (base32 "04if61wigylsmn996rbfl8ylsd0d9hzdmg7p2wiglncibjzcl5k9"))))
       (build-system asdf-build-system/sbcl)
-      (arguments
-       '(#:tests? #f
-         #:asd-systems '("cl-html5-parser")))
+      (native-inputs
+       `(("json-streams" ,sbcl-json-streams)
+         ("split-sequence" ,sbcl-split-sequence)
+         ("stefil" ,sbcl-stefil)))
       (inputs
        `(("cl-ppcre" ,sbcl-cl-ppcre)
          ("flexi-stream" ,sbcl-flexi-streams)
-- 
2.31.1


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

* [bug#48550] [PATCH 1/2]: gnu: Add json-streams
  2021-05-20 22:05 [bug#48550] [PATCH 2/2]: gnu: sbcl-cl-html5-parser: Update to 0.0.0-2.74a92eb Sharlatan Hellseher
@ 2021-05-20 22:08 ` Sharlatan Hellseher
  2021-05-21  9:23 ` bug#48550: [PATCH 2/2]: gnu: sbcl-cl-html5-parser: Update to 0.0.0-2.74a92eb Guillaume Le Vaillant
  1 sibling, 0 replies; 3+ messages in thread
From: Sharlatan Hellseher @ 2021-05-20 22:08 UTC (permalink / raw)
  To: 48550

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

-- 
… наш разум - превосходная объяснительная машина которая способна
найти смысл почти в чем угодно, истолковать любой феномен, но
совершенно не в состоянии принять мысль о непредсказуемости.

[-- Attachment #2: 0001-gnu-Add-json-streams.patch --]
[-- Type: text/x-patch, Size: 1911 bytes --]

From 2ca9e1850acf93650dcf4c3c42e8249254245fd9 Mon Sep 17 00:00:00 2001
From: Sharlatan Hellseher <sharlatanus@gmail.com>
Date: Thu, 20 May 2021 22:55:55 +0100
Subject: [PATCH 1/2] gnu: Add json-streams

* gnu/packages/lisp-xyz.scm (sbcl-json-streams, ecl-json-streams,
  cl-json-streams): New variables.
---
 gnu/packages/lisp-xyz.scm | 32 ++++++++++++++++++++++++++++++++
 1 file changed, 32 insertions(+)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 6149536047..64394821db 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -16812,3 +16812,35 @@ format.")
 
 (define-public ecl-woo
   (sbcl-package->ecl-package sbcl-woo))
+
+(define-public sbcl-json-streams
+  (let ((commit "5da012e8133affbf75024e7500feb37394690752")
+        (revision "1"))
+    (package
+      (name "sbcl-json-streams")
+      (version (git-version "0.0.0" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/rotatef/json-streams")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "0cia3721im04q73dfkd688d8splgpz03qa4h8s3r39kar4w3xll2"))))
+      (build-system asdf-build-system/sbcl)
+      (native-inputs
+       `(("cl-quickcheck" ,sbcl-cl-quickcheck)
+         ("flexi-streams" ,sbcl-flexi-streams)))
+      (home-page "https://github.com/rotatef/json-streams")
+      (synopsis "Common Lisp library for reading and writing JSON")
+      (description
+       "This package provides a stream based JSON parser/writer, well suited for
+higher as building block for higher level libraries.")
+      (license license:gpl3+))))
+
+(define-public cl-json-streams
+  (sbcl-package->cl-source-package sbcl-json-streams))
+
+(define-public ecl-json-streams
+  (sbcl-package->ecl-package sbcl-json-streams))
-- 
2.31.1


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

* bug#48550: [PATCH 2/2]: gnu: sbcl-cl-html5-parser: Update to 0.0.0-2.74a92eb
  2021-05-20 22:05 [bug#48550] [PATCH 2/2]: gnu: sbcl-cl-html5-parser: Update to 0.0.0-2.74a92eb Sharlatan Hellseher
  2021-05-20 22:08 ` [bug#48550] [PATCH 1/2]: gnu: Add json-streams Sharlatan Hellseher
@ 2021-05-21  9:23 ` Guillaume Le Vaillant
  1 sibling, 0 replies; 3+ messages in thread
From: Guillaume Le Vaillant @ 2021-05-21  9:23 UTC (permalink / raw)
  To: Sharlatan Hellseher; +Cc: 48550-done

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

Patches pushed as 20eb41b66adc5933cf34323a3c010b8d57ab7eae and following
with a few modifications.
Thanks.

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

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

end of thread, other threads:[~2021-05-21  9:25 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-20 22:05 [bug#48550] [PATCH 2/2]: gnu: sbcl-cl-html5-parser: Update to 0.0.0-2.74a92eb Sharlatan Hellseher
2021-05-20 22:08 ` [bug#48550] [PATCH 1/2]: gnu: Add json-streams Sharlatan Hellseher
2021-05-21  9:23 ` bug#48550: [PATCH 2/2]: gnu: sbcl-cl-html5-parser: Update to 0.0.0-2.74a92eb 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.