1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-15 11:30:44 +02:00

gnu: emacs-shell-command+: Fix tests.

* gnu/packages/emacs-xyz.scm (emacs-shell-command+)[arguments]:
Add #:test-command.
<#:phases>: Add ‘fix-tests’.
This commit is contained in:
Liliana Marie Prikler 2025-03-21 22:10:42 +01:00
parent e98f3a010a
commit c8f9cea3b2
No known key found for this signature in database
GPG key ID: 442A84B8C70E2F87

View file

@ -41244,6 +41244,16 @@ rather excellent completion provided by both Bash and Zsh.")
(base32
"022i7ydwckxqk16s4a83mrdr0c4rmap906qypdkjfh1rjw75qwm5"))))
(build-system emacs-build-system)
(arguments (list #:test-command #~(list "make" "test")
#:phases
#~(modify-phases %standard-phases
(add-after 'unpack 'fix-tests
(lambda _
(substitute* "shell-command+-tests.el"
(("\"shell-command\\+-tests\\.el\"" all)
(string-append "\"shell-command+-autoloads.el\""
" "
all))))))))
(home-page "https://elpa.gnu.org/packages/shell-command+.html")
(synopsis "Extended Emacs @code{shell-command}")
(description