GNU bug report logs -
#56286
Add kyua, lutok, atf
Previous Next
Reported by: "(" <paren <at> disroot.org>
Date: Tue, 28 Jun 2022 17:43:02 UTC
Severity: normal
Tags: patch
Done: Maxim Cournoyer <maxim.cournoyer <at> gmail.com>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
* gnu/packages/check.scm (kyua): New variable.
---
gnu/packages/check.scm | 33 +++++++++++++++++++++++++++++++++
1 file changed, 33 insertions(+)
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm
index 3cc68987b3..cfef07a6b0 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -67,6 +67,7 @@ (define-module (gnu packages check)
#:use-module (gnu packages gnome)
#:use-module (gnu packages golang)
#:use-module (gnu packages gtk)
+ #:use-module (gnu packages lua)
#:use-module (gnu packages perl)
#:use-module (gnu packages pkg-config)
#:use-module (gnu packages python)
@@ -75,6 +76,7 @@ (define-module (gnu packages check)
#:use-module (gnu packages python-web)
#:use-module (gnu packages python-xyz)
#:use-module (gnu packages python-science)
+ #:use-module (gnu packages sqlite)
#:use-module (gnu packages time)
#:use-module (gnu packages xml)
#:use-module (guix utils)
@@ -3194,3 +3196,34 @@ (define-public atf
"ATF, or Automated Testing Framework, is a collection of libraries to
write test programs in C, C++ and POSIX shell.")
(license license:bsd-3))))
+
+(define-public kyua
+ ;; The last tag was in 2016; the last commit was in 2019.
+ (let ((commit "a685f911237e7badddbfb71f1301f640c71673d0")
+ (revision "0"))
+ (package
+ (name "kyua")
+ (version (git-version "0.13" revision commit))
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/jmmv/kyua")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "174swi6fz5xhh9rvhzlqfg1ka06hh1aaj46mvi871mvqiwhh8psi"))))
+ (build-system gnu-build-system)
+ (arguments
+ ;; Many of the tests fail, likely due to bitrot, bad interactions with the
+ ;; isolated build environment, or a combination of the two.
+ (list #:tests? #f))
+ (inputs (list lua-5.2 lutok sqlite))
+ (native-inputs (list atf autoconf automake libtool pkg-config))
+ (home-page "https://github.com/jmmv/kyua")
+ (synopsis "Testing framework for infrastructure software")
+ (description "Kyua is a testing framework for infrastructure software,
+originally designed to equip BSD-based operating systems with a testing framework.
+It features a test suite definition language based on Lua, a runtime engine for
+test suites, and a powerful report generation engine.")
+ (license license:bsd-3))))
--
2.36.1
This bug report was last modified 1 year and 80 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.