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


From: guix-commits
Subject: branch master updated: gnu: emacs-with-editor: Update to 3.1.0.
Date: Sun, 02 Jan 2022 05:47:17 -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 66f86ebb74 gnu: emacs-with-editor: Update to 3.1.0.
66f86ebb74 is described below

commit 66f86ebb744bcc6f6a090a715961db0599571965
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Sun Jan 2 11:41:04 2022 +0100

    gnu: emacs-with-editor: Update to 3.1.0.
    
    * gnu/packages/emacs-xyz.scm (emacs-with-editor): Update to 3.1.0.
    [arguments]<#:phases>: Add phases to mirror upstream directory layout
    modification.
---
 gnu/packages/emacs-xyz.scm | 13 +++++++++----
 1 file changed, 9 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index f838910b24..d23469f817 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -674,7 +674,7 @@ configuration files, such as @file{.gitattributes}, 
@file{.gitignore}, and
 (define-public emacs-with-editor
   (package
     (name "emacs-with-editor")
-    (version "3.0.5")
+    (version "3.1.0")
     (source
      (origin
        (method git-fetch)
@@ -683,15 +683,20 @@ configuration files, such as @file{.gitattributes}, 
@file{.gitignore}, and
              (commit (string-append "v" version))))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "1pynm4ng4rki2b2ka5dz01p66ygghk69mldsfbxs81d52jqfnx8f"))))
+        (base32 "0m4ckp2ljnkws0bhg1wxlhqdln8kq33qg00qmhhik8ihh02sywnl"))))
     (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 _
-             (invoke "makeinfo" "--no-split"
-                     "-o" "with-editor.info" "with-editor.texi"))))))
+             (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]