guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: emacs-with-editor: Update to 3.2.0.


From: guix-commits
Subject: branch master updated: gnu: emacs-with-editor: Update to 3.2.0.
Date: Sat, 12 Feb 2022 04:46:37 -0500

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

ngz pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 47eb897bd3 gnu: emacs-with-editor: Update to 3.2.0.
47eb897bd3 is described below

commit 47eb897bd377f87854335a6d0cc711b94cb8589e
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Sat Feb 12 10:45:42 2022 +0100

    gnu: emacs-with-editor: Update to 3.2.0.
    
    * gnu/packages/emacs-xyz.scm (emacs-with-editor): Update to 3.2.0.
    [arguments]<#:phases>: Use G-expressions.
---
 gnu/packages/emacs-xyz.scm | 27 ++++++++++++++-------------
 1 file changed, 14 insertions(+), 13 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 9d15ded435..a30d485c73 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -732,7 +732,7 @@ configuration files, such as @file{.gitattributes}, 
@file{.gitignore}, and
 (define-public emacs-with-editor
   (package
     (name "emacs-with-editor")
-    (version "3.1.1")
+    (version "3.2.0")
     (source
      (origin
        (method git-fetch)
@@ -741,20 +741,21 @@ configuration files, such as @file{.gitattributes}, 
@file{.gitignore}, and
              (commit (string-append "v" version))))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "06a66119rp5vfqdzqk10df3qyh9jvjl6j3pqm03jy0b110v2bfa8"))))
+        (base32 "1d98hagpm6h5vgx80qlh3zrfcb6z000rfc707w9zzmh634dkg3xx"))))
     (build-system emacs-build-system)
     (arguments
-     `(#:phases
-       (modify-phases %standard-phases
-         (add-before 'install 'enter-lisp-directory
-           (lambda _
-             (chdir "lisp")))
-         (add-before 'install 'make-info
-           (lambda _
-             (with-directory-excursion "../docs"
-               (invoke "makeinfo" "--no-split"
-                       "-o" "with-editor.info" "with-editor.texi")
-               (install-file "with-editor.info" "../lisp")))))))
+     (list
+      #:phases
+      #~(modify-phases %standard-phases
+          (add-before 'install 'enter-lisp-directory
+            (lambda _
+              (chdir "lisp")))
+          (add-before 'install 'make-info
+            (lambda _
+              (with-directory-excursion "../docs"
+                (invoke "makeinfo" "--no-split"
+                        "-o" "with-editor.info" "with-editor.texi")
+                (install-file "with-editor.info" "../lisp")))))))
     (native-inputs
      (list texinfo))
     (propagated-inputs



reply via email to

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