mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-17 20:27:36 -05:00
gnu: emacs-elisp-refs: Update to 1.4.
* gnu/packages/emacs-xyz.scm (emacs-elisp-refs): Update to 1.4. [arguments]<#:phases>: Remove DISABLE-REFS-NEXT-MATCH-TEST phase. <#:test-command>: Use G-expressions.
This commit is contained in:
parent
d738570a85
commit
45335578d6
1 changed files with 5 additions and 14 deletions
|
@ -18607,7 +18607,7 @@ (define-public emacs-loop
|
||||||
(define-public emacs-elisp-refs
|
(define-public emacs-elisp-refs
|
||||||
(package
|
(package
|
||||||
(name "emacs-elisp-refs")
|
(name "emacs-elisp-refs")
|
||||||
(version "1.3")
|
(version "1.4")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
|
@ -18616,7 +18616,7 @@ (define-public emacs-elisp-refs
|
||||||
(commit version)))
|
(commit version)))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0w7k91xf69zc0zkjrw8h8sjdjf9xq9qs5zhvajhd718lzf93564b"))))
|
(base32 "03p95kwvwb3apb3lhhdlaxs952x7sdlxa2qc1c77cjwrm5xzdg9z"))))
|
||||||
(build-system emacs-build-system)
|
(build-system emacs-build-system)
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list emacs-dash
|
(list emacs-dash
|
||||||
|
@ -18628,18 +18628,9 @@ (define-public emacs-elisp-refs
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list emacs-ert-runner emacs-undercover))
|
(list emacs-ert-runner emacs-undercover))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #t
|
(list
|
||||||
#:test-command '("ert-runner")
|
#:tests? #t
|
||||||
#:phases
|
#:test-command #~(list "ert-runner")))
|
||||||
(modify-phases %standard-phases
|
|
||||||
(add-before 'check 'disable-refs-next-match-test
|
|
||||||
;; Hack to disable the failing test for emacs27
|
|
||||||
;; https://github.com/Wilfred/elisp-refs/issues/29
|
|
||||||
(lambda _
|
|
||||||
(substitute* "test/unit-test.el"
|
|
||||||
(("ert-deftest elisp-refs-next-match")
|
|
||||||
"defun elisp-refs-next-match"))
|
|
||||||
#t)))))
|
|
||||||
(home-page "https://github.com/Wilfred/elisp-refs")
|
(home-page "https://github.com/Wilfred/elisp-refs")
|
||||||
(synopsis "Find callers of elisp functions or macros")
|
(synopsis "Find callers of elisp functions or macros")
|
||||||
(description "Find references to functions, macros or variables. Unlike a
|
(description "Find references to functions, macros or variables. Unlike a
|
||||||
|
|
Loading…
Reference in a new issue