unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#68099] [PATCH 1/2] gnu: cl-flexi-streams: Update to 1.0.19-0.74a1027.
@ 2023-12-29 12:14 Paul A. Patience
  2023-12-29 12:17 ` [bug#68099] [PATCH 2/2] gnu: cl-flexi-streams: Improve package style Paul A. Patience
  2024-01-06  9:13 ` bug#68099: [PATCH 1/2] gnu: cl-flexi-streams: Update to 1.0.19-0.74a1027 Guillaume Le Vaillant
  0 siblings, 2 replies; 3+ messages in thread
From: Paul A. Patience @ 2023-12-29 12:14 UTC (permalink / raw)
  To: 68099; +Cc: Paul A. Patience

* gnu/packages/lisp-xyz.scm (sbcl-flexi-streams): Update to
  1.0.19-0.74a1027.

Change-Id: Id2b82050423aba4f6aa4055c95a18768f110ed71
---
 gnu/packages/lisp-xyz.scm | 52 ++++++++++++++++++++-------------------
 1 file changed, 27 insertions(+), 25 deletions(-)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 1625197550..e82b33eb92 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -1360,35 +1360,37 @@ (define-public ecl-trivial-gray-streams
   (sbcl-package->ecl-package sbcl-trivial-gray-streams))
 
 (define-public sbcl-flexi-streams
-  (package
-    (name "sbcl-flexi-streams")
-    (version "1.0.19")
-    (source
-     (origin
-       (method git-fetch)
-       (uri (git-reference
-             (url "https://github.com/edicl/flexi-streams")
-             (commit (string-append "v" version))))
-       (file-name (git-file-name "flexi-streams" version))
-       (sha256
-        (base32 "0v7lh4nrldzczd4mwylvmxfdxk7wfsli24iv1axd6mkb833llr70"))))
-    (build-system asdf-build-system/sbcl)
-    (arguments
-     `(#:phases
-       (modify-phases %standard-phases
-         (add-after 'unpack 'make-git-checkout-writable
-           (lambda _
-             (for-each make-file-writable (find-files "."))
-             #t)))))
-    (inputs `(("trivial-gray-streams" ,sbcl-trivial-gray-streams)))
-    (synopsis "Implementation of virtual bivalent streams for Common Lisp")
-    (description "Flexi-streams is an implementation of \"virtual\" bivalent
+  (let ((commit "74a1027311371a57258eba1bc908e050f5702277")
+        (revision "0"))
+    (package
+      (name "sbcl-flexi-streams")
+      (version (git-version "1.0.19" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/edicl/flexi-streams")
+               (commit commit)))
+         (file-name (git-file-name "cl-flexi-streams" version))
+         (sha256
+          (base32 "04azqvz11s8dngy49bjl19hrfn0ip1b7m0szm4hlppq364msil7b"))))
+      (build-system asdf-build-system/sbcl)
+      (arguments
+       `(#:phases
+         (modify-phases %standard-phases
+           (add-after 'unpack 'make-git-checkout-writable
+             (lambda _
+               (for-each make-file-writable (find-files "."))
+               #t)))))
+      (inputs `(("trivial-gray-streams" ,sbcl-trivial-gray-streams)))
+      (synopsis "Implementation of virtual bivalent streams for Common Lisp")
+      (description "Flexi-streams is an implementation of \"virtual\" bivalent
 streams that can be layered atop real binary or bivalent streams and that can
 be used to read and write character data in various single- or multi-octet
 encodings which can be changed on the fly.  It also supplies in-memory binary
 streams which are similar to string streams.")
-    (home-page "http://weitz.de/flexi-streams/")
-    (license license:bsd-3)))
+      (home-page "http://weitz.de/flexi-streams/")
+      (license license:bsd-3))))
 
 (define-public cl-flexi-streams
   (sbcl-package->cl-source-package sbcl-flexi-streams))

base-commit: d4cef7edffe0283949fc0f06d7796cea3543b92f
-- 
2.41.0






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

* [bug#68099] [PATCH 2/2] gnu: cl-flexi-streams: Improve package style.
  2023-12-29 12:14 [bug#68099] [PATCH 1/2] gnu: cl-flexi-streams: Update to 1.0.19-0.74a1027 Paul A. Patience
@ 2023-12-29 12:17 ` Paul A. Patience
  2024-01-06  9:13 ` bug#68099: [PATCH 1/2] gnu: cl-flexi-streams: Update to 1.0.19-0.74a1027 Guillaume Le Vaillant
  1 sibling, 0 replies; 3+ messages in thread
From: Paul A. Patience @ 2023-12-29 12:17 UTC (permalink / raw)
  To: 68099; +Cc: Paul A. Patience

* gnu/packages/lisp-xyz.scm (sbcl-flexi-streams)[arguments]: Use
  G-expressions. Drop trailing #t in phases.
  [inputs]: Remove labels.

Change-Id: I4aae98985435203006384906a0b28c798e3b9740
---
 gnu/packages/lisp-xyz.scm | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index e82b33eb92..be49bac2fd 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -1376,13 +1376,13 @@ (define-public sbcl-flexi-streams
           (base32 "04azqvz11s8dngy49bjl19hrfn0ip1b7m0szm4hlppq364msil7b"))))
       (build-system asdf-build-system/sbcl)
       (arguments
-       `(#:phases
-         (modify-phases %standard-phases
-           (add-after 'unpack 'make-git-checkout-writable
-             (lambda _
-               (for-each make-file-writable (find-files "."))
-               #t)))))
-      (inputs `(("trivial-gray-streams" ,sbcl-trivial-gray-streams)))
+       (list #:phases
+             #~(modify-phases %standard-phases
+                 (add-after 'unpack 'make-git-checkout-writable
+                   (lambda _
+                     (for-each make-file-writable (find-files ".")))))))
+      (inputs
+       (list sbcl-trivial-gray-streams))
       (synopsis "Implementation of virtual bivalent streams for Common Lisp")
       (description "Flexi-streams is an implementation of \"virtual\" bivalent
 streams that can be layered atop real binary or bivalent streams and that can
-- 
2.41.0






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

* bug#68099: [PATCH 1/2] gnu: cl-flexi-streams: Update to 1.0.19-0.74a1027.
  2023-12-29 12:14 [bug#68099] [PATCH 1/2] gnu: cl-flexi-streams: Update to 1.0.19-0.74a1027 Paul A. Patience
  2023-12-29 12:17 ` [bug#68099] [PATCH 2/2] gnu: cl-flexi-streams: Improve package style Paul A. Patience
@ 2024-01-06  9:13 ` Guillaume Le Vaillant
  1 sibling, 0 replies; 3+ messages in thread
From: Guillaume Le Vaillant @ 2024-01-06  9:13 UTC (permalink / raw)
  To: Paul A. Patience; +Cc: 68099-done

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

Patches applied on the lisp-team branch as
35a0bb9691e32f7e8027bcf9016ebbc64b74cbcd and following.
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:[~2024-01-06  9:16 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-12-29 12:14 [bug#68099] [PATCH 1/2] gnu: cl-flexi-streams: Update to 1.0.19-0.74a1027 Paul A. Patience
2023-12-29 12:17 ` [bug#68099] [PATCH 2/2] gnu: cl-flexi-streams: Improve package style Paul A. Patience
2024-01-06  9:13 ` bug#68099: [PATCH 1/2] gnu: cl-flexi-streams: Update to 1.0.19-0.74a1027 Guillaume Le Vaillant

Code repositories for project(s) associated with this public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).