guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: emacs-evil: Update to 1.14.2.


From: guix-commits
Subject: branch master updated: gnu: emacs-evil: Update to 1.14.2.
Date: Wed, 18 May 2022 07:05:29 -0400

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

mbakke pushed a commit to branch master
in repository guix.

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

commit d58c9ca9e2f62047e3c9201be51a33597c6d682c
Author: Marius Bakke <marius@gnu.org>
AuthorDate: Wed May 18 13:04:58 2022 +0200

    gnu: emacs-evil: Update to 1.14.2.
    
    * gnu/packages/emacs-xyz.scm (emacs-evil): Update to 1.14.2.
    [arguments]: Rewrite in gexp style.
---
 gnu/packages/emacs-xyz.scm | 28 ++++++++++++++--------------
 1 file changed, 14 insertions(+), 14 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 015c7682a8..c43fa5aed8 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -12075,7 +12075,7 @@ news items, openrc and runscripts.")
 (define-public emacs-evil
   (package
     (name "emacs-evil")
-    (version "1.14.0")
+    (version "1.14.2")
     (source
      (origin
        (method git-fetch)
@@ -12085,20 +12085,20 @@ news items, openrc and runscripts.")
        (file-name (git-file-name name version))
        (sha256
         (base32
-         "17xrn3s6a4afmls8fw8nnxa1jq9dmj2qqrxa2vngh50hxpz8840p"))))
+         "1mhm1hd6gzxc2vvihh1w1j8f30xp0ssqcxnp8fx22niz04fk5df8"))))
     (arguments
-     `(#:phases
-       (modify-phases %standard-phases
-         (add-before 'check 'fix-test-helpers
-           (lambda _
-             (substitute* "evil-test-helpers.el"
-               (("\\(undo-tree-mode 1\\)") ""))
-             #t))
-         (add-before 'install 'make-info
-           (lambda _
-             (with-directory-excursion "doc/build/texinfo"
-                 (invoke "makeinfo" "--no-split"
-                         "-o" "evil.info" "evil.texi")))))))
+     (list
+      #:phases
+      #~(modify-phases %standard-phases
+          (add-before 'check 'fix-test-helpers
+            (lambda _
+              (substitute* "evil-test-helpers.el"
+                (("\\(undo-tree-mode 1\\)") ""))))
+          (add-before 'install 'make-info
+            (lambda _
+              (with-directory-excursion "doc/build/texinfo"
+                (invoke "makeinfo" "--no-split"
+                        "-o" "evil.info" "evil.texi")))))))
     (build-system emacs-build-system)
     (native-inputs (list texinfo))
     (home-page "https://github.com/emacs-evil/evil";)



reply via email to

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