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:           Sat Dec  4 12:37:06 UTC 2021

Modified Files:
        pkgsrc/devel/binaryen: Makefile PLIST distinfo

Log Message:
binaryen: update to 103.

v103
----

- The EffectAnalyzer now takes advantage of immutability of globals. To achieve
  that it must have access to the module. That is already the case in the C++
  API, but the JS API allowed one to optionally not add a module when calling
  `getSideEffects()`. It is now mandatory to pass in the module.
- JS and Wasm builds now emit ECMAScript modules. New usage is:
  ```js
  import Binaryen from "path/to/binaryen.js";
  const binaryen = await Binaryen();
  ...
  ```
- CallIndirect changed from storing a Signature to storing a HeapType


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 pkgsrc/devel/binaryen/Makefile
cvs rdiff -u -r1.3 -r1.4 pkgsrc/devel/binaryen/PLIST
cvs rdiff -u -r1.6 -r1.7 pkgsrc/devel/binaryen/distinfo

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.4 pkgsrc/devel/binaryen/Makefile:1.5
--- pkgsrc/devel/binaryen/Makefile:1.4  Sat Sep 11 19:52:33 2021
+++ pkgsrc/devel/binaryen/Makefile      Sat Dec  4 12:37:06 2021
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.4 2021/09/11 19:52:33 fcambus Exp $
+# $NetBSD: Makefile,v 1.5 2021/12/04 12:37:06 fcambus Exp $
 
-VERSION=       102
+VERSION=       103
 DISTNAME=      binaryen-${VERSION}
 CATEGORIES=    devel
 MASTER_SITES=  ${MASTER_SITE_GITHUB:=WebAssembly/}

Index: pkgsrc/devel/binaryen/PLIST
diff -u pkgsrc/devel/binaryen/PLIST:1.3 pkgsrc/devel/binaryen/PLIST:1.4
--- pkgsrc/devel/binaryen/PLIST:1.3     Sat Sep 11 19:52:33 2021
+++ pkgsrc/devel/binaryen/PLIST Sat Dec  4 12:37:06 2021
@@ -1,8 +1,9 @@
-@comment $NetBSD: PLIST,v 1.3 2021/09/11 19:52:33 fcambus Exp $
+@comment $NetBSD: PLIST,v 1.4 2021/12/04 12:37:06 fcambus Exp $
 bin/wasm-as
 bin/wasm-ctor-eval
 bin/wasm-dis
 bin/wasm-emscripten-finalize
+bin/wasm-fuzz-types
 bin/wasm-metadce
 bin/wasm-opt
 bin/wasm-reduce

Index: pkgsrc/devel/binaryen/distinfo
diff -u pkgsrc/devel/binaryen/distinfo:1.6 pkgsrc/devel/binaryen/distinfo:1.7
--- pkgsrc/devel/binaryen/distinfo:1.6  Tue Oct 26 10:14:19 2021
+++ pkgsrc/devel/binaryen/distinfo      Sat Dec  4 12:37:06 2021
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.6 2021/10/26 10:14:19 nia Exp $
+$NetBSD: distinfo,v 1.7 2021/12/04 12:37:06 fcambus Exp $
 
-BLAKE2s (binaryen-102.tar.gz) = eb66b642acbf8f43202957b877754d558cce642541cf87a0e2bc986f8a3e3fd4
-SHA512 (binaryen-102.tar.gz) = 04ed9abca7469fc7f0d4b348e3fc6637585306b4c92683688f0ced50bc03a9f16ea7634daed45db96f7e543d9ac66440e17339187ba97b779a041a6032f7f279
-Size (binaryen-102.tar.gz) = 3901225 bytes
+BLAKE2s (binaryen-103.tar.gz) = 1438d141f86fede81452c05b24eaab2bca0e45a41440a1da2ef3e0b50c2c27a8
+SHA512 (binaryen-103.tar.gz) = 57be126b33cd346e65ac41ac46c25b55853eb67890479fd4a006c62c2ba6e5e21f4939520719f2c16214c1675b9b19c7330014405c9aaf5c1953d83774184420
+Size (binaryen-103.tar.gz) = 4019610 bytes



Home | Main Index | Thread Index | Old Index