guix_mirror_bot pushed a commit to branch master
in repository guix.
commit b2fc2b6c28ae1bafc94d6931f6777b43c8c03d67
Author: Morgan Smith <[email protected]>
AuthorDate: Tue Sep 8 21:33:21 2026 -0400
gnu: emacs-ssh-deploy: Fix build.
* gnu/packages/emacs-xyz.scm (emacs-ssh-deploy)[home-page]: Update.
[#:phases]<fix-tests>: New phase.
Signed-off-by: Liliana Marie Prikler <[email protected]>
---
gnu/packages/emacs-xyz.scm | 11 +++++++++--
1 file changed, 9 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 3da5e00f50b..187c2926e81 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -43388,8 +43388,15 @@ passphrase until the first time you push to a remote.")
(sha256
(base32 "0fb88l3270d7l808q8x16zcvjgsjbyhgifgv17syfsj0ja63x28p"))))
(build-system emacs-build-system)
- (arguments (list #:test-command #~(list "make" "test")))
- (home-page "https://github.com/cjohansson/emacs-ssh-deploy")
+ (arguments (list #:test-command #~(list "make" "test")
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'fix-tests
+ ;; XXX: async-thread tests fail
+ (lambda _
+ (substitute* "ssh-deploy-test.el"
+ (("when async-threads") "when nil")))))))
+ (home-page "https://forgejo.cvj.se/cjohansson/emacs-ssh-deploy.git")
(synopsis "Deployment via Tramp, global or per directory")
(description
"SSH Deploy enables automatic deploys on explicit-save actions, manual