all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#68127] [PATCH 0/2] gnu: cl-coalton: Update to 0.0.1-4.9393424.
@ 2023-12-30  2:12 Paul A. Patience
  2023-12-30  2:14 ` [bug#68127] [PATCH 1/2] gnu: cl-eclector: Update to 0.9.0-0.d499b09 Paul A. Patience
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Paul A. Patience @ 2023-12-30  2:12 UTC (permalink / raw)
  To: 68127; +Cc: Paul A. Patience

Paul A. Patience (2):
  gnu: cl-eclector: Update to 0.9.0-0.d499b09.
  gnu: cl-coalton: Update to 0.0.1-4.9393424.

 gnu/packages/lisp-xyz.scm | 69 ++++++++++++++++++++-------------------
 1 file changed, 36 insertions(+), 33 deletions(-)


base-commit: d4cef7edffe0283949fc0f06d7796cea3543b92f
-- 
2.41.0






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

* [bug#68127] [PATCH 1/2] gnu: cl-eclector: Update to 0.9.0-0.d499b09.
  2023-12-30  2:12 [bug#68127] [PATCH 0/2] gnu: cl-coalton: Update to 0.0.1-4.9393424 Paul A. Patience
@ 2023-12-30  2:14 ` Paul A. Patience
  2023-12-30  2:14 ` [bug#68127] [PATCH 2/2] gnu: cl-coalton: Update to 0.0.1-4.9393424 Paul A. Patience
  2024-01-04 14:17 ` bug#68127: [PATCH 0/2] " Guillaume Le Vaillant
  2 siblings, 0 replies; 4+ messages in thread
From: Paul A. Patience @ 2023-12-30  2:14 UTC (permalink / raw)
  To: 68127; +Cc: Paul A. Patience

* gnu/packages/lisp-xyz.scm (sbcl-eclector): Update to 0.9.0-0.d499b09.

Change-Id: Idb4dd189c39eed98b7992271a5dd4354c02ef641
---
 gnu/packages/lisp-xyz.scm | 58 ++++++++++++++++++++-------------------
 1 file changed, 30 insertions(+), 28 deletions(-)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 1625197550..7323575b20 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -18195,33 +18195,35 @@ (define-public cl-concrete-syntax-tree
   (sbcl-package->cl-source-package sbcl-concrete-syntax-tree))
 
 (define-public sbcl-eclector
-  (package
-    (name "sbcl-eclector")
-    (version "0.9.0")
-    (source
-     (origin
-       (method git-fetch)
-       (uri (git-reference
-             (url "https://github.com/s-expressionists/Eclector")
-             (commit version)))
-       (file-name (git-file-name "cl-eclector" version))
-       (sha256
-        (base32 "10whwpz08fkdcz59sz1b6rn5r1pdns5wnsb1g26gppiv3rrg3cvh"))))
-    (build-system asdf-build-system/sbcl)
-    (native-inputs
-     (list sbcl-fiveam))
-    (inputs
-     (list sbcl-acclimation
-           sbcl-alexandria
-           sbcl-closer-mop
-           sbcl-concrete-syntax-tree))
-    (arguments
-     '(#:asd-systems '("eclector"
-                       "eclector-concrete-syntax-tree")))
-    (home-page "https://s-expressionists.github.io/Eclector/")
-    (synopsis "Highly customizable, portable Common Lisp reader")
-    (description
-     "Eclector is a portable Common Lisp reader that is highly customizable,
+  (let ((commit "d499b09142c7e39b4ef52e821fa767d5a8d606a0")
+        (revision "0"))
+    (package
+      (name "sbcl-eclector")
+      (version (git-version "0.9.0" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/s-expressionists/Eclector")
+               (commit commit)))
+         (file-name (git-file-name "cl-eclector" version))
+         (sha256
+          (base32 "1sg8wmdpm8pcjwk394way5vs2ya3r995lddmi51q9zfn9hmzb7gn"))))
+      (build-system asdf-build-system/sbcl)
+      (native-inputs
+       (list sbcl-fiveam))
+      (inputs
+       (list sbcl-acclimation
+             sbcl-alexandria
+             sbcl-closer-mop
+             sbcl-concrete-syntax-tree))
+      (arguments
+       '(#:asd-systems '("eclector"
+                         "eclector-concrete-syntax-tree")))
+      (home-page "https://s-expressionists.github.io/Eclector/")
+      (synopsis "Highly customizable, portable Common Lisp reader")
+      (description
+       "Eclector is a portable Common Lisp reader that is highly customizable,
 can recover from errors and can return concrete syntax trees.
 
 In contrast to many other reader implementations, eclector can recover from
@@ -18230,7 +18232,7 @@ (define-public sbcl-eclector
 
 It can also produce instances of the concrete syntax tree classes provided by
 the concrete syntax tree library.")
-    (license license:bsd-2)))
+      (license license:bsd-2))))
 
 (define-public ecl-eclector
   (sbcl-package->ecl-package sbcl-eclector))
-- 
2.41.0






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

* [bug#68127] [PATCH 2/2] gnu: cl-coalton: Update to 0.0.1-4.9393424.
  2023-12-30  2:12 [bug#68127] [PATCH 0/2] gnu: cl-coalton: Update to 0.0.1-4.9393424 Paul A. Patience
  2023-12-30  2:14 ` [bug#68127] [PATCH 1/2] gnu: cl-eclector: Update to 0.9.0-0.d499b09 Paul A. Patience
@ 2023-12-30  2:14 ` Paul A. Patience
  2024-01-04 14:17 ` bug#68127: [PATCH 0/2] " Guillaume Le Vaillant
  2 siblings, 0 replies; 4+ messages in thread
From: Paul A. Patience @ 2023-12-30  2:14 UTC (permalink / raw)
  To: 68127; +Cc: Paul A. Patience

* gnu/packages/lisp-xyz.scm (sbcl-coalton): Update to 0.0.1-4.9393424.
  [inputs]: Remove sbcl-json-streams and sbcl-split-sequence.
  Add sbcl-concrete-syntax-tree, sbcl-eclector and sbcl-named-readtables.

Change-Id: Ibedd5bcf9b76e0300775503119babc4d4511e596
---
 gnu/packages/lisp-xyz.scm | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 7323575b20..d8fff7df5b 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -19870,8 +19870,8 @@ (define-public cl-abstract-classes
   (sbcl-package->cl-source-package sbcl-abstract-classes))
 
 (define-public sbcl-coalton
-  (let ((commit "ba758062bdc7c316438198601f43900c51df25d8")
-        (revision "3"))
+  (let ((commit "939342495f55991812c2c2767322c5e51e755216")
+        (revision "4"))
     (package
       (name "sbcl-coalton")
       (version (git-version "0.0.1" revision commit))
@@ -19883,16 +19883,17 @@ (define-public sbcl-coalton
                (commit commit)))
          (file-name (git-file-name "cl-coalton" version))
          (sha256
-          (base32 "08sxfla1gyf9pczylaq1cn2j1nr2gzc9w0pk6aarsa4q2770zhf7"))))
+          (base32 "08qzj3v4fvn9h87whyqg650rpap8lva7jr94d1akv6m2z62l5q68"))))
       (build-system asdf-build-system/sbcl)
       (native-inputs
        (list sbcl-fiasco))
       (inputs
        (list sbcl-alexandria
+             sbcl-concrete-syntax-tree
+             sbcl-eclector
              sbcl-float-features
              sbcl-fset
-             sbcl-json-streams
-             sbcl-split-sequence
+             sbcl-named-readtables
              sbcl-trivial-garbage))
       (home-page "https://coalton-lang.github.io")
       (synopsis "Dialect of ML in Common Lisp")
-- 
2.41.0






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

* bug#68127: [PATCH 0/2] gnu: cl-coalton: Update to 0.0.1-4.9393424.
  2023-12-30  2:12 [bug#68127] [PATCH 0/2] gnu: cl-coalton: Update to 0.0.1-4.9393424 Paul A. Patience
  2023-12-30  2:14 ` [bug#68127] [PATCH 1/2] gnu: cl-eclector: Update to 0.9.0-0.d499b09 Paul A. Patience
  2023-12-30  2:14 ` [bug#68127] [PATCH 2/2] gnu: cl-coalton: Update to 0.0.1-4.9393424 Paul A. Patience
@ 2024-01-04 14:17 ` Guillaume Le Vaillant
  2 siblings, 0 replies; 4+ messages in thread
From: Guillaume Le Vaillant @ 2024-01-04 14:17 UTC (permalink / raw)
  To: Paul A. Patience; +Cc: 68127-done

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

Patches applied as fe4c2a1277813d3f8e48671aad0a281e880a71cb and
following.
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-01-04 14:18 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-12-30  2:12 [bug#68127] [PATCH 0/2] gnu: cl-coalton: Update to 0.0.1-4.9393424 Paul A. Patience
2023-12-30  2:14 ` [bug#68127] [PATCH 1/2] gnu: cl-eclector: Update to 0.9.0-0.d499b09 Paul A. Patience
2023-12-30  2:14 ` [bug#68127] [PATCH 2/2] gnu: cl-coalton: Update to 0.0.1-4.9393424 Paul A. Patience
2024-01-04 14:17 ` bug#68127: [PATCH 0/2] " 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.