summaryrefslogtreecommitdiff
path: root/devel/binaryen
diff options
context:
space:
mode:
authorfcambus <fcambus@pkgsrc.org>2022-05-04 19:09:23 +0000
committerfcambus <fcambus@pkgsrc.org>2022-05-04 19:09:23 +0000
commitbb18f78e0b52de892f254237813ece3d09c9727a (patch)
tree4736c912cfe888397724df41be48a1e0e49ce978 /devel/binaryen
parent0303fea10472adafb17890ebe221f9ff031c389c (diff)
downloadpkgsrc-bb18f78e0b52de892f254237813ece3d09c9727a.tar.gz
binaryen: update to 107.
v107 ---- - Update the wasm GC type section binary format (#4625, #4631) - Lift the restriction in liveness-traversal.h on max 65535 locals (#4567) - Switch to nominal fuzzing by default (#4610) - Refactor Feature::All to match FeatureSet.setAll() (#4557) - New Signature Pruning pass (#4545) - Add support for extended-const proposal (#4529) - Add BUILD_TESTS CMake option to make gtest dependency optional. - Updated tests to use filecheck 0.0.22 (#4537). Updating is required to successfully run the lit tests. This can be done with `pip3 install -r requirements-dev.txt`.
Diffstat (limited to 'devel/binaryen')
-rw-r--r--devel/binaryen/Makefile4
-rw-r--r--devel/binaryen/distinfo10
-rw-r--r--devel/binaryen/patches/patch-third__party_CMakeLists.txt17
3 files changed, 14 insertions, 17 deletions
diff --git a/devel/binaryen/Makefile b/devel/binaryen/Makefile
index ae5f831ddc4..5148ad6f09f 100644
--- a/devel/binaryen/Makefile
+++ b/devel/binaryen/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.8 2022/05/01 19:07:47 fcambus Exp $
+# $NetBSD: Makefile,v 1.9 2022/05/04 19:09:23 fcambus Exp $
-VERSION= 106
+VERSION= 107
DISTNAME= binaryen-${VERSION}
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_GITHUB:=WebAssembly/}
diff --git a/devel/binaryen/distinfo b/devel/binaryen/distinfo
index eee850c025b..81e09943482 100644
--- a/devel/binaryen/distinfo
+++ b/devel/binaryen/distinfo
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.10 2022/05/01 19:07:47 fcambus Exp $
+$NetBSD: distinfo,v 1.11 2022/05/04 19:09:23 fcambus Exp $
-BLAKE2s (binaryen-106.tar.gz) = 990139d67996f7d9456e279ea129c9354c2f8d4e49064ab161dd804837bd2c62
-SHA512 (binaryen-106.tar.gz) = ee95f2d6412aba0a610f6e95fc76d72120a0ef846b215096acbba6414e6597402024f119e37644758433b34c9641f904487bdfee1c179a0c49ce1b5d79a1c1fc
-Size (binaryen-106.tar.gz) = 4078232 bytes
-SHA1 (patch-third__party_CMakeLists.txt) = ca930c62cc5a12ad73e0b122bc9424ae9805fdb6
+BLAKE2s (binaryen-107.tar.gz) = 5eaa67030098ffe485fcb37490372802c7976da15583365d78522489389da05e
+SHA512 (binaryen-107.tar.gz) = 08f00384a493c2cd80c8e09eec832b919b5b3bbe52ab3ece70037d01aa67eb898f375ec684cd820a8b4ddf2d21f1452a49fd3d62065976043a6d9e30078ad51c
+Size (binaryen-107.tar.gz) = 4100769 bytes
+SHA1 (patch-third__party_CMakeLists.txt) = 02f3f7476049348a29e93ebe3bceb2dbba47ebf3
diff --git a/devel/binaryen/patches/patch-third__party_CMakeLists.txt b/devel/binaryen/patches/patch-third__party_CMakeLists.txt
index feaa15a86b7..5564a65595d 100644
--- a/devel/binaryen/patches/patch-third__party_CMakeLists.txt
+++ b/devel/binaryen/patches/patch-third__party_CMakeLists.txt
@@ -1,10 +1,10 @@
-$NetBSD: patch-third__party_CMakeLists.txt,v 1.1 2022/05/01 19:07:47 fcambus Exp $
+$NetBSD: patch-third__party_CMakeLists.txt,v 1.2 2022/05/04 19:09:23 fcambus Exp $
Don't attempt to build a local copy of GoogleTest.
---- third_party/CMakeLists.txt.orig 2022-05-01 18:09:27.629306726 +0000
+--- third_party/CMakeLists.txt.orig 2022-05-04 17:59:47.117855128 +0000
+++ third_party/CMakeLists.txt
-@@ -1,16 +1,3 @@
+@@ -1,13 +1,3 @@
if(BUILD_LLVM_DWARF)
add_subdirectory(llvm-project)
endif()
@@ -14,10 +14,7 @@ Don't attempt to build a local copy of GoogleTest.
- googletest/googletest/include
-)
-
--add_library(gtest STATIC
-- googletest/googletest/src/gtest-all.cc
--)
--
--add_library(gtest_main STATIC
-- googletest/googletest/src/gtest_main.cc
--)
+-if(BUILD_TESTS)
+- add_library(gtest STATIC googletest/googletest/src/gtest-all.cc)
+- add_library(gtest_main STATIC googletest/googletest/src/gtest_main.cc)
+-endif()