guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: gwl: Update to 0.5.1.


From: guix-commits
Subject: branch master updated: gnu: gwl: Update to 0.5.1.
Date: Sun, 13 Nov 2022 13:49:48 -0500

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

rekado pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 4df7db5955 gnu: gwl: Update to 0.5.1.
4df7db5955 is described below

commit 4df7db5955a19a5f168c58c644eb60e56ef5b550
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Sun Nov 13 19:49:05 2022 +0100

    gnu: gwl: Update to 0.5.1.
    
    * gnu/packages/package-management.scm (gwl): Update to 0.5.1.
    [arguments]: Disable one test.
---
 gnu/packages/package-management.scm | 14 +++++++++++---
 1 file changed, 11 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/package-management.scm 
b/gnu/packages/package-management.scm
index 9872d99312..7279234f69 100644
--- a/gnu/packages/package-management.scm
+++ b/gnu/packages/package-management.scm
@@ -1310,18 +1310,26 @@ allow for great power and flexibility.
 (define-public gwl
   (package
     (name "gwl")
-    (version "0.5.0")
+    (version "0.5.1")
     (source (origin
               (method url-fetch)
               (uri (string-append "mirror://gnu/gwl/gwl-" version ".tar.gz"))
               (sha256
                (base32
-                "09r22gqgaj2mxvlwvfach5j1n66y3yggmzc6d2gxq7lyywbcvjvs"))))
+                "08h76ib7hmqyj354aazxqyz0galhywz4093f8hc4py7hbg0rcm27"))))
     (build-system gnu-build-system)
     (arguments
      `(#:parallel-build? #false ; for reproducibility
        #:make-flags
-       '("GUILE_AUTO_COMPILE=0" "GWL_SKIP_INTEGRATION_TESTS=1")))
+       '("GUILE_AUTO_COMPILE=0" "GWL_SKIP_INTEGRATION_TESTS=1")
+       #:phases
+       (modify-phases %standard-phases
+         (add-after 'unpack 'disable-test
+           (lambda _
+             ;; This test loads a workflow, which requires a working Guix 
installation.
+             (substitute* "tests/cache.scm"
+               (("\\(test-assert \"workflows with same file name have 
different cache prefixes\"" m)
+                (string-append "#;" m))))))))
     (native-inputs
      (list autoconf automake pkg-config texinfo graphviz))
     (inputs



reply via email to

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