GNU bug report logs - #50590
[PATCH 0/8] Add CHICKEN Eggs

Previous Next

Package: guix-patches;

Reported by: Simon Streit <simon <at> netpanic.org>

Date: Tue, 14 Sep 2021 19:27:02 UTC

Severity: normal

Tags: patch

Done: Efraim Flashner <efraim <at> flashner.co.il>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 50590 in the body.
You can then email your comments to 50590 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#50590; Package guix-patches. (Tue, 14 Sep 2021 19:27:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Simon Streit <simon <at> netpanic.org>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Tue, 14 Sep 2021 19:27:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Simon Streit <simon <at> netpanic.org>
To: guix-patches <at> gnu.org
Subject: [PATCH 0/8] Add CHICKEN Eggs
Date: Tue, 14 Sep 2021 20:37:07 +0200
Hello,

This is a simple addition of eggs from the CHICKEN repository.

Hope the patches are okay.


Kind regards,
Simon



Simon Streit (8):
  gnu: Add chicken-compile-file.
  gnu: Add chicken-srfi-18.
  gnu: Add chicken-srfi-13.
  gnu: Add chicken-sxml-transforms.
  gnu: Add chicken-regex.
  gnu: Add chicken-utf8.
  gnu: Add chicken-fmt.
  gnu: Add chicken-matchable.

 gnu/packages/chicken.scm | 181 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 181 insertions(+)

--
2.33.0




Information forwarded to guix-patches <at> gnu.org:
bug#50590; Package guix-patches. (Tue, 14 Sep 2021 19:51:01 GMT) Full text and rfc822 format available.

Message #8 received at 50590 <at> debbugs.gnu.org (full text, mbox):

From: Simon Streit <simon <at> netpanic.org>
To: 50590 <at> debbugs.gnu.org
Subject: [PATCH 1/8] gnu: Add chicken-compile-file.
Date: Tue, 14 Sep 2021 14:00:44 +0200
* gnu/packages/chicken.scm (chicken-compile-file): New variable.
---
 gnu/packages/chicken.scm | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/gnu/packages/chicken.scm b/gnu/packages/chicken.scm
index 866ba8a062..e471a5700e 100644
--- a/gnu/packages/chicken.scm
+++ b/gnu/packages/chicken.scm
@@ -2,6 +2,7 @@
 ;;; Copyright © 2020 Ekaitz Zarraga <ekaitz <at> elenq.tech>
 ;;; Copyright © 2020 Evan Hanson <evhan <at> foldling.org>
 ;;; Copyright © 2020 raingloom <raingloom <at> riseup.net>
+;;; Copyright © 2021 Simon Streit <simon <at> netpanic.org>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -281,3 +282,21 @@ with integers.")
      "This package provides a simple testing utility for CHICKEN Scheme.")
     (license license:bsd-3)))

+(define-public chicken-compile-file
+  (package
+    (name "chicken-compile-file")
+    (version "1.3")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (egg-uri "compile-file" version))
+       (sha256
+        (base32
+         "1029i5ifr48vb3clvl8n50iq23rzc42szdcsl9320qmj1ksg9y93"))))
+    (build-system chicken-build-system)
+    (arguments `(#:egg-name "compile-file"))
+    (home-page "https://wiki.call-cc.org/egg/compile-file")
+    (synopsis "Programmatic compiler invocation")
+    (description "This egg provides a way to do on-the-fly compilation of
+source code and load it into the running process.")
+    (license license:bsd-3)))
--
2.33.0




Information forwarded to guix-patches <at> gnu.org:
bug#50590; Package guix-patches. (Tue, 14 Sep 2021 19:53:02 GMT) Full text and rfc822 format available.

Message #11 received at 50590 <at> debbugs.gnu.org (full text, mbox):

From: Simon Streit <simon <at> netpanic.org>
To: 50590 <at> debbugs.gnu.org
Subject: [PATCH 2/8] gnu: Add chicken-srfi-18.
Date: Tue, 14 Sep 2021 14:48:30 +0200
* gnu/packages/chicken.scm (chicken-srfi-18): New variable.
---
 gnu/packages/chicken.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/chicken.scm b/gnu/packages/chicken.scm
index e471a5700e..5a25573b37 100644
--- a/gnu/packages/chicken.scm
+++ b/gnu/packages/chicken.scm
@@ -300,3 +300,25 @@ with integers.")
     (description "This egg provides a way to do on-the-fly compilation of
 source code and load it into the running process.")
     (license license:bsd-3)))
+
+(define-public chicken-srfi-18
+  (package
+    (name "chicken-srfi-18")
+    (version "0.1.6")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (egg-uri "srfi-18" version))
+       (sha256
+        (base32
+         "0v2pkdck0ji1wiqgg8sg4z6rbkj2qw4vy4b9lx0w0pmhlxqpg1xd"))))
+    (build-system chicken-build-system)
+    (arguments `(#:egg-name "srfi-18"))
+    (native-inputs
+     `(("chicken-compile-file" ,chicken-compile-file)))
+    (home-page "https://wiki.call-cc.org/egg/srfi-18")
+    (synopsis "SRFI-18 thread library")
+    (description "A multithreading package, largely following the
+specification of @uref{https://srfi.schemers.org/srfi-18/srfi-18.html,
+SRFI-18}.")
+    (license license:bsd-3)))
--
2.33.0




Information forwarded to guix-patches <at> gnu.org:
bug#50590; Package guix-patches. (Tue, 14 Sep 2021 19:53:02 GMT) Full text and rfc822 format available.

Message #14 received at 50590 <at> debbugs.gnu.org (full text, mbox):

From: Simon Streit <simon <at> netpanic.org>
To: 50590 <at> debbugs.gnu.org
Subject: [PATCH 3/8] gnu: Add chicken-srfi-13.
Date: Tue, 14 Sep 2021 14:50:59 +0200
* gnu/packages/chicken.scm (chicken-srfi-13): New variable.
---
 gnu/packages/chicken.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/chicken.scm b/gnu/packages/chicken.scm
index 5a25573b37..a4a2889180 100644
--- a/gnu/packages/chicken.scm
+++ b/gnu/packages/chicken.scm
@@ -322,3 +322,26 @@ source code and load it into the running process.")
 specification of @uref{https://srfi.schemers.org/srfi-18/srfi-18.html,
 SRFI-18}.")
     (license license:bsd-3)))
+
+(define-public chicken-srfi-13
+  (package
+    (name "chicken-srfi-13")
+    (version "0.3.2")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (egg-uri "srfi-13" version))
+        (sha256
+          (base32
+            "18clbmaampaxivwx9bya9fxnkzqbczhlz0kbs9bfapm77mxkwclc"))))
+    (build-system chicken-build-system)
+    (arguments `(#:egg-name "srfi-13"))
+    (native-inputs `(("chicken-test" ,chicken-test)))
+    (propagated-inputs
+      `(("chicken-srfi-14" ,chicken-srfi-14)))
+    (home-page "https://wiki.call-cc.org/egg/srfi-13")
+    (synopsis "SRFI-13 string library")
+    (description "The string library defined in
+@uref{https://srfi.schemers.org/srfi-13/srfi-13.html, SRFI-13} provides a
+coherent and comprehensive set of string-processing procedures.")
+    (license license:bsd-3)))
--
2.33.0




Information forwarded to guix-patches <at> gnu.org:
bug#50590; Package guix-patches. (Tue, 14 Sep 2021 19:56:02 GMT) Full text and rfc822 format available.

Message #17 received at 50590 <at> debbugs.gnu.org (full text, mbox):

From: Simon Streit <simon <at> netpanic.org>
To: 50590 <at> debbugs.gnu.org
Subject: [PATCH 4/8] gnu: Add chicken-sxml-transforms.
Date: Tue, 14 Sep 2021 19:58:54 +0200
* gnu/packages/chicken.scm (chicken-sxml-transforms): New variable.
---
 gnu/packages/chicken.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/chicken.scm b/gnu/packages/chicken.scm
index a4a2889180..e47bced5aa 100644
--- a/gnu/packages/chicken.scm
+++ b/gnu/packages/chicken.scm
@@ -345,3 +345,26 @@ SRFI-18}.")
 @uref{https://srfi.schemers.org/srfi-13/srfi-13.html, SRFI-13} provides a
 coherent and comprehensive set of string-processing procedures.")
     (license license:bsd-3)))
+
+(define-public chicken-sxml-transforms
+  (package
+    (name "chicken-sxml-transforms")
+    (version "1.4.3")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (egg-uri "sxml-transforms" version))
+        (sha256
+          (base32
+            "0cvpqgjwz1p5vg8jwjr2p1l3hx9s02f083g84v16wv88y3d5rsbg"))))
+    (build-system chicken-build-system)
+    (arguments `(#:egg-name "sxml-transforms"))
+    (propagated-inputs
+      `(("chicken-srfi-13" ,chicken-srfi-13)))
+    (home-page "https://wiki.call-cc.org/egg/sxml-transforms")
+    (synopsis "The SXML transformations (to XML, SXML, and HTML) from the SSAX
+project")
+    (description "This egg provides the SXML transforms available in the
+SSAX/SXML Sourceforge project.  It incorporates one main module, and an
+auxiliary one.")
+    (license license:public-domain)))
--
2.33.0




Information forwarded to guix-patches <at> gnu.org:
bug#50590; Package guix-patches. (Tue, 14 Sep 2021 19:56:02 GMT) Full text and rfc822 format available.

Message #20 received at 50590 <at> debbugs.gnu.org (full text, mbox):

From: Simon Streit <simon <at> netpanic.org>
To: 50590 <at> debbugs.gnu.org
Subject: [PATCH 5/8] gnu: Add chicken-regex.
Date: Tue, 14 Sep 2021 20:00:48 +0200
* gnu/packages/chicken.scm (chicken-regex): New variable.
---
 gnu/packages/chicken.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/chicken.scm b/gnu/packages/chicken.scm
index e47bced5aa..0ca5fff02e 100644
--- a/gnu/packages/chicken.scm
+++ b/gnu/packages/chicken.scm
@@ -368,3 +368,25 @@ project")
 SSAX/SXML Sourceforge project.  It incorporates one main module, and an
 auxiliary one.")
     (license license:public-domain)))
+
+(define-public chicken-regex
+  (package
+    (name "chicken-regex")
+    (version "2.0")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (egg-uri "regex" version))
+        (sha256
+          (base32
+            "1hxkva5jvk08wnj3x4lnyxhhyr5vkbs7q99qzpnwmfphbrzmmqzr"))))
+    (build-system chicken-build-system)
+    (arguments `(#:egg-name "regex"))
+    (home-page "https://wiki.call-cc.org/egg/regex")
+    (synopsis "Compatibility library for old regular expression API")
+    (description "This extension provides the regular expression API that used
+to be available in CHICKEN releases before version 4.6.2.  It is a thin wrapper
+around the functionality provided by
+@uref{http://wiki.call-cc.org/man/5/Module%20(chicken%20irregex), irregex} and
+is mostly intended to keep old code working.")
+    (license license:bsd-3)))
--
2.33.0




Information forwarded to guix-patches <at> gnu.org:
bug#50590; Package guix-patches. (Tue, 14 Sep 2021 19:57:02 GMT) Full text and rfc822 format available.

Message #23 received at 50590 <at> debbugs.gnu.org (full text, mbox):

From: Simon Streit <simon <at> netpanic.org>
To: 50590 <at> debbugs.gnu.org
Subject: [PATCH 6/8] gnu: Add chicken-utf8.
Date: Tue, 14 Sep 2021 20:03:44 +0200
* gnu/packages/chicken.scm (chicken-utf8): New variable.
---
 gnu/packages/chicken.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/chicken.scm b/gnu/packages/chicken.scm
index 0ca5fff02e..ac3f3d5352 100644
--- a/gnu/packages/chicken.scm
+++ b/gnu/packages/chicken.scm
@@ -390,3 +390,27 @@ around the functionality provided by
 @uref{http://wiki.call-cc.org/man/5/Module%20(chicken%20irregex), irregex} and
 is mostly intended to keep old code working.")
     (license license:bsd-3)))
+
+(define-public chicken-utf8
+  (package
+    (name "chicken-utf8")
+    (version "3.6.2")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (egg-uri "utf8" version))
+        (sha256
+          (base32
+            "0m53hfazkj28xag1znj0i1r4mldg1mamjdy3rh8wikj4yzbdadxc"))))
+    (build-system chicken-build-system)
+    (arguments `(#:egg-name "utf8"))
+    (native-inputs `(("chicken-test" ,chicken-test)))
+    (propagated-inputs
+      `(("chicken-srfi-69" ,chicken-srfi-69)
+        ("chicken-iset" ,chicken-iset)
+        ("chicken-regex" ,chicken-regex)))
+    (home-page "https://wiki.call-cc.org/egg/utf8")
+    (synopsis "Unicode support")
+    (description "This egg provides support to make all core, extra, regex and
+SRFI-13 string operations unicode aware.")
+    (license license:bsd-3)))
--
2.33.0




Information forwarded to guix-patches <at> gnu.org:
bug#50590; Package guix-patches. (Tue, 14 Sep 2021 19:58:01 GMT) Full text and rfc822 format available.

Message #26 received at 50590 <at> debbugs.gnu.org (full text, mbox):

From: Simon Streit <simon <at> netpanic.org>
To: 50590 <at> debbugs.gnu.org
Subject: [PATCH 7/8] gnu: Add chicken-fmt.
Date: Tue, 14 Sep 2021 20:14:25 +0200
* gnu/packages/chicken.scm (chicken-fmt): New variable.
---
 gnu/packages/chicken.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/chicken.scm b/gnu/packages/chicken.scm
index ac3f3d5352..470ad9232c 100644
--- a/gnu/packages/chicken.scm
+++ b/gnu/packages/chicken.scm
@@ -414,3 +414,30 @@ is mostly intended to keep old code working.")
     (description "This egg provides support to make all core, extra, regex and
 SRFI-13 string operations unicode aware.")
     (license license:bsd-3)))
+
+(define-public chicken-fmt
+  (package
+    (name "chicken-fmt")
+    (version "0.8.11.2")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (egg-uri "fmt" version))
+        (sha256
+          (base32
+            "0w04zfkhh8cnns6n0m1s9zh8jn7nvm3h4nzvfzxiih84i6y13yx1"))))
+    (build-system chicken-build-system)
+    (arguments `(#:egg-name "fmt"))
+    (native-inputs `(("chicken-test" ,chicken-test)))
+    (propagated-inputs
+      `(("chicken-srfi-1" ,chicken-srfi-1)
+        ("chicken-srfi-13" ,chicken-srfi-13)
+        ("chicken-srfi-69" ,chicken-srfi-69)
+        ("chicken-utf8" ,chicken-utf8)))
+    (home-page "https://wiki.call-cc.org/egg/fmt")
+    (synopsis "Combinator Formatting")
+    (description "A library of procedures for formatting Scheme objects to
+text in various ways, and for easily concatenating, composing and extending
+these formatters efficiently without resorting to capturing and manipulating
+intermediate strings.")
+    (license license:bsd-3)))
--
2.33.0




Information forwarded to guix-patches <at> gnu.org:
bug#50590; Package guix-patches. (Tue, 14 Sep 2021 19:58:02 GMT) Full text and rfc822 format available.

Message #29 received at 50590 <at> debbugs.gnu.org (full text, mbox):

From: Simon Streit <simon <at> netpanic.org>
To: 50590 <at> debbugs.gnu.org
Subject: [PATCH 8/8] gnu: Add chicken-matchable.
Date: Tue, 14 Sep 2021 20:21:47 +0200
* gnu/packages/chicken.scm (chicken-matchable): New variable.
---
 gnu/packages/chicken.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/chicken.scm b/gnu/packages/chicken.scm
index 470ad9232c..7385bf1436 100644
--- a/gnu/packages/chicken.scm
+++ b/gnu/packages/chicken.scm
@@ -441,3 +441,24 @@ text in various ways, and for easily concatenating, composing and extending
 these formatters efficiently without resorting to capturing and manipulating
 intermediate strings.")
     (license license:bsd-3)))
+
+(define-public chicken-matchable
+  (package
+    (name "chicken-matchable")
+    (version "1.1")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (egg-uri "matchable" version))
+        (sha256
+          (base32
+            "0bizkac4a926lbk0v2m05ysq359mzhfsqh973m72jc4gcj4azr5p"))))
+    (build-system chicken-build-system)
+    (arguments `(#:egg-name "matchable"))
+    (native-inputs `(("chicken-test" ,chicken-test)))
+    (home-page "https://wiki.call-cc.org/egg/matchable")
+    (synopsis "Hygienic MATCH replacement")
+    (description "Pattern matching allows complicated control decisions based
+on data structure to be expressed in a concise manner.  Pattern matching is
+found in several modern languages, notably Standard ML, Haskell and Miranda.")
+    (license license:public-domain)))
--
2.33.0




Reply sent to Efraim Flashner <efraim <at> flashner.co.il>:
You have taken responsibility. (Thu, 30 Sep 2021 11:28:03 GMT) Full text and rfc822 format available.

Notification sent to Simon Streit <simon <at> netpanic.org>:
bug acknowledged by developer. (Thu, 30 Sep 2021 11:28:03 GMT) Full text and rfc822 format available.

Message #34 received at 50590-done <at> debbugs.gnu.org (full text, mbox):

From: Efraim Flashner <efraim <at> flashner.co.il>
To: zimoun <zimon.toutoune <at> gmail.com>
Cc: 50590-done <at> debbugs.gnu.org, 50582-done <at> debbugs.gnu.org
Subject: Re: bug#50582: [PATCH 0/4] Julia-documenter
Date: Thu, 30 Sep 2021 14:26:42 +0300
[Message part 1 (text/plain, inline)]
Thanks for the reviews. Patches pushed!

-- 
Efraim Flashner   <efraim <at> flashner.co.il>   רנשלפ םירפא
GPG key = A28B F40C 3E55 1372 662D  14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted
[signature.asc (application/pgp-signature, inline)]

Information forwarded to guix-patches <at> gnu.org:
bug#50590; Package guix-patches. (Thu, 30 Sep 2021 12:35:02 GMT) Full text and rfc822 format available.

Message #37 received at 50590 <at> debbugs.gnu.org (full text, mbox):

From: Efraim Flashner <efraim <at> flashner.co.il>
To: Simon Streit <simon <at> netpanic.org>
Cc: 50590 <at> debbugs.gnu.org
Subject: Re: [bug#50590] [PATCH 0/8] Add CHICKEN Eggs
Date: Thu, 30 Sep 2021 15:34:07 +0300
[Message part 1 (text/plain, inline)]
Patch series re-opened, closed due to typo ...

-- 
Efraim Flashner   <efraim <at> flashner.co.il>   רנשלפ םירפא
GPG key = A28B F40C 3E55 1372 662D  14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted
[signature.asc (application/pgp-signature, inline)]

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Fri, 29 Oct 2021 11:24:08 GMT) Full text and rfc822 format available.

This bug report was last modified 2 years and 180 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.