guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: etc: committer: Support reading G-expressions.


From: guix-commits
Subject: branch master updated: etc: committer: Support reading G-expressions.
Date: Sat, 07 Aug 2021 08:03:49 -0400

This is an automated email from the git hooks/post-receive script.

rekado pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 50c2dcd  etc: committer: Support reading G-expressions.
50c2dcd is described below

commit 50c2dcd1c977f98681a4e457b2bcf09d96588eee
Author: Maxime Devos <maximedevos@telenet.be>
AuthorDate: Fri Apr 30 22:53:12 2021 +0200

    etc: committer: Support reading G-expressions.
    
    Some package definitions use G-expressions (see, e.g., chez-scheme).
    Import (guix gexp) such that Guile knows how to read those.
    Otherwise, an exception such as the following might be raised:
    
    ERROR: In procedure read:
    In procedure scm_lreadr: gnu/services/networking.scm:480:16: Unknown # 
object: #\~
    
    * etc/committer.scm.in: Import (guix gexp).
    
    Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
---
 etc/committer.scm.in | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/etc/committer.scm.in b/etc/committer.scm.in
index 96cd1fb..5696df8 100755
--- a/etc/committer.scm.in
+++ b/etc/committer.scm.in
@@ -36,7 +36,8 @@
         (ice-9 popen)
         (ice-9 match)
         (ice-9 rdelim)
-        (ice-9 textual-ports))
+        (ice-9 textual-ports)
+        (guix gexp))
 
 (define* (break-string str #:optional (max-line-length 70))
   "Break the string STR into lines that are no longer than MAX-LINE-LENGTH.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]