guix_mirror_bot pushed a commit to branch master
in repository guix.
commit b05b4f885beba2ce37cc7710442fa49be57977dc
Author: Nicolas Graves <[email protected]>
AuthorDate: Sun Apr 27 16:52:53 2025 +0200
gnu: emacs-org-auto-expand: Skip tests.
* gnu/packages/emacs-xyz.scm (emacs-org-auto-expand): Skip tests.
[source]: Remove uneeded makem files.
[arguments]<tests?>: Disable them.
Signed-off-by: Liliana Marie Prikler <[email protected]>
---
gnu/packages/emacs-xyz.scm | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 70dc5adeb3..19efe76592 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -26932,8 +26932,12 @@ whenever saving an @code{org-mode} file.")
(file-name (git-file-name name version))
(sha256
(base32
- "1my0c6xmkh37lwi6l472lz9d86lf20h6xcllzlxm1lxa24rhva6v"))))
+ "1my0c6xmkh37lwi6l472lz9d86lf20h6xcllzlxm1lxa24rhva6v"))
+ (snippet #~(begin
+ (for-each delete-file
+ '("makem.sh" "Makefile"))))))
(build-system emacs-build-system)
+ (arguments (list #:tests? #f)) ; No tests.
(propagated-inputs
(list emacs-org emacs-dash))
(home-page "https://github.com/alphapapa/org-auto-expand")