unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#61070] gnu: packages: Add guile-simple-iterators.
@ 2023-01-26  3:16 J. Sims via Guix-patches via
  2023-01-28  6:32 ` Liliana Marie Prikler
  0 siblings, 1 reply; 6+ messages in thread
From: J. Sims via Guix-patches via @ 2023-01-26  3:16 UTC (permalink / raw)
  To: 61070


[-- Attachment #1.1: Type: text/plain, Size: 226 bytes --]

Hello,

guile-simple-iterators is a collection of macros to provide iteration inspired by Racket in Guile. I use them and find them delightful, so I thought other Guix users would appreciate ready access to them.

Thanks,
Juli

[-- Attachment #1.2: Type: text/html, Size: 322 bytes --]

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-gnu-packages-Add-guile-simple-iterators.patch --]
[-- Type: text/x-patch; name=0001-gnu-packages-Add-guile-simple-iterators.patch, Size: 2083 bytes --]

From 654847381613f558d80ad8fffb89b1361181d724 Mon Sep 17 00:00:00 2001
From: Juliana Sims <jtsims@protonmail.com>
Date: Wed, 25 Jan 2023 21:07:54 -0600
Subject: [PATCH] gnu: packages: Add guile-simple-iterators.

* gnu/packages/guile-xyz.scm (guile-simple-iterators): Add guile-simple-iterators.
---
 gnu/packages/guile-xyz.scm | 35 +++++++++++++++++++++++++++++++++++
 1 file changed, 35 insertions(+)

diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm
index 0befff1576..340b2824c2 100644
--- a/gnu/packages/guile-xyz.scm
+++ b/gnu/packages/guile-xyz.scm
@@ -2600,6 +2600,41 @@ (define-public guile-lib
     ;; details.
     (license license:gpl3+)))
 
+(define-public guile-simple-iterators
+  (let ((commit "50f16a2b2aa57e657e52e19fb3c35bdc182cfa36")
+        (revision "0"))
+    (package
+      (name "guile-simple-iterators")
+      (version (git-version "0.0.0" revision commit))
+      (source (origin
+                (method git-fetch)
+                (uri (git-reference
+                      (url
+                       "https://gitlab.com/dustyweb/guile-simple-iterators")
+                      (commit commit)))
+                (file-name (git-file-name name version))
+                (sha256
+                 (base32
+                  "1m1wirlnfwmp5a4rpszd5qsbwabz4ji033w6p2714p1r524ylah8"))))
+      (build-system guile-build-system)
+      (native-inputs (list guile-3.0))
+      (home-page "https://gitlab.com/dustyweb/guile-simple-iterators")
+      (synopsis "Simple iterators for Guile")
+      (description
+       "This is a collection of iteration macros for Guile. They are inspired by
+@code{racket}'s family of iterators. Specifically, the following iterators are
+available:
+@itemize
+@item @code{for}
+@item @code{for/map}
+@item @code{for/c}
+@item @code{for/fold}
+@item @code{for/fold-right}
+@item @code{for/folder}
+@item @code{folder}
+@end itemize")
+      (license license:expat))))
+
 (define-public guile2.0-lib
   (package
     (inherit guile-lib)

base-commit: a84ceaa8b2e8e121957afea1d1d3fe7c8141cb8d
-- 
2.39.1


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

* [bug#61070] gnu: packages: Add guile-simple-iterators.
  2023-01-26  3:16 [bug#61070] gnu: packages: Add guile-simple-iterators J. Sims via Guix-patches via
@ 2023-01-28  6:32 ` Liliana Marie Prikler
  2023-01-28 17:58   ` J. Sims via Guix-patches via
  0 siblings, 1 reply; 6+ messages in thread
From: Liliana Marie Prikler @ 2023-01-28  6:32 UTC (permalink / raw)
  To: J. Sims, 61070

Am Donnerstag, dem 26.01.2023 um 03:16 +0000 schrieb J. Sims:

> +(define-public guile-simple-iterators
> +  (let ((commit "50f16a2b2aa57e657e52e19fb3c35bdc182cfa36")
> +        (revision "0"))
> +    (package
> +      (name "guile-simple-iterators")
> +      (version (git-version "0.0.0" revision commit))
> +      (source (origin
> +                (method git-fetch)
> +                (uri (git-reference
> +                      (url
> +                      
> "https://gitlab.com/dustyweb/guile-simple-iterators")
> +                      (commit commit)))
> +                (file-name (git-file-name name version))
> +                (sha256
> +                 (base32
> +                 
> "1m1wirlnfwmp5a4rpszd5qsbwabz4ji033w6p2714p1r524ylah8"))))
It's better to dedent this a little so that url can fit on a line.
> +      (build-system guile-build-system)
> +      (native-inputs (list guile-3.0))
> +      (home-page
> "https://gitlab.com/dustyweb/guile-simple-iterators")
> +      (synopsis "Simple iterators for Guile")
> +      (description
> +       "This is a collection of iteration macros for Guile. They are
> inspired by
> +@code{racket}'s family of iterators. Specifically, the following
> iterators are
> +available:
> +@itemize
> +@item @code{for}
> +@item @code{for/map}
> +@item @code{for/c}
> +@item @code{for/fold}
> +@item @code{for/fold-right}
> +@item @code{for/folder}
> +@item @code{folder}
> +@end itemize")
> +      (license license:expat))))
License should be asl2.0.

I'll wait for the CI results and schedule this towards pushing it on
February 5th (with adjustments for the above points).

Cheers




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

* [bug#61070] gnu: packages: Add guile-simple-iterators.
  2023-01-28  6:32 ` Liliana Marie Prikler
@ 2023-01-28 17:58   ` J. Sims via Guix-patches via
  2023-01-28 18:13     ` J. Sims via Guix-patches via
  2023-01-28 18:26     ` Liliana Marie Prikler
  0 siblings, 2 replies; 6+ messages in thread
From: J. Sims via Guix-patches via @ 2023-01-28 17:58 UTC (permalink / raw)
  To: Liliana Marie Prikler, 61070@debbugs.gnu.org

Hi,

On Saturday, January 28th, 2023 at 00:32, Liliana Marie Prikler <liliana.prikler@gmail.com> wrote:

> I'll wait for the CI results and schedule this towards pushing it on
> February 5th (with adjustments for the above points).

Just to clarify, do I need to make the adjustments or are you making them before pushing? Either way is fine; the wording is just ambiguous.

> It's better to dedent this a little so that url can fit on a line.

I'm not sure I understand what you mean. Dedent the hash? And how so?

Also, thanks for catching the license; I'm not sure why my brain read "Apache Software License 2.0" and went, "Ah, yeah, expat" XD

Thanks,
Juli




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

* [bug#61070] gnu: packages: Add guile-simple-iterators.
  2023-01-28 17:58   ` J. Sims via Guix-patches via
@ 2023-01-28 18:13     ` J. Sims via Guix-patches via
  2023-01-28 18:26     ` Liliana Marie Prikler
  1 sibling, 0 replies; 6+ messages in thread
From: J. Sims via Guix-patches via @ 2023-01-28 18:13 UTC (permalink / raw)
  To: Liliana Marie Prikler, 61070@debbugs.gnu.org

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

On Saturday, January 28th, 2023 at 11:58, J. Sims <jtsims@protonmail.com> wrote:

> I'm not sure I understand what you mean. Dedent the hash? And how so?

Scratch that, I figured it out. I really need to start double-checking guix style's work...

I've gone ahead and written up the patch, too, so just ignore my previous message.

Thanks,
Juli

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-gnu-packages-Add-guile-simple-iterators.patch --]
[-- Type: text/x-patch; name=0001-gnu-packages-Add-guile-simple-iterators.patch, Size: 2346 bytes --]

From 4a978ce60c1115c01f94df76a9166d3cd3ab71e5 Mon Sep 17 00:00:00 2001
From: Juliana Sims <jtsims@protonmail.com>
Date: Wed, 25 Jan 2023 21:07:54 -0600
Subject: [PATCH] gnu: packages: Add guile-simple-iterators.

* gnu/packages/guile-xyz.scm (guile-simple-iterators): Add guile-simple-iterators.
---
 gnu/packages/guile-xyz.scm | 35 +++++++++++++++++++++++++++++++++++
 1 file changed, 35 insertions(+)

diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm
index 0befff1576..8e33ef5bc7 100644
--- a/gnu/packages/guile-xyz.scm
+++ b/gnu/packages/guile-xyz.scm
@@ -46,6 +46,7 @@
 ;;; Copyright © 2022 Zheng Junjie <873216071@qq.com>
 ;;; Copyright © 2022 Evgeny Pisemsky <evgeny@pisemsky.com>
 ;;; Copyright © 2022 jgart <jgart@dismail.de>
+;;; Copyright © 2023 Juliana Sims <jtsims@protonmail.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -2600,6 +2601,40 @@ (define-public guile-lib
     ;; details.
     (license license:gpl3+)))
 
+(define-public guile-simple-iterators
+  (let ((commit "50f16a2b2aa57e657e52e19fb3c35bdc182cfa36")
+        (revision "0"))
+    (package
+      (name "guile-simple-iterators")
+      (version (git-version "0.0.0" revision commit))
+      (source (origin
+                (method git-fetch)
+                (uri (git-reference
+                      (url "https://gitlab.com/dustyweb/guile-simple-iterators")
+                      (commit commit)))
+                (file-name (git-file-name name version))
+                (sha256
+                 (base32
+                  "1m1wirlnfwmp5a4rpszd5qsbwabz4ji033w6p2714p1r524ylah8"))))
+      (build-system guile-build-system)
+      (native-inputs (list guile-3.0))
+      (home-page "https://gitlab.com/dustyweb/guile-simple-iterators")
+      (synopsis "Simple iterators for Guile")
+      (description
+       "This is a collection of iteration macros for Guile. They are inspired by
+@code{racket}'s family of iterators. Specifically, the following iterators are
+available:
+@itemize
+@item @code{for}
+@item @code{for/map}
+@item @code{for/c}
+@item @code{for/fold}
+@item @code{for/fold-right}
+@item @code{for/folder}
+@item @code{folder}
+@end itemize")
+      (license license:asl2))))
+
 (define-public guile2.0-lib
   (package
     (inherit guile-lib)

base-commit: a84ceaa8b2e8e121957afea1d1d3fe7c8141cb8d
-- 
2.39.1


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

* [bug#61070] gnu: packages: Add guile-simple-iterators.
  2023-01-28 17:58   ` J. Sims via Guix-patches via
  2023-01-28 18:13     ` J. Sims via Guix-patches via
@ 2023-01-28 18:26     ` Liliana Marie Prikler
  2023-02-05  6:20       ` bug#61070: " Liliana Marie Prikler
  1 sibling, 1 reply; 6+ messages in thread
From: Liliana Marie Prikler @ 2023-01-28 18:26 UTC (permalink / raw)
  To: J. Sims, 61070@debbugs.gnu.org

Am Samstag, dem 28.01.2023 um 17:58 +0000 schrieb J. Sims:
> Hi,
> 
> On Saturday, January 28th, 2023 at 00:32, Liliana Marie Prikler
> <liliana.prikler@gmail.com> wrote:
> 
> > I'll wait for the CI results and schedule this towards pushing it
> > on
> > February 5th (with adjustments for the above points).
> 
> Just to clarify, do I need to make the adjustments or are you making
> them before pushing? Either way is fine; the wording is just
> ambiguous.
They're small changes I can do as a reviewer ;)

> > It's better to dedent this a little so that url can fit on a line.
> 
> I'm not sure I understand what you mean. Dedent the hash? And how so?
No, dedent the entire origin.

Cheers




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

* bug#61070: gnu: packages: Add guile-simple-iterators.
  2023-01-28 18:26     ` Liliana Marie Prikler
@ 2023-02-05  6:20       ` Liliana Marie Prikler
  0 siblings, 0 replies; 6+ messages in thread
From: Liliana Marie Prikler @ 2023-02-05  6:20 UTC (permalink / raw)
  To: J. Sims, 61070-done

Am Samstag, dem 28.01.2023 um 19:26 +0100 schrieb Liliana Marie
Prikler:
> Am Samstag, dem 28.01.2023 um 17:58 +0000 schrieb J. Sims:
> > Hi,
> > 
> > On Saturday, January 28th, 2023 at 00:32, Liliana Marie Prikler
> > <liliana.prikler@gmail.com> wrote:
> > 
> > > I'll wait for the CI results and schedule this towards pushing it
> > > on February 5th (with adjustments for the above points).
> > 
> > Just to clarify, do I need to make the adjustments or are you
> > making them before pushing? Either way is fine; the wording is just
> > ambiguous.
> They're small changes I can do as a reviewer ;)
> 
> > > It's better to dedent this a little so that url can fit on a
> > > line.
> > 
> > I'm not sure I understand what you mean. Dedent the hash? And how
> > so?
> No, dedent the entire origin.
Aaaand it's pushed.

Thanks




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

end of thread, other threads:[~2023-02-05  6:21 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-01-26  3:16 [bug#61070] gnu: packages: Add guile-simple-iterators J. Sims via Guix-patches via
2023-01-28  6:32 ` Liliana Marie Prikler
2023-01-28 17:58   ` J. Sims via Guix-patches via
2023-01-28 18:13     ` J. Sims via Guix-patches via
2023-01-28 18:26     ` Liliana Marie Prikler
2023-02-05  6:20       ` bug#61070: " Liliana Marie Prikler

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).