diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-28 15:15:25 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-08-08 16:50:05 +0100 |
commit | 45063df00510dbee53f78f6a84186cfa6ca71079 (patch) | |
tree | 7bebf09f7a5681a6713e6a8c877460a3e70af871 | |
parent | ebdc4fb292d2d49a98dda70b3477e66b3fca188b (diff) |
gnu: Remove cmdtest.
Not maintained, no users in Guix.
* gnu/packages/check.scm (cmdtest): Delete variable.
Change-Id: I254ff98633cf33f2c088ed8d82c7cb9dafc105f3
-rw-r--r-- | gnu/packages/check.scm | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm index 14bf56e7d1..b020bbc912 100644 --- a/gnu/packages/check.scm +++ b/gnu/packages/check.scm @@ -781,7 +781,6 @@ pattern.") a multi-paradigm automated test framework for C++ and Objective-C.") (license license:boost1.0))) - (define-public catch2-3 (package (inherit catch2-3.8) @@ -797,35 +796,6 @@ a multi-paradigm automated test framework for C++ and Objective-C.") (base32 "11yla93vm2896fzhm3fz8lk3y3iz5iy7vd6wa7wnwvhsfd2dbfq3")))))) -(define-public cmdtest - (package - (name "cmdtest") - ;; Use the latest commit (from 2019) in order to get Python 3 support. - (version "0.32-14-gcdfe14e") - (source (origin - (method git-fetch) - (uri (git-reference - (url "git://git.liw.fi/cmdtest/") - (commit version))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "1yhcwsqcpckkq5kw3h07k0xg6infyiyzq9ni3nqphrzxis7hxjf1")))) - (build-system python-build-system) - (arguments `(#:tests? #f)) ;requires Python 2! - (native-inputs - (list python-coverage-test-runner python)) - (inputs - (list python-cliapp python-markdown python-ttystatus)) - (home-page "https://liw.fi/cmdtest/") - (synopsis "Black box Unix program tester") - (description - "@code{cmdtest} black box tests Unix command line tools. Roughly, it is -given a command line and input files, and the expected output, and it verifies -that the command line produces the expected output. If not, it reports a -problem, and shows the differences.") - (license license:gpl3+))) - (define-public cmocka (package (name "cmocka") |