guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 572e0dfa4e2e294ac43cb722be4132b7733f46d2
Author: Nicolas Graves <[email protected]>
AuthorDate: Tue May 27 01:05:21 2025 +0200

    gnu: emacs-prodigy: Skip tests.
    
    * gnu/packages/emacs-xyz.scm (emacs-prodigy): Skip tests.
      [arguments]<test-command>: Set it.
      <pĥases>: Add phases 'inject-makel to setup tests.
      <tests?>: Skip them, because of a missing input.
      [native-inputs]: Add emacs-ecukes, emacs-shut-up, makel.
    
    Signed-off-by: Andreas Enge <[email protected]>
---
 gnu/packages/emacs-xyz.scm | 11 ++++++++++-
 1 file changed, 10 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 4208a15a17..813b7d01b7 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -35877,10 +35877,19 @@ screensaver activation in EXWM.")
         (base32
          "04xspdj67nas1ivv0ldlmmkr6v7zd7y3k346pnfgvq8wzqi6x4vz"))))
     (build-system emacs-build-system)
+    (arguments
+     (list #:tests? #f  ; XXX: Missing coffescript requirement.
+           #:test-command #~(list "make" "test-ert")
+           #:phases
+           #~(modify-phases %standard-phases
+               (add-after 'unpack 'inject-makel
+                 (lambda* (#:key inputs #:allow-other-keys)
+                   (symlink (search-input-file inputs "include/makel.mk")
+                            "makel.mk"))))))
     (propagated-inputs
      (list emacs-dash emacs-f emacs-s))
     (native-inputs
-     (list emacs-el-mock emacs-ert-async))
+     (list emacs-ecukes emacs-el-mock emacs-ert-async emacs-shut-up makel))
     (home-page "https://github.com/rejeep/prodigy.el";)
     (synopsis "Manage external services from within Emacs")
     (description "This package provides a GUI for defining and monitoring 
services.")

Reply via email to