mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 14:16:55 -05:00
gnu: emacs-evil-traces: Update to 0.2.0.
* gnu/packages/emacs-xyz.scm (emacs-evil-traces): Update to 0.2.0. [arguments]: Use G-expressions. Remove trailing #T. [synopsis, description]: Rationalize emphasis and capitalization.
This commit is contained in:
parent
faa03d1ace
commit
7e75269b8b
1 changed files with 19 additions and 18 deletions
|
@ -28615,11 +28615,12 @@ (define-public emacs-excorporate
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public emacs-evil-traces
|
(define-public emacs-evil-traces
|
||||||
(let ((commit "1931e3ea2c64b4aec393a9c25063c330deff55e3")
|
;; XXX: Upstream does not tag releases. Use commit matching exact version
|
||||||
(revision "2"))
|
;; bump.
|
||||||
|
(let ((commit "05e201cd63b549e3c88b5c3fc9b264bd6fe5a42c"))
|
||||||
(package
|
(package
|
||||||
(name "emacs-evil-traces")
|
(name "emacs-evil-traces")
|
||||||
(version (git-version "0.0.1" revision commit))
|
(version "0.2.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
|
@ -28628,25 +28629,25 @@ (define-public emacs-evil-traces
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"12p9lfxscs182vbd4dy0m5gacs3d4kyprbz5yndpwvl8g2qsqplz"))))
|
"0vadpy2whcgx08blyb4vw6wq3nrxdl03zv85lp37pf3mdk9kwmga"))))
|
||||||
(build-system emacs-build-system)
|
(build-system emacs-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:tests? #t
|
||||||
|
#:test-command #~(list "make" "test")
|
||||||
|
#:phases
|
||||||
|
#~(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'set-shell
|
||||||
|
;; Setting the SHELL environment variable is required for the
|
||||||
|
;; tests to find sh.
|
||||||
|
(lambda _
|
||||||
|
(setenv "SHELL" (which "sh")))))))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list emacs-evil))
|
(list emacs-evil))
|
||||||
(arguments
|
|
||||||
`(#:phases
|
|
||||||
(modify-phases %standard-phases
|
|
||||||
(add-after 'unpack 'set-shell
|
|
||||||
;; Setting the SHELL environment variable is required for the tests
|
|
||||||
;; to find sh.
|
|
||||||
(lambda _
|
|
||||||
(setenv "SHELL" (which "sh"))
|
|
||||||
#t)))
|
|
||||||
#:tests? #t
|
|
||||||
#:test-command '("make" "test")))
|
|
||||||
(home-page "https://github.com/mamapanda/evil-traces")
|
(home-page "https://github.com/mamapanda/evil-traces")
|
||||||
(synopsis "Visual hints for @code{evil-ex}")
|
(synopsis "Visual hints for Emacs' Evil Ex commands")
|
||||||
(description "This package adds visual hints to certain @code{ex}
|
(description "This package adds visual hints to certain Ex commands in
|
||||||
commands in @code{evil-mode}.")
|
Evil mode.")
|
||||||
(license license:gpl3+))))
|
(license license:gpl3+))))
|
||||||
|
|
||||||
(define-public emacs-evil-tmux-navigator
|
(define-public emacs-evil-tmux-navigator
|
||||||
|
|
Loading…
Reference in a new issue