guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: oil: Update to 0.8.9.


From: guix-commits
Subject: branch master updated: gnu: oil: Update to 0.8.9.
Date: Wed, 14 Apr 2021 13:49:18 -0400

This is an automated email from the git hooks/post-receive script.

lfam pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new dd9e77f  gnu: oil: Update to 0.8.9.
dd9e77f is described below

commit dd9e77f81bce7fd3c869ee68b7ce68153d934460
Author: Felix Gruber <felgru@posteo.net>
AuthorDate: Wed Apr 14 19:16:39 2021 +0200

    gnu: oil: Update to 0.8.9.
    
    * gnu/packages/shells.scm (oil): Update to 0.8.9.
    [arguments]: Make the 'check' phase return #t.
    
    Signed-off-by: Leo Famulari <leo@famulari.name>
---
 gnu/packages/shells.scm | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/shells.scm b/gnu/packages/shells.scm
index 5ab3642..f2356db 100644
--- a/gnu/packages/shells.scm
+++ b/gnu/packages/shells.scm
@@ -825,14 +825,14 @@ Shell (pdksh).")
 (define-public oil
   (package
     (name "oil")
-    (version "0.8.8")
+    (version "0.8.9")
     (source
      (origin
        (method url-fetch)
        (uri (string-append "https://www.oilshell.org/download/oil-";
                            version ".tar.gz"))
        (sha256
-        (base32 "1g3xk160x9k5smfc9k8nnxcj7w1nacmnhnpmm72am9rjp1vpv9h1"))))
+        (base32 "080lsx7hyjhny3jzscwr152vr0g9s3c2iqg3vrpgsbk8vv7vw5l7"))))
     (build-system gnu-build-system)
     (arguments
      `(#:strip-binaries? #f             ; strip breaks the binary
@@ -853,7 +853,8 @@ Shell (pdksh).")
            (lambda _
              (let* ((oil "_bin/oil.ovm"))
                (invoke/quiet oil "osh" "-c" "echo hi")
-               (invoke/quiet oil "osh" "-n" "configure")))))))
+               (invoke/quiet oil "osh" "-n" "configure")
+               #t))))))
     (inputs
      `(("readline" ,readline)))
     (home-page "https://www.oilshell.org";)



reply via email to

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