gnu: emacs-evil: Update to commit 008a6cdb12f15e748979a7d1c2f26c34c84dedbf.

* gnu/packages/emacs-xyz.scm (emacs-evil): Update to commit
008a6cdb12f15e748979a7d1c2f26c34c84dedbf.
[version]: Bump main version part to 1.15.0.

Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
This commit is contained in:
Maze 2022-05-19 01:25:26 +08:00 committed by Liliana Marie Prikler
parent b1cfd39d01
commit 4f7cd5daa2
No known key found for this signature in database
GPG key ID: 442A84B8C70E2F87

View file

@ -12073,27 +12073,31 @@ (define-public emacs-ebuild-mode
(license license:gpl2+)))
(define-public emacs-evil
;; Commit message claims this is 1.15.0, but there's no tag for it, so we
;; use full git-version instead
(let ((commit "008a6cdb12f15e748979a7d1c2f26c34c84dedbf")
(revision "0"))
(package
(name "emacs-evil")
(version "1.14.2")
(version (git-version "1.15.0" revision commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/emacs-evil/evil")
(commit version)))
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32
"1mhm1hd6gzxc2vvihh1w1j8f30xp0ssqcxnp8fx22niz04fk5df8"))))
"1hxhw1rsm0wbrhz85gfabncanijpxd47g5yrdnl3bbm499z1gsvg"))))
(arguments
(list
#:phases
#~(modify-phases %standard-phases
`(#:phases
(modify-phases %standard-phases
(add-before 'check 'fix-test-helpers
(lambda _
(substitute* "evil-test-helpers.el"
(("\\(undo-tree-mode 1\\)") ""))))
(("\\(undo-tree-mode 1\\)") ""))
#t))
(add-before 'install 'make-info
(lambda _
(with-directory-excursion "doc/build/texinfo"
@ -12107,7 +12111,7 @@ (define-public emacs-evil
"Evil is an extensible vi layer for Emacs. It emulates the
main features of Vim, and provides facilities for writing custom
extensions.")
(license license:gpl3+)))
(license license:gpl3+))))
(define-public emacs-evil-collection
(package