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 Apr 17 20:04:24 UTC 2021

Modified Files:
        pkgsrc/devel/binaryen: Makefile distinfo

Log Message:
binaryen: update to 101.

v101
----

- `BinaryenSetFunctionTable` and `module.setFunctionTable` have been removed
  in favor of `BinaryenAddTable` and `module.addTable` respectively.
- `BinaryenIsFunctionTableImported` is removed.
- A new type `BinaryenElementSegmentRef` has been added to the C API with
  new apis in both C & JS:
  - `BinaryenAddActiveElementSegment`
  - `BinaryenAddPassiveElementSegment`
  - `BinaryenRemoveElementSegment`
  - `BinaryenGetElementSegment`
  - `BinaryenGetElementSegmentByIndex`
  - `BinaryenElementSegmentGetName`
  - `BinaryenElementSegmentSetName`
  - `BinaryenElementSegmentGetTable`
  - `BinaryenElementSegmentSetTable`
  - `BinayenElementSegmentIsPassive`
  - `module.addActiveElementSegment`
  - `module.addPassiveElementSegment`
  - `module.removeElementSegment`
  - `module.getElementSegment`
  - `module.getElementSegmentByIndex`
  - `module.getTableSegments`
  - `module.getNumElementSegments`
  - `binaryen.getElementSegmentInfo`
- `BinaryenAddTable` and `module.addTable` no longer take offset and function
    names.
- `BinaryenGetNumFunctionTableSegments` is replaced with
  `BinaryenGetNumElementSegments`.
- `BinaryenGetFunctionTableSegmentOffset` is replaced with
  `BinaryenElementSegmentGetOffset`.
- `BinaryenGetFunctionTableSegmentLength` is replaced with
  `BinaryenElementSegmentGetLength`.
- `BinaryenGetFunctionTableSegmentData` is replaced with
  `BinaryenElementSegmentGetData`.
- Boolean values in the C API now should use `bool` instead of `int`.
- Experimental SIMD instructions have been removed and the names and opcodes of
  the standard instructions have been updated to match the final spec.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 pkgsrc/devel/binaryen/Makefile \
    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.2 pkgsrc/devel/binaryen/Makefile:1.3
--- pkgsrc/devel/binaryen/Makefile:1.2  Thu Mar  4 02:13:13 2021
+++ pkgsrc/devel/binaryen/Makefile      Sat Apr 17 20:04:24 2021
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.2 2021/03/04 02:13:13 fcambus Exp $
+# $NetBSD: Makefile,v 1.3 2021/04/17 20:04:24 fcambus Exp $
 
-VERSION=       100
+VERSION=       101
 DISTNAME=      binaryen-${VERSION}
 CATEGORIES=    devel
 MASTER_SITES=  ${MASTER_SITE_GITHUB:=WebAssembly/}
Index: pkgsrc/devel/binaryen/distinfo
diff -u pkgsrc/devel/binaryen/distinfo:1.2 pkgsrc/devel/binaryen/distinfo:1.3
--- pkgsrc/devel/binaryen/distinfo:1.2  Thu Mar  4 02:13:13 2021
+++ pkgsrc/devel/binaryen/distinfo      Sat Apr 17 20:04:24 2021
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.2 2021/03/04 02:13:13 fcambus Exp $
+$NetBSD: distinfo,v 1.3 2021/04/17 20:04:24 fcambus Exp $
 
-SHA1 (binaryen-100.tar.gz) = 864152df2164b59e0c8e7d46a94e9152d8dce343
-RMD160 (binaryen-100.tar.gz) = 37692d610db1c341bdd2d83efbd78642cdc394b4
-SHA512 (binaryen-100.tar.gz) = ae287ffa9e0d1fcd761f006476e6b83f264481f08c2b7bf8b07e044326656842c4408e05908b717cbc8ffa529c0ed95e6e84fd7213ede220882b5eaadbfd70b5
-Size (binaryen-100.tar.gz) = 3691373 bytes
+SHA1 (binaryen-101.tar.gz) = 3817856cf47413af916d6da1548ec2a0b11c6b56
+RMD160 (binaryen-101.tar.gz) = 69836f9f0468760b7bf847915e511fc0bde1a155
+SHA512 (binaryen-101.tar.gz) = 819105fda25e3ee51d8a858f73aabe018e6af584eb2afd5b7fe06ce165e39487d5ee6da23eec2c62d8dd1d87002b00ff8bd63e28bef388ac0fed72dfe7ae88f8
+Size (binaryen-101.tar.gz) = 3760918 bytes



Home | Main Index | Thread Index | Old Index