[bug#78599,3/7] gnu: emacs-espuds: Move to (gnu packages emacs-build).
Commit Message
* gnu/packages/emacs-xyz.scm (emacs-espuds): Move from here…
* gnu/packages/emacs-build.scm (emacs-espuds): …to here.
---
gnu/packages/emacs-build.scm | 23 +++++++++++++++++++++++
gnu/packages/emacs-xyz.scm | 23 -----------------------
2 files changed, 23 insertions(+), 23 deletions(-)
@@ -345,6 +345,29 @@ (define-public emacs-ert-runner
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")
@@ -8027,29 +8027,6 @@ (define-public emacs-eslint-flymake
"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")