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

guix_mirror_bot pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new df3ab0bc6e gnu: emacs-geiser: Update to 0.32.
df3ab0bc6e is described below

commit df3ab0bc6e55e6ee6b2fc19f63421595285c8b34
Author: Cayetano Santos <csant...@inventati.org>
AuthorDate: Tue Aug 12 13:17:15 2025 +0200

    gnu: emacs-geiser: Update to 0.32.
    
    * gnu/packages/emacs-xyz.scm (emacs-geiser): Update to 0.32.
    [arguments]: Disable #:tests? and use G-Expressions.
    
    Change-Id: I2d28082ca4d440ae6a731a99c3e22fe785352d82
    Reviewed-by: Liliana Marie Prikler <liliana.prik...@gmail.com>
    Reviewed-by: jgart <jg...@dismail.de>
    Signed-off-by: Sharlatan Hellseher <sharlata...@gmail.com>
---
 gnu/packages/emacs-xyz.scm | 20 +++++++++++---------
 1 file changed, 11 insertions(+), 9 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 5f32058889..217e431452 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -624,7 +624,7 @@ input via a small child-frame spawned at the position of 
the cursor.")
 (define-public emacs-geiser
   (package
     (name "emacs-geiser")
-    (version "0.31.1")
+    (version "0.32")
     (source
      (origin
        (method git-fetch)
@@ -633,16 +633,18 @@ input via a small child-frame spawned at the position of 
the cursor.")
              (commit version)))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "194k1bj4ncl9w68s0dkm9ya853hxbm9lxwsckqsmaj57jz7hw46f"))))
+        (base32 "09dqwxa2h471xcyk5zncxzaz19gf8d5r83yhi425blf2r1ir7b34"))))
     (build-system emacs-build-system)
     (arguments
-     '(#:lisp-directory "elisp"
-       #:phases
-       (modify-phases %standard-phases
-         (add-after 'unpack 'make-info
-           (lambda _
-             (invoke "makeinfo" "--no-split"
-                     "-o" "geiser.info" "../doc/geiser.texi"))))))
+     (list
+      #:tests? #f                      ;no tests
+      #:lisp-directory "elisp"
+      #:phases
+      #~(modify-phases %standard-phases
+          (add-after 'unpack 'make-info
+            (lambda _
+              (invoke "makeinfo" "--no-split"
+                      "-o" "geiser.info" "../doc/geiser.texi"))))))
     (native-inputs
      (list texinfo))
     (home-page "https://www.nongnu.org/geiser/";)

Reply via email to