all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#67847] An SRFI-133 package definition for Guile
@ 2023-12-16  0:12 Yuval Langer
  2024-01-05 16:15 ` bug#67847: " Ludovic Courtès
  0 siblings, 1 reply; 2+ messages in thread
From: Yuval Langer @ 2023-12-16  0:12 UTC (permalink / raw)
  To: 67847

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

SRFI-133 defines vector operations in a manner compatible with the
R7RS Scheme standard.

Please review.

Many thanks,
Yuval Langer.

[-- Attachment #2: 0001-Add-an-SRFI-133-package-for-Guile.patch --]
[-- Type: text/x-patch, Size: 3473 bytes --]

From 6eab8139c573a39cfe61a04e0dc738da842f9aab Mon Sep 17 00:00:00 2001
Message-Id: <6eab8139c573a39cfe61a04e0dc738da842f9aab.1702685407.git.yuval.langer@gmail.com>
From: Yuval Langer <yuval.langer@gmail.com>
Date: Sat, 16 Dec 2023 02:09:20 +0200
Subject: [PATCH] Add an SRFI-133 package for Guile.

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

diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm
index fcaf788d37..4cb15d769d 100644
--- a/gnu/packages/guile-xyz.scm
+++ b/gnu/packages/guile-xyz.scm
@@ -3550,6 +3550,79 @@ structures.  This package re-uses the SRFI sample implementation.")
            ;; contains ISC code from the SRFI sample implementation
            license:isc))))
 
+(define-public guile-srfi-133
+  (package
+    (name "guile-srfi-133")
+    (version "0.0.1")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/scheme-requests-for-implementation/srfi-133")
+             (commit "db81a114cd3e23375f024baec15482614ec90453")))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32
+         "0a7srl72291yah0aj6rwddhj041v2spximhknjj7hczlparsrm7f"))))
+    (build-system guile-build-system)
+    (arguments
+     (list
+      #:phases
+      #~(modify-phases
+            %standard-phases
+          (add-after 'unpack 'move-create-and-delete-files
+            (lambda _
+              (rename-file "vectors" "srfi")
+              (rename-file "srfi/vectors-test.scm" "srfi/srfi-test.scm")
+              (rename-file "srfi/vectors-impl.scm" "srfi/srfi-impl.scm")
+              (with-output-to-file "srfi/srfi-133.scm"
+                (lambda ()
+                  (display "(define-module (srfi srfi-133)
+  #:replace (;; Constructors
+             vector-copy
+
+             ;; Mutators
+             vector-fill! vector-copy!
+
+             ;; Conversion
+             vector->list list->vector)
+  #:export (;; Constructors
+            vector-unfold vector-unfold-right vector-reverse-copy
+            vector-append vector-concatenate vector-append-subvectors
+
+            ;; Predicates
+            vector-empty? vector=
+
+            ;; Iteration
+            vector-fold vector-fold-right vector-map vector-map!
+            vector-for-each vector-count vector-cumulate
+
+            ;; Searching
+            vector-index vector-index-right vector-skip vector-skip-right
+            vector-binary-search vector-any vector-every vector-partition
+
+            ;; Mutators
+            vector-swap! vector-reverse!
+            vector-reverse-copy! vector-unfold! vector-unfold-right!
+
+            ;; Conversion
+            reverse-vector->list reverse-list->vector
+            vector->string string->vector))
+
+(include \"srfi-impl.scm\")")))
+              (for-each (lambda (filename)
+                          (delete-file filename))
+                        '("tests/run.scm"
+                          "srfi/vectors.sld"
+                          "srfi/vectors.scm")))))))
+    (native-inputs
+     (list guile-3.0))
+    (home-page "https://github.com/scheme-requests-for-implementation/srfi-133")
+    (synopsis "Vector Library (R7RS-compatible)")
+    (description
+     "A comprehensive library of vector operations.")
+    (license license:expat)))
+
 (define-public guile-srfi-145
   (package
     (name "guile-srfi-145")
-- 
2.30.2


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

* bug#67847: An SRFI-133 package definition for Guile
  2023-12-16  0:12 [bug#67847] An SRFI-133 package definition for Guile Yuval Langer
@ 2024-01-05 16:15 ` Ludovic Courtès
  0 siblings, 0 replies; 2+ messages in thread
From: Ludovic Courtès @ 2024-01-05 16:15 UTC (permalink / raw)
  To: Yuval Langer; +Cc: 67847-done

Hi,

Yuval Langer <yuval.langer@gmail.com> skribis:

> From 6eab8139c573a39cfe61a04e0dc738da842f9aab Mon Sep 17 00:00:00 2001
> Message-Id: <6eab8139c573a39cfe61a04e0dc738da842f9aab.1702685407.git.yuval.langer@gmail.com>
> From: Yuval Langer <yuval.langer@gmail.com>
> Date: Sat, 16 Dec 2023 02:09:20 +0200
> Subject: [PATCH] Add an SRFI-133 package for Guile.

[...]

> +    (home-page "https://github.com/scheme-requests-for-implementation/srfi-133")
> +    (synopsis "Vector Library (R7RS-compatible)")
> +    (description
> +     "A comprehensive library of vector operations.")

I added a commit log, changed the synopsis and description according to
<https://guix.gnu.org/manual/devel/en/html_node/Synopses-and-Descriptions.html>,
and applied it.

Thanks!

Ludo’.




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

end of thread, other threads:[~2024-01-05 16:16 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-12-16  0:12 [bug#67847] An SRFI-133 package definition for Guile Yuval Langer
2024-01-05 16:15 ` bug#67847: " Ludovic Courtès

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.