pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/devel/binaryen
Module Name: pkgsrc
Committed By: fcambus
Date: Wed May 4 19:09:23 UTC 2022
Modified Files:
pkgsrc/devel/binaryen: Makefile distinfo
pkgsrc/devel/binaryen/patches: patch-third__party_CMakeLists.txt
Log Message:
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`.
To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 pkgsrc/devel/binaryen/Makefile
cvs rdiff -u -r1.10 -r1.11 pkgsrc/devel/binaryen/distinfo
cvs rdiff -u -r1.1 -r1.2 \
pkgsrc/devel/binaryen/patches/patch-third__party_CMakeLists.txt
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/devel/binaryen/Makefile
diff -u pkgsrc/devel/binaryen/Makefile:1.8 pkgsrc/devel/binaryen/Makefile:1.9
--- pkgsrc/devel/binaryen/Makefile:1.8 Sun May 1 19:07:47 2022
+++ pkgsrc/devel/binaryen/Makefile Wed May 4 19:09:23 2022
@@ -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/}
Index: pkgsrc/devel/binaryen/distinfo
diff -u pkgsrc/devel/binaryen/distinfo:1.10 pkgsrc/devel/binaryen/distinfo:1.11
--- pkgsrc/devel/binaryen/distinfo:1.10 Sun May 1 19:07:47 2022
+++ pkgsrc/devel/binaryen/distinfo Wed May 4 19:09:23 2022
@@ -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
Index: pkgsrc/devel/binaryen/patches/patch-third__party_CMakeLists.txt
diff -u pkgsrc/devel/binaryen/patches/patch-third__party_CMakeLists.txt:1.1 pkgsrc/devel/binaryen/patches/patch-third__party_CMakeLists.txt:1.2
--- pkgsrc/devel/binaryen/patches/patch-third__party_CMakeLists.txt:1.1 Sun May 1 19:07:47 2022
+++ pkgsrc/devel/binaryen/patches/patch-third__party_CMakeLists.txt Wed May 4 19:09:23 2022
@@ -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 G
- 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()
Home |
Main Index |
Thread Index |
Old Index