[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/04: gnu: Add emacs-robot-log.
From: |
guix-commits |
Subject: |
04/04: gnu: Add emacs-robot-log. |
Date: |
Sun, 10 Jul 2022 01:05:41 -0400 (EDT) |
apteryx pushed a commit to branch master
in repository guix.
commit 13c73ccd902c55ef859cf2b8a5f96d93007892d8
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Sat Jul 9 13:25:03 2022 -0400
gnu: Add emacs-robot-log.
* gnu/packages/emacs-xyz.scm (emacs-robot-log): New variable.
---
gnu/packages/emacs-xyz.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 9dbed0d881..4762cc3485 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -5764,6 +5764,30 @@ features such as syntax highlighting, comments, finding
keywords, completing
keywords and smart indentation.")
(license license:gpl3+)))
+(define-public emacs-robot-log
+ (package
+ (name "emacs-robot-log")
+ (version "0.1.3")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://git.sr.ht/~apteryx/emacs-robot-log")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0pv0kljx2n2n7ql6rfw1x63mbd1k2qwbq3zkw452lb8jmnp7dr3y"))))
+ (build-system emacs-build-system)
+ (native-inputs (list python-robotframework))
+ (arguments (list #:tests? #t))
+ (home-page "https://sr.ht/~apteryx/emacs-robot-log/")
+ (synopsis "Emacs major mode for viewing RobotFramework debug log files")
+ (description "@code{robot-log} is an Emacs major mode that allows more
+easily viewing and navigating RobotFramework debug log files. It provides
+syntax highlighting and convenient shortcuts to move from one keyword to the
+next, or locate errors.")
+ (license license:gpl3+)))
+
(define-public emacs-robots-txt-mode
(package
(name "emacs-robots-txt-mode")