all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#62270] [PATCH 0/2] gnu: cl-eclector: Update to 0.9.0-0.711140a.
@ 2023-03-19  1:27 Paul A. Patience
  2023-03-19  1:28 ` [bug#62270] [PATCH 1/2] gnu: cl-eclector: Improve package style Paul A. Patience
  2023-03-19 19:42 ` [bug#62270] [PATCH v2 0/2] gnu: cl-eclector: Update to 0.9.0 Paul A. Patience
  0 siblings, 2 replies; 7+ messages in thread
From: Paul A. Patience @ 2023-03-19  1:27 UTC (permalink / raw)
  To: 62270; +Cc: Paul A. Patience

Paul A. Patience (2):
  gnu: cl-eclector: Improve package style.
  gnu: cl-eclector: Update to 0.9.0-0.711140a.

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

--
2.39.2






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

* [bug#62270] [PATCH 1/2] gnu: cl-eclector: Improve package style.
  2023-03-19  1:27 [bug#62270] [PATCH 0/2] gnu: cl-eclector: Update to 0.9.0-0.711140a Paul A. Patience
@ 2023-03-19  1:28 ` Paul A. Patience
  2023-03-19  1:28   ` [bug#62270] [PATCH 2/2] gnu: cl-eclector: Update to 0.9.0-0.711140a Paul A. Patience
  2023-03-19 19:42 ` [bug#62270] [PATCH v2 0/2] gnu: cl-eclector: Update to 0.9.0 Paul A. Patience
  1 sibling, 1 reply; 7+ messages in thread
From: Paul A. Patience @ 2023-03-19  1:28 UTC (permalink / raw)
  To: 62270; +Cc: Paul A. Patience

* gnu/packages/lisp-xyz.scm (sbcl-eclector):
[file-name]: Rename to cl-eclector.
[inputs]: Move below native-inputs and remove labels.
---
 gnu/packages/lisp-xyz.scm | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 38ac88a3ba..12ddcb65e5 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -16975,17 +16975,17 @@ (define-public sbcl-eclector
        (uri (git-reference
              (url "https://github.com/s-expressionists/Eclector")
              (commit version)))
-       (file-name (git-file-name name version))
+       (file-name (git-file-name "cl-eclector" version))
        (sha256
         (base32 "0bwkla0jdp5bg0q1zca5wg22b0nbdmglgax345nrhsf8bdrh47wm"))))
     (build-system asdf-build-system/sbcl)
-    (inputs
-     `(("acclimation" ,sbcl-acclimation)
-       ("alexandria" ,sbcl-alexandria)
-       ("closer-mop" ,sbcl-closer-mop)
-       ("concrete-syntax-tree" ,sbcl-concrete-syntax-tree)))
     (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")))
--
2.39.2






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

* [bug#62270] [PATCH 2/2] gnu: cl-eclector: Update to 0.9.0-0.711140a.
  2023-03-19  1:28 ` [bug#62270] [PATCH 1/2] gnu: cl-eclector: Improve package style Paul A. Patience
@ 2023-03-19  1:28   ` Paul A. Patience
  0 siblings, 0 replies; 7+ messages in thread
From: Paul A. Patience @ 2023-03-19  1:28 UTC (permalink / raw)
  To: 62270; +Cc: Paul A. Patience

* gnu/packages/lisp-xyz.scm (sbcl-eclector): Update to 0.9.0-0.711140a.
---
 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 12ddcb65e5..32470f1c0e 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -16966,33 +16966,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.5.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 "0bwkla0jdp5bg0q1zca5wg22b0nbdmglgax345nrhsf8bdrh47wm"))))
-    (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 "711140a1be3f957d5ef32df596b396f9c1ae7bd4")
+        (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 "1zv5551cs9da06kndafjjnf45cxjpva2va05wfds2pdnz9rpf7g7"))))
+      (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
@@ -17001,7 +17003,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.39.2






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

* [bug#62270] [PATCH v2 0/2] gnu: cl-eclector: Update to 0.9.0.
  2023-03-19  1:27 [bug#62270] [PATCH 0/2] gnu: cl-eclector: Update to 0.9.0-0.711140a Paul A. Patience
  2023-03-19  1:28 ` [bug#62270] [PATCH 1/2] gnu: cl-eclector: Improve package style Paul A. Patience
@ 2023-03-19 19:42 ` Paul A. Patience
  2023-03-19 19:42   ` [bug#62270] [PATCH v2 1/2] gnu: cl-eclector: Improve package style Paul A. Patience
                     ` (2 more replies)
  1 sibling, 3 replies; 7+ messages in thread
From: Paul A. Patience @ 2023-03-19 19:42 UTC (permalink / raw)
  To: 62270; +Cc: Paul A. Patience

v2 because Eclector 0.9.0 was released in the meantime.

Paul A. Patience (2):
  gnu: cl-eclector: Improve package style.
  gnu: cl-eclector: Update to 0.9.0.

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

--
2.39.2






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

* [bug#62270] [PATCH v2 1/2] gnu: cl-eclector: Improve package style.
  2023-03-19 19:42 ` [bug#62270] [PATCH v2 0/2] gnu: cl-eclector: Update to 0.9.0 Paul A. Patience
@ 2023-03-19 19:42   ` Paul A. Patience
  2023-03-19 19:42   ` [bug#62270] [PATCH v2 2/2] gnu: cl-eclector: Update to 0.9.0 Paul A. Patience
  2023-03-22  9:39   ` bug#62270: [PATCH v2 0/2] " Guillaume Le Vaillant
  2 siblings, 0 replies; 7+ messages in thread
From: Paul A. Patience @ 2023-03-19 19:42 UTC (permalink / raw)
  To: 62270; +Cc: Paul A. Patience

* gnu/packages/lisp-xyz.scm (sbcl-eclector):
[file-name]: Rename to cl-eclector.
[inputs]: Move below native-inputs and remove labels.
---
 gnu/packages/lisp-xyz.scm | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index da442ee58b..8ee8d28180 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -16975,17 +16975,17 @@ (define-public sbcl-eclector
        (uri (git-reference
              (url "https://github.com/s-expressionists/Eclector")
              (commit version)))
-       (file-name (git-file-name name version))
+       (file-name (git-file-name "cl-eclector" version))
        (sha256
         (base32 "0bwkla0jdp5bg0q1zca5wg22b0nbdmglgax345nrhsf8bdrh47wm"))))
     (build-system asdf-build-system/sbcl)
-    (inputs
-     `(("acclimation" ,sbcl-acclimation)
-       ("alexandria" ,sbcl-alexandria)
-       ("closer-mop" ,sbcl-closer-mop)
-       ("concrete-syntax-tree" ,sbcl-concrete-syntax-tree)))
     (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")))
--
2.39.2






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

* [bug#62270] [PATCH v2 2/2] gnu: cl-eclector: Update to 0.9.0.
  2023-03-19 19:42 ` [bug#62270] [PATCH v2 0/2] gnu: cl-eclector: Update to 0.9.0 Paul A. Patience
  2023-03-19 19:42   ` [bug#62270] [PATCH v2 1/2] gnu: cl-eclector: Improve package style Paul A. Patience
@ 2023-03-19 19:42   ` Paul A. Patience
  2023-03-22  9:39   ` bug#62270: [PATCH v2 0/2] " Guillaume Le Vaillant
  2 siblings, 0 replies; 7+ messages in thread
From: Paul A. Patience @ 2023-03-19 19:42 UTC (permalink / raw)
  To: 62270; +Cc: Paul A. Patience

* gnu/packages/lisp-xyz.scm (sbcl-eclector): Update to 0.9.0.
---
 gnu/packages/lisp-xyz.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 8ee8d28180..aadf705a17 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -16968,7 +16968,7 @@ (define-public cl-concrete-syntax-tree
 (define-public sbcl-eclector
   (package
     (name "sbcl-eclector")
-    (version "0.5.0")
+    (version "0.9.0")
     (source
      (origin
        (method git-fetch)
@@ -16977,7 +16977,7 @@ (define-public sbcl-eclector
              (commit version)))
        (file-name (git-file-name "cl-eclector" version))
        (sha256
-        (base32 "0bwkla0jdp5bg0q1zca5wg22b0nbdmglgax345nrhsf8bdrh47wm"))))
+        (base32 "10whwpz08fkdcz59sz1b6rn5r1pdns5wnsb1g26gppiv3rrg3cvh"))))
     (build-system asdf-build-system/sbcl)
     (native-inputs
      (list sbcl-fiveam))
--
2.39.2






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

* bug#62270: [PATCH v2 0/2] gnu: cl-eclector: Update to 0.9.0.
  2023-03-19 19:42 ` [bug#62270] [PATCH v2 0/2] gnu: cl-eclector: Update to 0.9.0 Paul A. Patience
  2023-03-19 19:42   ` [bug#62270] [PATCH v2 1/2] gnu: cl-eclector: Improve package style Paul A. Patience
  2023-03-19 19:42   ` [bug#62270] [PATCH v2 2/2] gnu: cl-eclector: Update to 0.9.0 Paul A. Patience
@ 2023-03-22  9:39   ` Guillaume Le Vaillant
  2 siblings, 0 replies; 7+ messages in thread
From: Guillaume Le Vaillant @ 2023-03-22  9:39 UTC (permalink / raw)
  To: Paul A. Patience; +Cc: 62270-done

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

Patches pushed as 4f77ece9d5fc2aeb7e1edf3a942fbd08a28a061b and
following.
Thanks.

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

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

end of thread, other threads:[~2023-03-22  9:40 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-03-19  1:27 [bug#62270] [PATCH 0/2] gnu: cl-eclector: Update to 0.9.0-0.711140a Paul A. Patience
2023-03-19  1:28 ` [bug#62270] [PATCH 1/2] gnu: cl-eclector: Improve package style Paul A. Patience
2023-03-19  1:28   ` [bug#62270] [PATCH 2/2] gnu: cl-eclector: Update to 0.9.0-0.711140a Paul A. Patience
2023-03-19 19:42 ` [bug#62270] [PATCH v2 0/2] gnu: cl-eclector: Update to 0.9.0 Paul A. Patience
2023-03-19 19:42   ` [bug#62270] [PATCH v2 1/2] gnu: cl-eclector: Improve package style Paul A. Patience
2023-03-19 19:42   ` [bug#62270] [PATCH v2 2/2] gnu: cl-eclector: Update to 0.9.0 Paul A. Patience
2023-03-22  9:39   ` bug#62270: [PATCH v2 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.