Received: by mail.netbsd.org (Postfix, from userid 605) id 71AB684D0E; Tue, 16 Feb 2021 16:54:28 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id AD43984CF1 for ; Tue, 16 Feb 2021 16:54:27 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id J4msOprulD45 for ; Tue, 16 Feb 2021 16:54:27 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 1397284CBC for ; Tue, 16 Feb 2021 16:54:27 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 07297FA95; Tue, 16 Feb 2021 16:54:27 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1613494466110360" MIME-Version: 1.0 Date: Tue, 16 Feb 2021 16:54:26 +0000 From: "Frederic Cambus" Subject: CVS commit: pkgsrc/devel/wabt To: pkgsrc-changes@NetBSD.org Reply-To: fcambus@netbsd.org X-Mailer: log_accum Message-Id: <20210216165427.07297FA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1613494466110360 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: fcambus Date: Tue Feb 16 16:54:26 UTC 2021 Added Files: pkgsrc/devel/wabt: DESCR Makefile PLIST distinfo Log Message: devel/wabt: import wabt-1.0.20. WABT (we pronounce it "wabbit") is a suite of tools for WebAssembly. These tools are intended for use in (or for development of) toolchains or other systems that want to manipulate WebAssembly files. Unlike the WebAssembly spec interpreter (which is written to be as simple, declarative and "speccy" as possible), they are written in C/C++ and designed for easier integration into other systems. Unlike Binaryen these tools do not aim to provide an optimization platform or a higher-level compiler target; instead they aim for full fidelity and compliance with the spec (e.g. 1:1 round-trips with no changes to instructions). To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 pkgsrc/devel/wabt/DESCR pkgsrc/devel/wabt/Makefile \ pkgsrc/devel/wabt/PLIST pkgsrc/devel/wabt/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1613494466110360 Content-Disposition: inline Content-Length: 2975 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Added files: Index: pkgsrc/devel/wabt/DESCR diff -u /dev/null pkgsrc/devel/wabt/DESCR:1.1 --- /dev/null Tue Feb 16 16:54:26 2021 +++ pkgsrc/devel/wabt/DESCR Tue Feb 16 16:54:26 2021 @@ -0,0 +1,11 @@ +WABT (we pronounce it "wabbit") is a suite of tools for WebAssembly. + +These tools are intended for use in (or for development of) toolchains +or other systems that want to manipulate WebAssembly files. Unlike +the WebAssembly spec interpreter (which is written to be as simple, +declarative and "speccy" as possible), they are written in C/C++ +and designed for easier integration into other systems. Unlike +Binaryen these tools do not aim to provide an optimization platform +or a higher-level compiler target; instead they aim for full fidelity +and compliance with the spec (e.g. 1:1 round-trips with no changes +to instructions). Index: pkgsrc/devel/wabt/Makefile diff -u /dev/null pkgsrc/devel/wabt/Makefile:1.1 --- /dev/null Tue Feb 16 16:54:26 2021 +++ pkgsrc/devel/wabt/Makefile Tue Feb 16 16:54:26 2021 @@ -0,0 +1,23 @@ +# $NetBSD: Makefile,v 1.1 2021/02/16 16:54:26 fcambus Exp $ + +DISTNAME= wabt-1.0.20 +CATEGORIES= devel +MASTER_SITES= ${MASTER_SITE_GITHUB:=WebAssembly/} + +MAINTAINER= fcambus@NetBSD.org +HOMEPAGE= https://github.com/WebAssembly/wabt/ +COMMENT= The WebAssembly Binary Toolkit +LICENSE= apache-2.0 + +CONFIGURE_DIRS= ${WRKDIR}/build +CMAKE_ARG_PATH= ${WRKSRC} + +USE_CMAKE= yes +USE_LANGUAGES= c c++ + +CMAKE_ARGS+= -DBUILD_TESTS=OFF -DBUILD_LIBWASM=OFF + +post-extract: + ${MKDIR} ${WRKDIR}/build + +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/wabt/PLIST diff -u /dev/null pkgsrc/devel/wabt/PLIST:1.1 --- /dev/null Tue Feb 16 16:54:26 2021 +++ pkgsrc/devel/wabt/PLIST Tue Feb 16 16:54:26 2021 @@ -0,0 +1,28 @@ +@comment $NetBSD: PLIST,v 1.1 2021/02/16 16:54:26 fcambus Exp $ +bin/spectest-interp +bin/wasm-decompile +bin/wasm-interp +bin/wasm-objdump +bin/wasm-opcodecnt +bin/wasm-strip +bin/wasm-validate +bin/wasm2c +bin/wasm2wat +bin/wast2json +bin/wat-desugar +bin/wat2wasm +include/wasm-rt-impl.h +include/wasm-rt.h +lib/libwasm-rt-impl.a +man/man1/spectest-interp.1 +man/man1/wasm-decompile.1 +man/man1/wasm-interp.1 +man/man1/wasm-objdump.1 +man/man1/wasm-opcodecnt.1 +man/man1/wasm-strip.1 +man/man1/wasm-validate.1 +man/man1/wasm2c.1 +man/man1/wasm2wat.1 +man/man1/wast2json.1 +man/man1/wat-desugar.1 +man/man1/wat2wasm.1 Index: pkgsrc/devel/wabt/distinfo diff -u /dev/null pkgsrc/devel/wabt/distinfo:1.1 --- /dev/null Tue Feb 16 16:54:26 2021 +++ pkgsrc/devel/wabt/distinfo Tue Feb 16 16:54:26 2021 @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1 2021/02/16 16:54:26 fcambus Exp $ + +SHA1 (wabt-1.0.20.tar.gz) = c7dacafbb1f97a77a101ae875aac7632690966f0 +RMD160 (wabt-1.0.20.tar.gz) = f858ccb5c2aa299f959276bce66665a6b3cd2d77 +SHA512 (wabt-1.0.20.tar.gz) = 35290a64dbfe88d7cbe3600df6bb7d9cfef295f5d7caa1c1faa277f9f8adfa0f89454354a6445c75588282cf43fb9a5e76be45e5264897fbad6228b20d8f15f1 +Size (wabt-1.0.20.tar.gz) = 1083787 bytes --_----------=_1613494466110360--