@grain/binaryen.ml 0.9.0 → 0.11.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- binaryen-archive/.gitignore +1 -0
- binaryen-archive/CHANGELOG.md +73 -0
- binaryen-archive/README.md +27 -3
- binaryen-archive/binaryen.opam +8 -8
- binaryen-archive/esy.lock/index.json +537 -460
- binaryen-archive/esy.lock/opam/{base.v0.14.1 → base.v0.14.2}/opam +4 -4
- binaryen-archive/esy.lock/opam/biniou.1.2.1/opam +1 -1
- binaryen-archive/esy.lock/opam/{cppo.1.6.7 → cppo.1.6.8}/opam +4 -6
- binaryen-archive/esy.lock/opam/{csexp.1.4.0 → csexp.1.5.1}/opam +11 -9
- binaryen-archive/esy.lock/opam/{dune-build-info.2.8.2 → dune-build-info.2.9.1}/opam +5 -5
- binaryen-archive/esy.lock/opam/{dune-configurator.2.8.2 → dune-configurator.2.9.1}/opam +5 -5
- binaryen-archive/esy.lock/opam/{dune.2.8.2 → dune.2.9.1}/opam +4 -4
- binaryen-archive/esy.lock/opam/easy-format.1.3.2/opam +1 -1
- binaryen-archive/esy.lock/opam/{fix.20201120 → fix.20211231}/opam +7 -5
- binaryen-archive/esy.lock/opam/js_of_ocaml-compiler.3.11.0/opam +54 -0
- binaryen-archive/esy.lock/opam/js_of_ocaml-ppx.3.11.0/opam +44 -0
- binaryen-archive/esy.lock/opam/js_of_ocaml.3.11.0/opam +45 -0
- binaryen-archive/esy.lock/opam/{menhir.20201216 → menhir.20211128}/opam +8 -6
- binaryen-archive/esy.lock/opam/{menhirLib.20201216 → menhirLib.20211128}/opam +8 -6
- binaryen-archive/esy.lock/opam/{menhirSdk.20201216 → menhirSdk.20211128}/opam +8 -6
- binaryen-archive/esy.lock/opam/ocaml-compiler-libs.v0.12.4/opam +39 -0
- binaryen-archive/esy.lock/opam/{ocaml-lsp-server.1.4.0 → ocaml-lsp-server.1.9.0}/opam +15 -12
- binaryen-archive/esy.lock/opam/{ocaml-migrate-parsetree.2.1.0 → ocaml-migrate-parsetree.2.3.0}/opam +13 -10
- binaryen-archive/esy.lock/opam/ocaml-version.3.4.0/opam +49 -0
- binaryen-archive/esy.lock/opam/ocamlbuild.0.14.0/opam +1 -1
- binaryen-archive/esy.lock/opam/{ocamlfind.1.8.1 → ocamlfind.1.9.1}/opam +19 -39
- binaryen-archive/esy.lock/opam/ocamlformat-rpc-lib.0.19.0/opam +40 -0
- binaryen-archive/esy.lock/opam/ocamlformat.0.18.0/opam +56 -0
- binaryen-archive/esy.lock/opam/{odoc.1.5.2 → odoc.1.5.3}/opam +12 -12
- binaryen-archive/esy.lock/opam/pp.1.1.2/opam +58 -0
- binaryen-archive/esy.lock/opam/ppx_derivers.1.2.1/opam +1 -1
- binaryen-archive/esy.lock/opam/ppx_yojson_conv_lib.v0.14.0/opam +2 -2
- binaryen-archive/esy.lock/opam/{ppxlib.0.21.0 → ppxlib.0.22.2}/opam +40 -32
- binaryen-archive/esy.lock/opam/{re.1.9.0 → re.1.10.3}/opam +8 -4
- binaryen-archive/esy.lock/opam/result.1.5/opam +2 -2
- binaryen-archive/esy.lock/opam/sexplib0.v0.14.0/opam +2 -2
- binaryen-archive/esy.lock/opam/spawn.v0.15.0/opam +56 -0
- binaryen-archive/esy.lock/opam/stdio.v0.14.0/opam +2 -2
- binaryen-archive/esy.lock/opam/{topkg.1.0.3 → topkg.1.0.4}/opam +18 -22
- binaryen-archive/esy.lock/opam/tyxml.4.5.0/opam +42 -0
- binaryen-archive/esy.lock/opam/uucp.14.0.0/opam +41 -0
- binaryen-archive/esy.lock/opam/{uuseg.13.0.0 → uuseg.14.0.0}/opam +22 -28
- binaryen-archive/esy.lock/opam/yojson.1.7.0/opam +1 -1
- binaryen-archive/esy.lock/overrides/{opam__s__ocamlfind_opam__c__1.8.1_opam_override/files/findlib-1.8.1.patch → opam__s__ocamlfind_opam__c__1.9.1_opam_override/files/findlib-1.9.1.patch} +0 -0
- binaryen-archive/esy.lock/overrides/{opam__s__ocamlfind_opam__c__1.8.1_opam_override → opam__s__ocamlfind_opam__c__1.9.1_opam_override}/package.json +1 -1
- binaryen-archive/js/binaryen.es5.js +5 -0
- binaryen-archive/js/dune +1 -6
- binaryen-archive/js/element_segment.ml +33 -0
- binaryen-archive/js/export.ml +37 -0
- binaryen-archive/js/expression.ml +935 -177
- binaryen-archive/js/function.ml +31 -0
- binaryen-archive/js/global.ml +29 -0
- binaryen-archive/js/import.ml +24 -0
- binaryen-archive/js/literal.ml +8 -4
- binaryen-archive/js/module.ml +42 -46
- binaryen-archive/js/op.ml +9 -78
- binaryen-archive/js/settings.ml +60 -0
- binaryen-archive/js/table.ml +20 -3
- binaryen-archive/js/type.ml +3 -0
- binaryen-archive/package.json +14 -20
- binaryen-archive/src/binaryen_stubs_exports.c +78 -0
- binaryen-archive/src/binaryen_stubs_expressions.c +1300 -0
- binaryen-archive/src/binaryen_stubs_features.c +7 -0
- binaryen-archive/src/binaryen_stubs_functions.c +78 -0
- binaryen-archive/src/binaryen_stubs_globals.c +63 -0
- binaryen-archive/src/binaryen_stubs_imports.c +29 -0
- binaryen-archive/src/binaryen_stubs_memory.c +1 -1
- binaryen-archive/src/binaryen_stubs_modules.c +0 -122
- binaryen-archive/src/binaryen_stubs_ops.c +19 -173
- binaryen-archive/src/binaryen_stubs_settings.c +145 -0
- binaryen-archive/src/binaryen_stubs_tables.c +121 -7
- binaryen-archive/src/binaryen_stubs_types.c +18 -0
- binaryen-archive/src/dune +5 -44
- binaryen-archive/src/element_segment.ml +13 -0
- binaryen-archive/src/export.ml +33 -0
- binaryen-archive/src/expression.ml +805 -76
- binaryen-archive/src/function.ml +18 -0
- binaryen-archive/src/global.ml +14 -0
- binaryen-archive/src/import.ml +12 -0
- binaryen-archive/src/literal.ml +2 -2
- binaryen-archive/src/module.ml +64 -38
- binaryen-archive/src/ocaml_helpers.c +0 -8
- binaryen-archive/src/ocaml_helpers.h +2 -3
- binaryen-archive/src/op.ml +18 -131
- binaryen-archive/src/settings.ml +45 -0
- binaryen-archive/src/table.ml +26 -4
- binaryen-archive/src/type.ml +2 -0
- binaryen-archive/test/config/dune +8 -0
- binaryen-archive/test/config/ocamlopt_flags.ml +16 -0
- binaryen-archive/test/dune +4 -0
- binaryen-archive/test/test.expected +38 -3
- binaryen-archive/test/test.ml +90 -18
- binaryen-archive/virtual/dune +2 -2
- binaryen-archive/virtual/element_segment.mli +11 -0
- binaryen-archive/virtual/export.mli +22 -0
- binaryen-archive/virtual/expression.mli +389 -34
- binaryen-archive/virtual/function.mli +16 -0
- binaryen-archive/virtual/global.mli +12 -0
- binaryen-archive/virtual/import.mli +8 -0
- binaryen-archive/virtual/literal.mli +2 -2
- binaryen-archive/virtual/module.mli +25 -27
- binaryen-archive/virtual/op.mli +9 -53
- binaryen-archive/virtual/settings.mli +35 -0
- binaryen-archive/virtual/table.mli +19 -2
- binaryen-archive/virtual/type.mli +2 -0
- binaryen-archive/esy.lock/opam/conf-m4.1/opam +0 -22
- binaryen-archive/esy.lock/opam/dot-merlin-reader.4.1/opam +0 -30
- binaryen-archive/esy.lock/opam/js_of_ocaml-compiler.3.9.1/opam +0 -40
- binaryen-archive/esy.lock/opam/js_of_ocaml-ppx.3.9.0/opam +0 -30
- binaryen-archive/esy.lock/opam/js_of_ocaml.3.9.0/opam +0 -31
- binaryen-archive/esy.lock/opam/ocaml-compiler-libs.v0.12.3/opam +0 -29
- binaryen-archive/esy.lock/opam/ocamlfind.1.8.1/files/ocaml-stub +0 -4
- binaryen-archive/esy.lock/opam/ocamlfind.1.8.1/files/ocamlfind.install +0 -6
- binaryen-archive/esy.lock/opam/ocamlformat.0.15.1/opam +0 -41
- binaryen-archive/esy.lock/opam/tyxml.4.4.0/opam +0 -47
- binaryen-archive/esy.lock/opam/uucp.13.0.0/opam +0 -44
- binaryen-archive/esy.lock/overrides/opam__s__conf_m4_opam__c__1_opam_override/package.json +0 -6
- binaryen-archive/js/features.ml +0 -27
- binaryen-archive/js/function_table.ml +0 -13
- binaryen-archive/src/binaryen_stubs_function_tables.c +0 -25
- binaryen-archive/src/config/dune +0 -8
- binaryen-archive/src/config/library_flags.ml +0 -16
- binaryen-archive/src/features.ml +0 -49
- binaryen-archive/src/function_table.ml +0 -6
- binaryen-archive/vendor/binaryen-c.h +0 -2647
- binaryen-archive/vendor/js/index.es5.js +0 -5
- binaryen-archive/vendor/linux/libbinaryen.a +0 -0
- binaryen-archive/vendor/linux/libbinaryen.so +0 -0
- binaryen-archive/vendor/macosx/libbinaryen.a +0 -0
- binaryen-archive/vendor/macosx/libbinaryen.dylib +0 -0
- binaryen-archive/vendor/mingw64/libbinaryen.a +0 -0
- binaryen-archive/vendor/mingw64/libbinaryen.dll +0 -0
- binaryen-archive/vendor/wasm-delegations.h +0 -85
- binaryen-archive/virtual/features.mli +0 -23
- binaryen-archive/virtual/function_table.mli +0 -4
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
opam-version: "2.0"
|
|
2
|
+
synopsis: "A library for building correct HTML and SVG documents"
|
|
3
|
+
description:
|
|
4
|
+
"TyXML provides a set of convenient combinators that uses the OCaml type system to ensure the validity of the generated documents. TyXML can be used with any representation of HTML and SVG: the textual one, provided directly by this package, or DOM trees (`js_of_ocaml-tyxml`) virtual DOM (`virtual-dom`) and reactive or replicated trees (`eliom`). You can also create your own representation and use it to instantiate a new set of combinators."
|
|
5
|
+
maintainer: ["dev@ocsigen.org"]
|
|
6
|
+
authors: ["The ocsigen team"]
|
|
7
|
+
license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception"
|
|
8
|
+
homepage: "https://github.com/ocsigen/tyxml"
|
|
9
|
+
doc: "https://ocsigen.org/tyxml/latest/manual/intro"
|
|
10
|
+
bug-reports: "https://github.com/ocsigen/tyxml/issues"
|
|
11
|
+
depends: [
|
|
12
|
+
"dune" {>= "2.0"}
|
|
13
|
+
"ocaml" {>= "4.02"}
|
|
14
|
+
"alcotest" {with-test}
|
|
15
|
+
"re" {>= "1.5.0"}
|
|
16
|
+
"seq"
|
|
17
|
+
"uutf" {>= "1.0.0"}
|
|
18
|
+
]
|
|
19
|
+
build: [
|
|
20
|
+
["dune" "subst"] {dev}
|
|
21
|
+
[
|
|
22
|
+
"dune"
|
|
23
|
+
"build"
|
|
24
|
+
"-p"
|
|
25
|
+
name
|
|
26
|
+
"-j"
|
|
27
|
+
jobs
|
|
28
|
+
"@install"
|
|
29
|
+
"@runtest" {with-test}
|
|
30
|
+
"@doc" {with-doc}
|
|
31
|
+
]
|
|
32
|
+
]
|
|
33
|
+
dev-repo: "git+https://github.com/ocsigen/tyxml.git"
|
|
34
|
+
x-commit-hash: "ef431a4bceaefb2d9248e79092e6c1a1a9420095"
|
|
35
|
+
url {
|
|
36
|
+
src:
|
|
37
|
+
"https://github.com/ocsigen/tyxml/releases/download/4.5.0/tyxml-4.5.0.tbz"
|
|
38
|
+
checksum: [
|
|
39
|
+
"sha256=c69accef5df4dd89d38f6aa0baad01e8fda4e9e98bb7dad61bec1452c5716068"
|
|
40
|
+
"sha512=772535441b09c393d53c27152e65f404a0a541aa0cea1bda899a8d751ab64d1729237e583618c3ff33d75e3865d53503d1ea413c6bbc8c68c413347efd1709b3"
|
|
41
|
+
]
|
|
42
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
opam-version: "2.0"
|
|
2
|
+
synopsis: """Unicode character properties for OCaml"""
|
|
3
|
+
maintainer: ["Daniel Bünzli <daniel.buenzl i@erratique.ch>"]
|
|
4
|
+
authors: ["The uucp programmers"]
|
|
5
|
+
homepage: "https://erratique.ch/software/uucp"
|
|
6
|
+
doc: "https://erratique.ch/software/uucp/doc/"
|
|
7
|
+
dev-repo: "git+https://erratique.ch/repos/uucp.git"
|
|
8
|
+
bug-reports: "https://github.com/dbuenzli/uucp/issues"
|
|
9
|
+
license: ["ISC"]
|
|
10
|
+
tags: ["unicode" "text" "character" "org:erratique"]
|
|
11
|
+
depends: ["ocaml" {>= "4.03.0"}
|
|
12
|
+
"ocamlfind" {build}
|
|
13
|
+
"ocamlbuild" {build}
|
|
14
|
+
"topkg" {build & >= "1.0.3"}
|
|
15
|
+
"uucd" {with-test}
|
|
16
|
+
"uunf" {with-test}
|
|
17
|
+
"uutf" {with-test}]
|
|
18
|
+
depopts: ["uutf"
|
|
19
|
+
"uunf"
|
|
20
|
+
"cmdliner"]
|
|
21
|
+
conflicts: ["uutf" {< "1.0.1"}
|
|
22
|
+
"cmdliner" {< "1.0.0"}]
|
|
23
|
+
build: [["ocaml" "pkg/pkg.ml" "build" "--dev-pkg" "%{dev}%"
|
|
24
|
+
"--with-uutf" "%{uutf:installed}%"
|
|
25
|
+
"--with-uunf" "%{uunf:installed}%"
|
|
26
|
+
"--with-cmdliner" "%{cmdliner:installed}%" ]]
|
|
27
|
+
description: """
|
|
28
|
+
Uucp is an OCaml library providing efficient access to a selection of
|
|
29
|
+
character properties of the [Unicode character database][1].
|
|
30
|
+
|
|
31
|
+
Uucp is independent from any Unicode text data structure and has no
|
|
32
|
+
dependencies. It is distributed under the ISC license.
|
|
33
|
+
|
|
34
|
+
[1]: http://www.unicode.org/reports/tr44/
|
|
35
|
+
|
|
36
|
+
Home page: http://erratique.ch/software/uucp"""
|
|
37
|
+
url {
|
|
38
|
+
src: "https://erratique.ch/software/uucp/releases/uucp-14.0.0.tbz"
|
|
39
|
+
checksum: "sha512=2d0224aed5d5accbb121624898f08598e8c74a2415942f159a54221c0cdac62ed64fc70a039c833e50110cefce77754ada9ac2d58f79a6fc9331135326fe6899"}
|
|
40
|
+
post-messages: ["If the build fails with \"ocamlopt.opt got signal and exited\", issue 'ulimit -s unlimited' and retry."
|
|
41
|
+
{failure & (arch = "ppc64" | arch = "arm64")}]
|
|
@@ -1,31 +1,28 @@
|
|
|
1
1
|
opam-version: "2.0"
|
|
2
|
-
|
|
2
|
+
synopsis: """Unicode text segmentation for OCaml"""
|
|
3
|
+
maintainer: ["Daniel Bünzli <daniel.buenzl i@erratique.ch>"]
|
|
3
4
|
authors: ["The uuseg programmers"]
|
|
4
5
|
homepage: "https://erratique.ch/software/uuseg"
|
|
5
|
-
doc: "https://erratique.ch/software/uuseg"
|
|
6
|
+
doc: "https://erratique.ch/software/uuseg/doc/"
|
|
6
7
|
dev-repo: "git+https://erratique.ch/repos/uuseg.git"
|
|
7
8
|
bug-reports: "https://github.com/dbuenzli/uuseg/issues"
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
depends: [
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
depopts: [
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
"
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
synopsis: """Unicode text segmentation for OCaml"""
|
|
27
|
-
description: """\
|
|
28
|
-
|
|
9
|
+
license: ["ISC"]
|
|
10
|
+
tags: ["unicode" "text" "segmentation" "org:erratique"]
|
|
11
|
+
depends: ["ocaml" {>= "4.03.0"}
|
|
12
|
+
"ocamlfind" {build}
|
|
13
|
+
"ocamlbuild" {build}
|
|
14
|
+
"topkg" {build & >= "1.0.3"}
|
|
15
|
+
"uucp" {>= "14.0.0" & < "15.0.0"}]
|
|
16
|
+
depopts: ["uutf"
|
|
17
|
+
"cmdliner"]
|
|
18
|
+
conflicts: ["uutf" {< "1.0.0"}]
|
|
19
|
+
build: [["ocaml" "pkg/pkg.ml" "build" "--dev-pkg" "%{dev}%"
|
|
20
|
+
"--with-uutf" "%{uutf:installed}%"
|
|
21
|
+
"--with-cmdliner" "%{cmdliner:installed}%" ]]
|
|
22
|
+
url {
|
|
23
|
+
src: "https://erratique.ch/software/uuseg/releases/uuseg-14.0.0.tbz"
|
|
24
|
+
checksum: "sha512=3f089baf95f010663a0c2f060b2911395d9b396f478efb10fd979815f527c9e61e0a70b3192f2e921f59287bfde0da6e25109d4a1825554e2e4a50c0535e97aa"}
|
|
25
|
+
description: """
|
|
29
26
|
Uuseg is an OCaml library for segmenting Unicode text. It implements
|
|
30
27
|
the locale independent [Unicode text segmentation algorithms][1] to
|
|
31
28
|
detect grapheme cluster, word and sentence boundaries and the
|
|
@@ -42,8 +39,5 @@ OCaml UTF-X encoded strings. It is distributed under the ISC license.
|
|
|
42
39
|
|
|
43
40
|
[1]: http://www.unicode.org/reports/tr29/
|
|
44
41
|
[2]: http://www.unicode.org/reports/tr14/
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
archive: "https://erratique.ch/software/uuseg/releases/uuseg-13.0.0.tbz"
|
|
48
|
-
checksum: "a07a97fff61da604614ea8da0547ef6a"
|
|
49
|
-
}
|
|
42
|
+
|
|
43
|
+
Homepage: http://erratique.ch/software/uuseg"""
|
|
@@ -6,7 +6,7 @@ bug-reports: "https://github.com/ocaml-community/yojson/issues"
|
|
|
6
6
|
dev-repo: "git+https://github.com/ocaml-community/yojson.git"
|
|
7
7
|
doc: "https://ocaml-community.github.io/yojson/"
|
|
8
8
|
build: [
|
|
9
|
-
["dune" "subst"] {
|
|
9
|
+
["dune" "subst"] {dev}
|
|
10
10
|
["dune" "build" "-p" name "-j" jobs]
|
|
11
11
|
]
|
|
12
12
|
run-test: [["dune" "runtest" "-p" name "-j" jobs]]
|
|
File without changes
|