me
/
guix
Archived
1
0
Fork 0

gnu: emacs-helpful: Update to 0.18.

* gnu/packages/emacs-xyz.scm (emacs-helpful): Update to 0.18.

Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
master
Michael Rohleder 2020-10-04 12:17:47 +02:00 committed by Mathieu Othacehe
parent a6d78f2bba
commit 79fa492fb5
No known key found for this signature in database
GPG Key ID: 8354763531769CA6
1 changed files with 29 additions and 32 deletions

View File

@ -15869,37 +15869,34 @@ downloading manager for Emacs.")
(license license:gpl3+))))
(define-public emacs-helpful
(let ((version "0.17")
(commit "b0e937fff71dc0a5d34066bfd25310e76f284621")
(revision "1"))
(package
(name "emacs-helpful")
(version (git-version version revision commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/Wilfred/helpful")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32 "048qvlyj2vkgi872z8l07diwqnq21ziycv8slxzzy7rflw3wx0b2"))))
(build-system emacs-build-system)
(propagated-inputs
`(("emacs-elisp-refs" ,emacs-elisp-refs)
("emacs-dash" ,emacs-dash)
("emacs-s" ,emacs-s)
("emacs-f" ,emacs-f)
("emacs-shut-up" ,emacs-shut-up)))
(native-inputs
`(("emacs-ert-runner" ,emacs-ert-runner)
("emacs-undercover" ,emacs-undercover)))
(arguments
`(#:tests? #t
#:test-command '("ert-runner")))
(home-page "https://github.com/Wilfred/helpful")
(synopsis "More contextual information in Emacs help")
(description "@code{helpful} is an alternative to the built-in Emacs help
(package
(name "emacs-helpful")
(version "0.18")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/Wilfred/helpful")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32 "0gdjxykqkal2x765mi51m99i5ql23i1fy909wy4mzj5ajhjfgqcc"))))
(build-system emacs-build-system)
(propagated-inputs
`(("emacs-elisp-refs" ,emacs-elisp-refs)
("emacs-dash" ,emacs-dash)
("emacs-s" ,emacs-s)
("emacs-f" ,emacs-f)
("emacs-shut-up" ,emacs-shut-up)))
(native-inputs
`(("emacs-ert-runner" ,emacs-ert-runner)
("emacs-undercover" ,emacs-undercover)))
(arguments
`(#:tests? #t
#:test-command '("ert-runner")))
(home-page "https://github.com/Wilfred/helpful")
(synopsis "More contextual information in Emacs help")
(description "@code{helpful} is an alternative to the built-in Emacs help
that provides much more contextual information.
@itemize
@ -15918,7 +15915,7 @@ functions.
@item Trace, disassemble functions from inside Helpful. This is discoverable
and doesn't require memorisation of commands.
@end itemize\n")
(license license:gpl3+))))
(license license:gpl3+)))
(define-public emacs-logview
(package