guix_mirror_bot pushed a commit to branch emacs-team
in repository guix.
commit ef988067d03651ed8e1f55ab4add332149bbc70c
Author: Nicolas Graves <[email protected]>
AuthorDate: Tue May 27 01:05:19 2025 +0200
gnu: emacs-espuds: Move to (gnu packages emacs-build).
* gnu/packages/emacs-xyz.scm (emacs-espuds): Move from here…
* gnu/packages/emacs-build.scm (emacs-espuds): …to here.
Signed-off-by: Andreas Enge <[email protected]>
---
gnu/packages/emacs-build.scm | 23 +++++++++++++++++++++++
gnu/packages/emacs-xyz.scm | 23 -----------------------
2 files changed, 23 insertions(+), 23 deletions(-)
diff --git a/gnu/packages/emacs-build.scm b/gnu/packages/emacs-build.scm
index 3affa55267..a7f8cc109d 100644
--- a/gnu/packages/emacs-build.scm
+++ b/gnu/packages/emacs-build.scm
@@ -345,6 +345,29 @@ using ERT. It assumes a certain test structure setup and
can therefore make
running tests easier.")
(license license:gpl3+)))
+(define-public emacs-espuds
+ (package
+ (name "emacs-espuds")
+ (version "0.3.3")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/ecukes/espuds")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "16r4j27j9yfdiy841w9q5ykkc6n3wrm7hvfacagb32mydk821ijg"))))
+ (build-system emacs-build-system)
+ (arguments (list #:tests? #f)) ; XXX: test defined twice
+ (propagated-inputs
+ (list emacs-s emacs-dash emacs-f))
+ (home-page "https://github.com/ecukes/espuds")
+ (synopsis "Common step definitions for Ecukes")
+ (description "Espuds is a collection of the most commonly used step
+definitions for testing with the Ecukes framework.")
+ (license license:gpl3+)))
+
(define-public emacs-f
(package
(name "emacs-f")
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 7102397dbc..46f323458d 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -8178,29 +8178,6 @@ something with a bit more flair than the Modus themes.")
"This package lets Flymake run ESLint on the current buffer.")
(license license:gpl3+))))
-(define-public emacs-espuds
- (package
- (name "emacs-espuds")
- (version "0.3.3")
- (source
- (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/ecukes/espuds")
- (commit (string-append "v" version))))
- (file-name (git-file-name name version))
- (sha256
- (base32 "16r4j27j9yfdiy841w9q5ykkc6n3wrm7hvfacagb32mydk821ijg"))))
- (build-system emacs-build-system)
- (arguments (list #:tests? #f)) ; XXX: test defined twice
- (propagated-inputs
- (list emacs-s emacs-dash emacs-f))
- (home-page "https://github.com/ecukes/espuds")
- (synopsis "Common step definitions for Ecukes")
- (description "Espuds is a collection of the most commonly used step
-definitions for testing with the Ecukes framework.")
- (license license:gpl3+)))
-
(define-public emacs-spark
(let ((version "20160503") ; no proper tag, use date of commit
(commit "0bf148c3ede3b31d56fd75f347cdd0b0eae60025")