From d9ae8575769b188419af3d8b145d159ce71099cc Mon Sep 17 00:00:00 2001 From: Anderson Torres Date: Wed, 31 Dec 2025 20:57:49 -0300 Subject: gnu: atf: Indent. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/check.scm (atf): Cleanup. [source, arguments, native-inputs, inputs, license]: Indent. [description]: Indent. Change-Id: I09bbdc1be5d176617d2f3c0230e40bf2ff31a151 Signed-off-by: Ludovic Courtès --- gnu/packages/check.scm | 48 +++++++++++++++++++++++++++++------------------- 1 file changed, 29 insertions(+), 19 deletions(-) (limited to 'gnu') diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm index e57cdaf3a4..0afe391b5b 100644 --- a/gnu/packages/check.scm +++ b/gnu/packages/check.scm @@ -141,28 +141,36 @@ (package (name "atf") (version "0.21") - (source (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/freebsd/atf") - (commit (string-append name "-" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "0jwzz6g9jdi5f8v10y0wf3hq73vxyv5qqhkh832ddsj36gn8rlcz")) - (patches (search-patches "atf-execute-with-shell.patch")))) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/freebsd/atf") + (commit (string-append name "-" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0jwzz6g9jdi5f8v10y0wf3hq73vxyv5qqhkh832ddsj36gn8rlcz")) + (patches + (search-patches "atf-execute-with-shell.patch")))) (build-system gnu-build-system) (arguments - (list #:configure-flags - #~(list (string-append "ATF_SHELL=" - #$(this-package-input "bash-minimal") - "/bin/sh")))) - (native-inputs (list autoconf automake libtool)) - (inputs (list bash-minimal)) + (list + #:configure-flags + #~(list (string-append "ATF_SHELL=" + #$(this-package-input "bash-minimal") + "/bin/sh")))) + (native-inputs + (list autoconf + automake + libtool)) + (inputs + (list bash-minimal)) (home-page "https://github.com/freebsd/atf") (synopsis "C/C++ Automated Testing Framework libraries") - (description "ATF, or Automated Testing Framework, is a collection of -libraries to write test programs in C, C++ and POSIX shell. + (description + "ATF, or Automated Testing Framework, is a collection of libraries to +write test programs in C, C++ and POSIX shell. The ATF libraries offer a simple API. The API is orthogonal through the various bindings, allowing developers to quickly learn how to write test @@ -173,7 +181,9 @@ allow both humans and automation to run the tests. ATF-based test programs rely on an execution engine to be run and this execution engine is not shipped with ATF. Kyua is the engine of choice.") - (license (list license:bsd-2 license:bsd-3)))) + (license + (list license:bsd-2 + license:bsd-3)))) (define-public pict (package -- cgit v1.3