[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: wabt: Update to 1.0.34.
From: |
guix-commits |
Subject: |
branch master updated: gnu: wabt: Update to 1.0.34. |
Date: |
Fri, 09 Feb 2024 16:42:29 -0500 |
This is an automated email from the git hooks/post-receive script.
vagrantc pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 8ffc923368 gnu: wabt: Update to 1.0.34.
8ffc923368 is described below
commit 8ffc9233681863408034c8e371c5cfd3591545d2
Author: Vagrant Cascadian <vagrant@reproducible-builds.org>
AuthorDate: Fri Feb 2 15:32:04 2024 -0800
gnu: wabt: Update to 1.0.34.
* gnu/packages/web.scm (wabt): Update to 1.0.34.
[arguments]: Disable tests on !x86_64.
---
gnu/packages/web.scm | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index 43a8e7ad15..a1039b9e0c 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -1638,7 +1638,7 @@ for efficient socket-like bidirectional reliable
communication channels.")
(define-public wabt
(package
(name "wabt")
- (version "1.0.32")
+ (version "1.0.34")
(source
(origin
(method git-fetch)
@@ -1648,13 +1648,15 @@ for efficient socket-like bidirectional reliable
communication channels.")
(recursive? #true)))
(file-name (git-file-name name version))
(sha256
- (base32 "0m124r8v9c0hxiaa4iy7ch4ng8msnirbc2vb702gbdjhvgzyrcwh"))
+ (base32 "1vxvc34b7a7lkrmzdb5cjv0b54vhiyr33sy0i2ps5jrmg5rqqmia"))
(modules '((guix build utils)))
(snippet
'(delete-file-recursively "third_party/gtest/"))))
(build-system cmake-build-system)
(arguments
(list
+ ;; Tests on non-x86_64 architectures are not well supported upstream.
+ #:tests? (target-x86-64?)
#:test-target "run-tests"
#:configure-flags '(list "-DUSE_SYSTEM_GTEST=ON")
#:phases
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: wabt: Update to 1.0.34.,
guix-commits <=