me
/
guix
Archived
1
0
Fork 0

gnu: emacs-shx: Update to 1.5.0-1.b99d16f.

* gnu/packages/emacs-xyz.scm (emacs-shx): Update to 1.5.0-1.b99d16f.
[arguments]<#:phases>: Appease Checkdoc test.
master
Nicolas Goaziou 2023-01-28 15:24:40 +01:00
parent 37fdb382da
commit 8cd115b67e
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 31 additions and 22 deletions

View File

@ -6998,31 +6998,40 @@ the speedbar window.")
(license license:gpl3+))) (license license:gpl3+)))
(define-public emacs-shx (define-public emacs-shx
(package ;; XXX: Some tests fails in the latest stable release.
(name "emacs-shx") (let ((commit "b99d16f36bc278d668d8428c4bc9af77064c336a")
(version "1.5.0") (revision "1"))
(source (origin (package
(method git-fetch) (name "emacs-shx")
(uri (git-reference (version (git-version "1.5.0" revision commit))
(url "https://github.com/riscy/shx-for-emacs") (source (origin
(commit (string-append "v" version)))) (method git-fetch)
(file-name (git-file-name name version)) (uri (git-reference
(sha256 (url "https://github.com/riscy/shx-for-emacs")
(base32 "1cb5w6p9gnfxgh8qp7yj2f5ibpk1b4b5af3ynldaaj6yfpa8hqzn")))) (commit commit)))
(build-system emacs-build-system) (file-name (git-file-name name version))
(arguments (sha256
`(#:tests? #t (base32 "1wkqnc5n8if8fsh7f3bdr5nzn6dbj1nzdxlmnz8nflmx4g32fp6v"))))
#:test-command (build-system emacs-build-system)
'("emacs" "--batch" "--quiet" (arguments
"--script" "test/script.el"))) `(#:tests? #t
(home-page "https://github.com/riscy/shx-for-emacs") #:test-command
(synopsis "Extras for the comint-mode shell") '("emacs" "--batch" "--quiet"
(description "--script" "test/script.el")
"This package extends @code{comint-mode}: it parses markup in the output #:phases
(modify-phases %standard-phases
(add-after 'unpack 'appease-checkdoc
(lambda _
(substitute* "shx.el"
(("Toggle shx-mode on") "Toggle `shx-mode' on")))))))
(home-page "https://github.com/riscy/shx-for-emacs")
(synopsis "Extras for the comint-mode shell")
(description
"This package extends @code{comint-mode}: it parses markup in the output
stream, enabling plots and graphics to be embedded, and adds command-line stream, enabling plots and graphics to be embedded, and adds command-line
functions which plug into Emacs (e.g. use @code{:e <filename>} to edit a functions which plug into Emacs (e.g. use @code{:e <filename>} to edit a
file).") file).")
(license license:gpl3+))) (license license:gpl3+))))
(define-public emacs-names (define-public emacs-names
(let ((commit "d8baba5360e5253938a25d3e005455b6d2d86971") (let ((commit "d8baba5360e5253938a25d3e005455b6d2d86971")