guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/07: gnu: clitest: Update to 0.4.0.


From: guix-commits
Subject: 01/07: gnu: clitest: Update to 0.4.0.
Date: Mon, 7 Feb 2022 17:48:40 -0500 (EST)

mbakke pushed a commit to branch master
in repository guix.

commit 696e34e7217ed545af0d05c802f70c362a9f8df8
Author: Marius Bakke <marius@gnu.org>
AuthorDate: Mon Feb 7 21:58:41 2022 +0100

    gnu: clitest: Update to 0.4.0.
    
    * gnu/packages/check.scm (clitest): Update to 0.4.0.
    [inputs]: Add BASH-MINIMAL.
    [arguments]: Remove trailing #t.
---
 gnu/packages/check.scm | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm
index 913c803a24..7315ebfe5e 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -209,17 +209,15 @@ source code editors and IDEs.")
 (define-public clitest
   (package
     (name "clitest")
-    (version "0.3.0")
+    (version "0.4.0")
     (home-page "https://github.com/aureliojargas/clitest";)
     (source (origin
               (method git-fetch)
-              (uri (git-reference
-                    (url home-page)
-                    (commit (string-append "v" version))))
+              (uri (git-reference (url home-page) (commit version)))
               (file-name (git-file-name name version))
               (sha256
                (base32
-                "0zw5wra9hc717srmcar1wm4i34kyj8c49ny4bb7y3nrvkjp2pdb5"))))
+                "1p745mxiq3hgi3ywfljs5sa1psi06awwjxzw0j9c2xx1b09yqv4a"))))
     (build-system gnu-build-system)
     (arguments
      `(#:phases
@@ -244,10 +242,12 @@ source code editors and IDEs.")
              (let ((out (assoc-ref outputs "out")))
                (install-file "clitest" (string-append out "/bin"))
                (install-file "README.md"
-                             (string-append out "/share/doc/clitest-" 
,version))
-               #t))))))
+                             (string-append out "/share/doc/clitest-"
+                                            ,version))))))))
     (native-inputs
      (list perl))                 ;for tests
+    (inputs
+     (list bash-minimal))
     (synopsis "Command line test tool")
     (description
      "@command{clitest} is a portable shell script that performs automatic



reply via email to

[Prev in Thread] Current Thread [Next in Thread]