@grain/binaryen.ml 0.18.0 → 0.19.0
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/CHANGELOG.md +16 -0
- binaryen-archive/binaryen.opam +2 -2
- binaryen-archive/esy.lock/index.json +344 -289
- binaryen-archive/esy.lock/opam/camlp-streams.5.0.1/opam +59 -0
- binaryen-archive/esy.lock/opam/chrome-trace.3.5.0/opam +39 -0
- binaryen-archive/esy.lock/opam/{dune-build-info.3.3.1 → dune-build-info.3.5.0}/opam +4 -4
- binaryen-archive/esy.lock/opam/{dune-configurator.3.3.1 → dune-configurator.3.5.0}/opam +4 -4
- binaryen-archive/esy.lock/opam/{dune-rpc.3.3.1 → dune-rpc.3.5.0}/opam +4 -4
- binaryen-archive/esy.lock/opam/{dune.3.3.1 → dune.3.5.0}/opam +4 -4
- binaryen-archive/esy.lock/opam/{dyn.3.3.1 → dyn.3.5.0}/opam +4 -4
- binaryen-archive/esy.lock/opam/{fiber.3.3.1 → fiber.3.5.0}/opam +4 -4
- binaryen-archive/esy.lock/opam/{ocaml-lsp-server.1.12.2 → ocaml-lsp-server.1.14.1}/opam +8 -7
- binaryen-archive/esy.lock/opam/{ocaml-version.3.4.0 → ocaml-version.3.5.0}/opam +4 -4
- binaryen-archive/esy.lock/opam/{ocamlbuild.0.14.1 → ocamlbuild.0.14.2}/opam +3 -3
- binaryen-archive/esy.lock/opam/ocamlfind.1.9.5/files/0001-Fix-bug-when-installing-with-a-system-compiler.patch +26 -0
- binaryen-archive/esy.lock/opam/ocamlfind.1.9.5/opam +2 -0
- binaryen-archive/esy.lock/opam/{ocamlformat-rpc-lib.0.22.4 → ocamlformat-rpc-lib.0.24.1}/opam +4 -4
- binaryen-archive/esy.lock/opam/ocamlformat.0.20.1/opam +1 -1
- binaryen-archive/esy.lock/opam/{odoc-parser.1.0.0 → odoc-parser.1.0.1}/opam +6 -5
- binaryen-archive/esy.lock/opam/omd.1.3.2/opam +50 -0
- binaryen-archive/esy.lock/opam/{ordering.3.3.1 → ordering.3.5.0}/opam +4 -4
- binaryen-archive/esy.lock/opam/{ppxlib.0.27.0 → ppxlib.0.28.0}/opam +5 -5
- binaryen-archive/esy.lock/opam/{stdune.3.3.1 → stdune.3.5.0}/opam +4 -4
- binaryen-archive/esy.lock/opam/uucp.15.0.0/opam +55 -0
- binaryen-archive/esy.lock/opam/{uuseg.14.0.0 → uuseg.15.0.0}/opam +39 -25
- binaryen-archive/esy.lock/opam/{xdg.3.3.1 → xdg.3.5.0}/opam +4 -4
- binaryen-archive/esy.lock/opam/{yojson.2.0.0 → yojson.2.0.2}/opam +5 -5
- binaryen-archive/esy.lock/overrides/{opam__s__ocamlbuild_opam__c__0.14.1_opam_override → opam__s__ocamlbuild_opam__c__0.14.2_opam_override}/files/winpatch.patch +0 -0
- binaryen-archive/esy.lock/overrides/{opam__s__ocamlbuild_opam__c__0.14.1_opam_override → opam__s__ocamlbuild_opam__c__0.14.2_opam_override}/package.json +0 -0
- binaryen-archive/package.json +2 -2
- binaryen-archive/src/binaryen_stubs_imports.c +14 -0
- binaryen-archive/src/binaryen_stubs_imports.js +14 -0
- binaryen-archive/src/binaryen_stubs_memory.c +40 -0
- binaryen-archive/src/binaryen_stubs_memory.js +41 -0
- binaryen-archive/src/binaryen_stubs_modules.c +20 -0
- binaryen-archive/src/binaryen_stubs_modules.js +17 -0
- binaryen-archive/src/import.ml +4 -0
- binaryen-archive/src/import.mli +2 -0
- binaryen-archive/src/memory.ml +10 -0
- binaryen-archive/src/memory.mli +10 -0
- binaryen-archive/src/module.ml +2 -0
- binaryen-archive/src/module.mli +2 -0
- binaryen-archive/src/passes.ml +6 -0
- binaryen-archive/src/passes.mli +6 -0
- binaryen-archive/test/test.expected +36 -0
- binaryen-archive/test/test.ml +27 -1
- binaryen-archive/esy.lock/opam/omd.1.3.1/opam +0 -39
- binaryen-archive/esy.lock/opam/uucp.14.0.0/opam +0 -41
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
opam-version: "2.0"
|
|
2
|
+
synopsis: "The Stream and Genlex libraries for use with Camlp4 and Camlp5"
|
|
3
|
+
description: """
|
|
4
|
+
|
|
5
|
+
This package provides two library modules:
|
|
6
|
+
- Stream: imperative streams, with in-place update and memoization
|
|
7
|
+
of the latest element produced.
|
|
8
|
+
- Genlex: a small parameterized lexical analyzer producing streams
|
|
9
|
+
of tokens from streams of characters.
|
|
10
|
+
|
|
11
|
+
The two modules are designed for use with Camlp4 and Camlp5:
|
|
12
|
+
- The stream patterns and stream expressions of Camlp4/Camlp5 consume
|
|
13
|
+
and produce data of type 'a Stream.t.
|
|
14
|
+
- The Genlex tokenizer can be used as a simple lexical analyzer for
|
|
15
|
+
Camlp4/Camlp5-generated parsers.
|
|
16
|
+
|
|
17
|
+
The Stream module can also be used by hand-written recursive-descent
|
|
18
|
+
parsers, but is not very convenient for this purpose.
|
|
19
|
+
|
|
20
|
+
The Stream and Genlex modules have been part of the OCaml standard library
|
|
21
|
+
for a long time, and have been distributed as part of the core OCaml system.
|
|
22
|
+
They will be removed from the OCaml standard library at some future point,
|
|
23
|
+
but will be maintained and distributed separately in this camlpstreams package.
|
|
24
|
+
"""
|
|
25
|
+
maintainer: [
|
|
26
|
+
"Florian Angeletti <florian.angeletti@inria.fr>"
|
|
27
|
+
"Xavier Leroy <xavier.leroy@college-de-france.fr>"
|
|
28
|
+
]
|
|
29
|
+
authors: ["Daniel de Rauglaudre" "Xavier Leroy"]
|
|
30
|
+
license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception"
|
|
31
|
+
homepage: "https://github.com/ocaml/camlp-streams"
|
|
32
|
+
bug-reports: "https://github.com/ocaml/camlp-streams/issues"
|
|
33
|
+
depends: [
|
|
34
|
+
"dune" {>= "2.7"}
|
|
35
|
+
"ocaml" {>= "4.02.3"}
|
|
36
|
+
"odoc" {with-doc}
|
|
37
|
+
]
|
|
38
|
+
build: [
|
|
39
|
+
["dune" "subst"] {dev}
|
|
40
|
+
[
|
|
41
|
+
"dune"
|
|
42
|
+
"build"
|
|
43
|
+
"-p"
|
|
44
|
+
name
|
|
45
|
+
"-j"
|
|
46
|
+
jobs
|
|
47
|
+
"@install"
|
|
48
|
+
"@runtest" {with-test}
|
|
49
|
+
"@doc" {with-doc}
|
|
50
|
+
]
|
|
51
|
+
]
|
|
52
|
+
dev-repo: "git+https://github.com/ocaml/camlp-streams.git"
|
|
53
|
+
url {
|
|
54
|
+
src: "https://github.com/ocaml/camlp-streams/archive/v5.0.1.tar.gz"
|
|
55
|
+
checksum: [
|
|
56
|
+
"md5=afc874b25f7a1f13e8f5cfc1182b51a7"
|
|
57
|
+
"sha512=2efa8dd4a636217c8d49bac1e4e7e5558fc2f45cfea66514140a59fd99dd08d61fb9f1e17804997ff648b71b13820a5d4a1eb70fed9d848aa2abd6e41f853c86"
|
|
58
|
+
]
|
|
59
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
opam-version: "2.0"
|
|
2
|
+
synopsis: "Chrome trace event generation library"
|
|
3
|
+
description:
|
|
4
|
+
"This library offers no backwards compatibility guarantees. Use at your own risk."
|
|
5
|
+
maintainer: ["Jane Street Group, LLC <opensource@janestreet.com>"]
|
|
6
|
+
authors: ["Jane Street Group, LLC <opensource@janestreet.com>"]
|
|
7
|
+
license: "MIT"
|
|
8
|
+
homepage: "https://github.com/ocaml/dune"
|
|
9
|
+
doc: "https://dune.readthedocs.io/"
|
|
10
|
+
bug-reports: "https://github.com/ocaml/dune/issues"
|
|
11
|
+
depends: [
|
|
12
|
+
"dune" {>= "3.3"}
|
|
13
|
+
"ocaml" {>= "4.08.0"}
|
|
14
|
+
"odoc" {with-doc}
|
|
15
|
+
]
|
|
16
|
+
dev-repo: "git+https://github.com/ocaml/dune.git"
|
|
17
|
+
build: [
|
|
18
|
+
["dune" "subst"] {dev}
|
|
19
|
+
["rm" "-rf" "vendor/csexp"]
|
|
20
|
+
["rm" "-rf" "vendor/pp"]
|
|
21
|
+
[
|
|
22
|
+
"dune"
|
|
23
|
+
"build"
|
|
24
|
+
"-p"
|
|
25
|
+
name
|
|
26
|
+
"-j"
|
|
27
|
+
jobs
|
|
28
|
+
"@install"
|
|
29
|
+
"@doc" {with-doc}
|
|
30
|
+
]
|
|
31
|
+
]
|
|
32
|
+
url {
|
|
33
|
+
src: "https://github.com/ocaml/dune/releases/download/3.5.0/dune-3.5.0.tbz"
|
|
34
|
+
checksum: [
|
|
35
|
+
"sha256=77bd4c6704359fae1969636cfc3cd7a517ba3604819ef89c919c0762b5093610"
|
|
36
|
+
"sha512=acaed76ab8618977118579641a1f6734ed4a225ab46494c6c5fd8e1bf9a0889e62db9adc7bd11770da602f4dd4785cef5ece4ad26512d08b64b8f3bd8954c80d"
|
|
37
|
+
]
|
|
38
|
+
}
|
|
39
|
+
x-commit-hash: "77c1e6f8f27f57fe0c04ec1624a85069b02437cf"
|
|
@@ -36,10 +36,10 @@ build: [
|
|
|
36
36
|
]
|
|
37
37
|
]
|
|
38
38
|
url {
|
|
39
|
-
src: "https://github.com/ocaml/dune/releases/download/3.
|
|
39
|
+
src: "https://github.com/ocaml/dune/releases/download/3.5.0/dune-3.5.0.tbz"
|
|
40
40
|
checksum: [
|
|
41
|
-
"sha256=
|
|
42
|
-
"sha512=
|
|
41
|
+
"sha256=77bd4c6704359fae1969636cfc3cd7a517ba3604819ef89c919c0762b5093610"
|
|
42
|
+
"sha512=acaed76ab8618977118579641a1f6734ed4a225ab46494c6c5fd8e1bf9a0889e62db9adc7bd11770da602f4dd4785cef5ece4ad26512d08b64b8f3bd8954c80d"
|
|
43
43
|
]
|
|
44
44
|
}
|
|
45
|
-
x-commit-hash: "
|
|
45
|
+
x-commit-hash: "77c1e6f8f27f57fe0c04ec1624a85069b02437cf"
|
|
@@ -40,10 +40,10 @@ build: [
|
|
|
40
40
|
]
|
|
41
41
|
]
|
|
42
42
|
url {
|
|
43
|
-
src: "https://github.com/ocaml/dune/releases/download/3.
|
|
43
|
+
src: "https://github.com/ocaml/dune/releases/download/3.5.0/dune-3.5.0.tbz"
|
|
44
44
|
checksum: [
|
|
45
|
-
"sha256=
|
|
46
|
-
"sha512=
|
|
45
|
+
"sha256=77bd4c6704359fae1969636cfc3cd7a517ba3604819ef89c919c0762b5093610"
|
|
46
|
+
"sha512=acaed76ab8618977118579641a1f6734ed4a225ab46494c6c5fd8e1bf9a0889e62db9adc7bd11770da602f4dd4785cef5ece4ad26512d08b64b8f3bd8954c80d"
|
|
47
47
|
]
|
|
48
48
|
}
|
|
49
|
-
x-commit-hash: "
|
|
49
|
+
x-commit-hash: "77c1e6f8f27f57fe0c04ec1624a85069b02437cf"
|
|
@@ -34,10 +34,10 @@ build: [
|
|
|
34
34
|
]
|
|
35
35
|
]
|
|
36
36
|
url {
|
|
37
|
-
src: "https://github.com/ocaml/dune/releases/download/3.
|
|
37
|
+
src: "https://github.com/ocaml/dune/releases/download/3.5.0/dune-3.5.0.tbz"
|
|
38
38
|
checksum: [
|
|
39
|
-
"sha256=
|
|
40
|
-
"sha512=
|
|
39
|
+
"sha256=77bd4c6704359fae1969636cfc3cd7a517ba3604819ef89c919c0762b5093610"
|
|
40
|
+
"sha512=acaed76ab8618977118579641a1f6734ed4a225ab46494c6c5fd8e1bf9a0889e62db9adc7bd11770da602f4dd4785cef5ece4ad26512d08b64b8f3bd8954c80d"
|
|
41
41
|
]
|
|
42
42
|
}
|
|
43
|
-
x-commit-hash: "
|
|
43
|
+
x-commit-hash: "77c1e6f8f27f57fe0c04ec1624a85069b02437cf"
|
|
@@ -47,10 +47,10 @@ depends: [
|
|
|
47
47
|
"base-threads"
|
|
48
48
|
]
|
|
49
49
|
url {
|
|
50
|
-
src: "https://github.com/ocaml/dune/releases/download/3.
|
|
50
|
+
src: "https://github.com/ocaml/dune/releases/download/3.5.0/dune-3.5.0.tbz"
|
|
51
51
|
checksum: [
|
|
52
|
-
"sha256=
|
|
53
|
-
"sha512=
|
|
52
|
+
"sha256=77bd4c6704359fae1969636cfc3cd7a517ba3604819ef89c919c0762b5093610"
|
|
53
|
+
"sha512=acaed76ab8618977118579641a1f6734ed4a225ab46494c6c5fd8e1bf9a0889e62db9adc7bd11770da602f4dd4785cef5ece4ad26512d08b64b8f3bd8954c80d"
|
|
54
54
|
]
|
|
55
55
|
}
|
|
56
|
-
x-commit-hash: "
|
|
56
|
+
x-commit-hash: "77c1e6f8f27f57fe0c04ec1624a85069b02437cf"
|
|
@@ -31,10 +31,10 @@ build: [
|
|
|
31
31
|
]
|
|
32
32
|
]
|
|
33
33
|
url {
|
|
34
|
-
src: "https://github.com/ocaml/dune/releases/download/3.
|
|
34
|
+
src: "https://github.com/ocaml/dune/releases/download/3.5.0/dune-3.5.0.tbz"
|
|
35
35
|
checksum: [
|
|
36
|
-
"sha256=
|
|
37
|
-
"sha512=
|
|
36
|
+
"sha256=77bd4c6704359fae1969636cfc3cd7a517ba3604819ef89c919c0762b5093610"
|
|
37
|
+
"sha512=acaed76ab8618977118579641a1f6734ed4a225ab46494c6c5fd8e1bf9a0889e62db9adc7bd11770da602f4dd4785cef5ece4ad26512d08b64b8f3bd8954c80d"
|
|
38
38
|
]
|
|
39
39
|
}
|
|
40
|
-
x-commit-hash: "
|
|
40
|
+
x-commit-hash: "77c1e6f8f27f57fe0c04ec1624a85069b02437cf"
|
|
@@ -32,10 +32,10 @@ build: [
|
|
|
32
32
|
]
|
|
33
33
|
]
|
|
34
34
|
url {
|
|
35
|
-
src: "https://github.com/ocaml/dune/releases/download/3.
|
|
35
|
+
src: "https://github.com/ocaml/dune/releases/download/3.5.0/dune-3.5.0.tbz"
|
|
36
36
|
checksum: [
|
|
37
|
-
"sha256=
|
|
38
|
-
"sha512=
|
|
37
|
+
"sha256=77bd4c6704359fae1969636cfc3cd7a517ba3604819ef89c919c0762b5093610"
|
|
38
|
+
"sha512=acaed76ab8618977118579641a1f6734ed4a225ab46494c6c5fd8e1bf9a0889e62db9adc7bd11770da602f4dd4785cef5ece4ad26512d08b64b8f3bd8954c80d"
|
|
39
39
|
]
|
|
40
40
|
}
|
|
41
|
-
x-commit-hash: "
|
|
41
|
+
x-commit-hash: "77c1e6f8f27f57fe0c04ec1624a85069b02437cf"
|
|
@@ -18,11 +18,12 @@ license: "ISC"
|
|
|
18
18
|
homepage: "https://github.com/ocaml/ocaml-lsp"
|
|
19
19
|
bug-reports: "https://github.com/ocaml/ocaml-lsp/issues"
|
|
20
20
|
depends: [
|
|
21
|
-
"dune" {>= "
|
|
21
|
+
"dune" {>= "3.0"}
|
|
22
22
|
"yojson"
|
|
23
23
|
"re" {>= "1.5.0"}
|
|
24
24
|
"ppx_yojson_conv_lib" {>= "v0.14"}
|
|
25
|
-
"dune-rpc"
|
|
25
|
+
"dune-rpc" {>= "3.4.0"}
|
|
26
|
+
"chrome-trace" {>= "3.3.0"}
|
|
26
27
|
"dyn"
|
|
27
28
|
"stdune"
|
|
28
29
|
"fiber" {>= "3.1.1"}
|
|
@@ -30,7 +31,7 @@ depends: [
|
|
|
30
31
|
"ordering"
|
|
31
32
|
"dune-build-info"
|
|
32
33
|
"spawn"
|
|
33
|
-
"omd" {
|
|
34
|
+
"omd" {>= "1.3.2" & < "2.0.0~alpha1"}
|
|
34
35
|
"octavius" {>= "1.2.2"}
|
|
35
36
|
"uutf" {>= "1.0.2"}
|
|
36
37
|
"pp" {>= "1.1.2"}
|
|
@@ -53,10 +54,10 @@ build: [
|
|
|
53
54
|
]
|
|
54
55
|
url {
|
|
55
56
|
src:
|
|
56
|
-
"https://github.com/ocaml/ocaml-lsp/releases/download/1.
|
|
57
|
+
"https://github.com/ocaml/ocaml-lsp/releases/download/1.14.1/lsp-1.14.1.tbz"
|
|
57
58
|
checksum: [
|
|
58
|
-
"sha256=
|
|
59
|
-
"sha512=
|
|
59
|
+
"sha256=e64c4c33dd037791fcc9bedfd4d615dda6d169e3eaced150f365539dacab69d9"
|
|
60
|
+
"sha512=1eeede473ab2c3481f2e6c67676451d50e005cf44e418ca209848be5ee0c6f034b08e17f8312a751d13f0194f6519b02cb82f232553fe7ec80b53e5c5a56f947"
|
|
60
61
|
]
|
|
61
62
|
}
|
|
62
|
-
x-commit-hash: "
|
|
63
|
+
x-commit-hash: "5e6b3c90e368ca1650077f817f9862240a730cbc"
|
|
@@ -40,10 +40,10 @@ functionality:
|
|
|
40
40
|
"""
|
|
41
41
|
url {
|
|
42
42
|
src:
|
|
43
|
-
"https://github.com/ocurrent/ocaml-version/releases/download/v3.
|
|
43
|
+
"https://github.com/ocurrent/ocaml-version/releases/download/v3.5.0/ocaml-version-3.5.0.tbz"
|
|
44
44
|
checksum: [
|
|
45
|
-
"sha256=
|
|
46
|
-
"sha512=
|
|
45
|
+
"sha256=d63ca1c3970d6b14057f7176bfdae623e6c0176287c6a6e8b78cf50e2f7f635b"
|
|
46
|
+
"sha512=7b5f475897b1c560c81d322ca77b80099025102ec4163b410518e32dce0d6decf7c2ef671f795932bc173741b20bb442e07b182583423d2c990c632c921be5df"
|
|
47
47
|
]
|
|
48
48
|
}
|
|
49
|
-
x-commit-hash: "
|
|
49
|
+
x-commit-hash: "ee6c14c52e1995d69a134b23df2c1c721ea7a994"
|
|
@@ -31,9 +31,9 @@ build: [
|
|
|
31
31
|
]
|
|
32
32
|
dev-repo: "git+https://github.com/ocaml/ocamlbuild.git"
|
|
33
33
|
url {
|
|
34
|
-
src: "https://github.com/ocaml/ocamlbuild/archive/refs/tags/0.14.
|
|
34
|
+
src: "https://github.com/ocaml/ocamlbuild/archive/refs/tags/0.14.2.tar.gz"
|
|
35
35
|
checksum: [
|
|
36
|
-
"md5=
|
|
37
|
-
"sha512=
|
|
36
|
+
"md5=2f407fadd57b073155a6aead887d9676"
|
|
37
|
+
"sha512=f568bf10431a1f701e8bd7554dc662400a0d978411038bbad93d44dceab02874490a8a5886a9b44e017347e7949997f13f5c3752f74e1eb5e273d2beb19a75fd"
|
|
38
38
|
]
|
|
39
39
|
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
From f53247f546375972789b96c3f612cd7f524bf2aa Mon Sep 17 00:00:00 2001
|
|
2
|
+
From: Louis Gesbert <louis.gesbert@ocamlpro.com>
|
|
3
|
+
Date: Mon, 11 Jul 2022 18:12:18 +0200
|
|
4
|
+
Subject: [PATCH] Fix bug when installing with a system compiler
|
|
5
|
+
|
|
6
|
+
See https://discuss.ocaml.org/t/problem-installing-ocamlfind-on-latest-ocamlpro-alpine-docker-image/10147
|
|
7
|
+
---
|
|
8
|
+
src/findlib/Makefile | 2 +-
|
|
9
|
+
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
10
|
+
|
|
11
|
+
diff --git a/src/findlib/Makefile b/src/findlib/Makefile
|
|
12
|
+
index 84514b6f22..ea23f4a10c 100644
|
|
13
|
+
--- a/src/findlib/Makefile
|
|
14
|
+
+++ b/src/findlib/Makefile
|
|
15
|
+
@@ -123,7 +123,7 @@ clean:
|
|
16
|
+
install: all
|
|
17
|
+
$(INSTALLDIR) "$(DESTDIR)$(prefix)$(OCAML_SITELIB)/$(NAME)"
|
|
18
|
+
$(INSTALLDIR) "$(DESTDIR)$(prefix)$(OCAMLFIND_BIN)"
|
|
19
|
+
- $(INSTALLDIR) "$(DESTDIR)$(prefix)$(OCAML_CORE_STDLIB)"
|
|
20
|
+
+ test $(INSTALL_TOPFIND) -eq 0 || $(INSTALLDIR) "$(DESTDIR)$(prefix)$(OCAML_CORE_STDLIB)"
|
|
21
|
+
test $(INSTALL_TOPFIND) -eq 0 || $(INSTALLFILE) topfind "$(DESTDIR)$(prefix)$(OCAML_CORE_STDLIB)/"
|
|
22
|
+
files=`$(SH) $(TOP)/tools/collect_files $(TOP)/Makefile.config \
|
|
23
|
+
findlib.cmi findlib.mli findlib.cma findlib.cmxa findlib$(LIB_SUFFIX) findlib.cmxs \
|
|
24
|
+
--
|
|
25
|
+
2.35.1
|
|
26
|
+
|
|
@@ -34,6 +34,8 @@ install: [
|
|
|
34
34
|
[make "install"]
|
|
35
35
|
["install" "-m" "0755" "ocaml-stub" "%{bin}%/ocaml"] {ocaml:preinstalled}
|
|
36
36
|
]
|
|
37
|
+
extra-files: ["0001-Fix-bug-when-installing-with-a-system-compiler.patch" "md5=130d3d6fe399948ed7991b7756f50dc3"]
|
|
38
|
+
patches: ["0001-Fix-bug-when-installing-with-a-system-compiler.patch"]
|
|
37
39
|
dev-repo: "git+https://github.com/ocaml/ocamlfind.git"
|
|
38
40
|
url {
|
|
39
41
|
src: "http://download.camlcity.org/download/findlib-1.9.5.tar.gz"
|
binaryen-archive/esy.lock/opam/{ocamlformat-rpc-lib.0.22.4 → ocamlformat-rpc-lib.0.24.1}/opam
RENAMED
|
@@ -30,10 +30,10 @@ build: [
|
|
|
30
30
|
dev-repo: "git+https://github.com/ocaml-ppx/ocamlformat.git"
|
|
31
31
|
url {
|
|
32
32
|
src:
|
|
33
|
-
"https://github.com/ocaml-ppx/ocamlformat/releases/download/0.
|
|
33
|
+
"https://github.com/ocaml-ppx/ocamlformat/releases/download/0.24.1/ocamlformat-0.24.1.tbz"
|
|
34
34
|
checksum: [
|
|
35
|
-
"sha256=
|
|
36
|
-
"sha512=
|
|
35
|
+
"sha256=023425e9818f80ea50537b2371a4a766c149a9957d05807e88a004d2d5f441ce"
|
|
36
|
+
"sha512=753b6128be68042895202f99959b360ce954db6f82b19b83b4bb346761a8e9cfdfc2b4b25e2070e60601b555562e78f9ebb02760ff127464e0b66cedbddca304"
|
|
37
37
|
]
|
|
38
38
|
}
|
|
39
|
-
x-commit-hash: "
|
|
39
|
+
x-commit-hash: "86938aa4435b251af1a3b081f7fbed90f982cf62"
|
|
@@ -15,9 +15,10 @@ dev-repo: "git+https://github.com/ocaml-doc/odoc-parser.git"
|
|
|
15
15
|
doc: "https://ocaml-doc.github.io/odoc-parser/"
|
|
16
16
|
depends: [
|
|
17
17
|
"dune" {>= "2.8"}
|
|
18
|
-
"ocaml" {>= "4.02.0"
|
|
18
|
+
"ocaml" {>= "4.02.0"}
|
|
19
19
|
"astring"
|
|
20
20
|
"result"
|
|
21
|
+
"camlp-streams"
|
|
21
22
|
"ppx_expect" {with-test}
|
|
22
23
|
("ocaml" {< "4.04.1" & with-test} | "sexplib0" {with-test})
|
|
23
24
|
]
|
|
@@ -36,11 +37,11 @@ build: [
|
|
|
36
37
|
]
|
|
37
38
|
url {
|
|
38
39
|
src:
|
|
39
|
-
"https://github.com/ocaml-doc/odoc-parser/releases/download/1.0.
|
|
40
|
+
"https://github.com/ocaml-doc/odoc-parser/releases/download/1.0.1/odoc-parser-1.0.1.tbz"
|
|
40
41
|
checksum: [
|
|
41
|
-
"sha256=
|
|
42
|
-
"sha512=
|
|
42
|
+
"sha256=a2bbe8e4201b60e980bab01e96e41f2ba0b05ba3f50b44f75837e8a2fb907d2c"
|
|
43
|
+
"sha512=c3339aae880ce72df866746d9ed9e7d38a752bf994ba24e948c086349604007e39602a1c31cf2ddb61ac8f8dc9dceccca43fe185850b83e3a02d75121f9ddfe2"
|
|
43
44
|
]
|
|
44
45
|
}
|
|
45
|
-
x-commit-hash: "
|
|
46
|
+
x-commit-hash: "216e3234b57bf194e65e14200e43607cc4e47da6"
|
|
46
47
|
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
opam-version: "2.0"
|
|
2
|
+
synopsis: "A Markdown frontend in pure OCaml"
|
|
3
|
+
description: """
|
|
4
|
+
This Markdown library is implemented using only pure OCaml (including
|
|
5
|
+
I/O operations provided by the standard OCaml compiler distribution).
|
|
6
|
+
OMD is meant to be as faithful as possible to the original Markdown.
|
|
7
|
+
Additionally, OMD implements a few Github markdown features, an
|
|
8
|
+
extension mechanism, and some other features. Note that the opam
|
|
9
|
+
package installs both the OMD library and the command line tool `omd`."""
|
|
10
|
+
maintainer: [
|
|
11
|
+
"Shon Feder <shon.feder@gmail.com>" "Raphael Sousa Santos <@sonologico>"
|
|
12
|
+
]
|
|
13
|
+
authors: [
|
|
14
|
+
"Philippe Wang <philippe.wang@gmail.com>"
|
|
15
|
+
"Nicolás Ojeda Bär <n.oje.bar@gmail.com>"
|
|
16
|
+
]
|
|
17
|
+
license: "ISC"
|
|
18
|
+
tags: ["org:ocamllabs" "org:mirage"]
|
|
19
|
+
homepage: "https://github.com/ocaml/omd"
|
|
20
|
+
bug-reports: "https://github.com/ocaml/omd/issues"
|
|
21
|
+
depends: [
|
|
22
|
+
"dune" {>= "2.7"}
|
|
23
|
+
"ocaml" {>= "4.04"}
|
|
24
|
+
"base-bigarray"
|
|
25
|
+
"base-bytes"
|
|
26
|
+
"odoc" {with-doc}
|
|
27
|
+
]
|
|
28
|
+
build: [
|
|
29
|
+
["dune" "subst"] {dev}
|
|
30
|
+
[
|
|
31
|
+
"dune"
|
|
32
|
+
"build"
|
|
33
|
+
"-p"
|
|
34
|
+
name
|
|
35
|
+
"-j"
|
|
36
|
+
jobs
|
|
37
|
+
"@install"
|
|
38
|
+
"@runtest" {with-test}
|
|
39
|
+
"@doc" {with-doc}
|
|
40
|
+
]
|
|
41
|
+
]
|
|
42
|
+
dev-repo: "git+https://github.com/ocaml/omd.git"
|
|
43
|
+
url {
|
|
44
|
+
src: "https://github.com/ocaml/omd/releases/download/1.3.2/omd-1.3.2.tbz"
|
|
45
|
+
checksum: [
|
|
46
|
+
"sha256=6023e1642631f08f678eb5725820879ed7bb5a3ffee777cdedebc28c1f85fadb"
|
|
47
|
+
"sha512=fa2070a5f5d30b2cc422937ac4158bb087134a69d47fa15df403afb1c0c60a73dd436c949faa8d44e0b65bdee039779d86191b55085b717253f91ef20a69ef98"
|
|
48
|
+
]
|
|
49
|
+
}
|
|
50
|
+
x-commit-hash: "bc6c0d568b90b61143e9863cb6ef7b3989b3313a"
|
|
@@ -29,10 +29,10 @@ build: [
|
|
|
29
29
|
]
|
|
30
30
|
]
|
|
31
31
|
url {
|
|
32
|
-
src: "https://github.com/ocaml/dune/releases/download/3.
|
|
32
|
+
src: "https://github.com/ocaml/dune/releases/download/3.5.0/dune-3.5.0.tbz"
|
|
33
33
|
checksum: [
|
|
34
|
-
"sha256=
|
|
35
|
-
"sha512=
|
|
34
|
+
"sha256=77bd4c6704359fae1969636cfc3cd7a517ba3604819ef89c919c0762b5093610"
|
|
35
|
+
"sha512=acaed76ab8618977118579641a1f6734ed4a225ab46494c6c5fd8e1bf9a0889e62db9adc7bd11770da602f4dd4785cef5ece4ad26512d08b64b8f3bd8954c80d"
|
|
36
36
|
]
|
|
37
37
|
}
|
|
38
|
-
x-commit-hash: "
|
|
38
|
+
x-commit-hash: "77c1e6f8f27f57fe0c04ec1624a85069b02437cf"
|
|
@@ -24,7 +24,7 @@ depends: [
|
|
|
24
24
|
"ocaml-compiler-libs" {>= "v0.11.0"}
|
|
25
25
|
"ppx_derivers" {>= "1.0"}
|
|
26
26
|
"sexplib0" {>= "v0.12"}
|
|
27
|
-
"sexplib0" {with-test &
|
|
27
|
+
"sexplib0" {with-test & >= "v0.15"}
|
|
28
28
|
"stdlib-shims"
|
|
29
29
|
"ocamlfind" {with-test}
|
|
30
30
|
"re" {with-test & >= "1.9.0"}
|
|
@@ -54,10 +54,10 @@ build: [
|
|
|
54
54
|
dev-repo: "git+https://github.com/ocaml-ppx/ppxlib.git"
|
|
55
55
|
url {
|
|
56
56
|
src:
|
|
57
|
-
"https://github.com/ocaml-ppx/ppxlib/releases/download/0.
|
|
57
|
+
"https://github.com/ocaml-ppx/ppxlib/releases/download/0.28.0/ppxlib-0.28.0.tbz"
|
|
58
58
|
checksum: [
|
|
59
|
-
"sha256=
|
|
60
|
-
"sha512=
|
|
59
|
+
"sha256=d87ae5f9a081206308ca964809b50a66aeb8e83d254801e8b9675448b60cf377"
|
|
60
|
+
"sha512=03270d43e91485e63c7dc115a71933ffd8cb2910c273d605d2800fa69f523dcd4de1fbe31fd6c2f6979675c681343bcf4e35be06934565bf28edf4ea03f5da8e"
|
|
61
61
|
]
|
|
62
62
|
}
|
|
63
|
-
x-commit-hash: "
|
|
63
|
+
x-commit-hash: "e027461818a8580e860e59d90ccae28f25cd40d4"
|
|
@@ -35,10 +35,10 @@ build: [
|
|
|
35
35
|
]
|
|
36
36
|
]
|
|
37
37
|
url {
|
|
38
|
-
src: "https://github.com/ocaml/dune/releases/download/3.
|
|
38
|
+
src: "https://github.com/ocaml/dune/releases/download/3.5.0/dune-3.5.0.tbz"
|
|
39
39
|
checksum: [
|
|
40
|
-
"sha256=
|
|
41
|
-
"sha512=
|
|
40
|
+
"sha256=77bd4c6704359fae1969636cfc3cd7a517ba3604819ef89c919c0762b5093610"
|
|
41
|
+
"sha512=acaed76ab8618977118579641a1f6734ed4a225ab46494c6c5fd8e1bf9a0889e62db9adc7bd11770da602f4dd4785cef5ece4ad26512d08b64b8f3bd8954c80d"
|
|
42
42
|
]
|
|
43
43
|
}
|
|
44
|
-
x-commit-hash: "
|
|
44
|
+
x-commit-hash: "77c1e6f8f27f57fe0c04ec1624a85069b02437cf"
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
opam-version: "2.0"
|
|
2
|
+
synopsis: "Unicode character properties for OCaml"
|
|
3
|
+
description: """\
|
|
4
|
+
Uucp is an OCaml library providing efficient access to a selection of
|
|
5
|
+
character properties of the [Unicode character database][1].
|
|
6
|
+
|
|
7
|
+
Uucp is independent from any Unicode text data structure and has no
|
|
8
|
+
dependencies. It is distributed under the ISC license.
|
|
9
|
+
|
|
10
|
+
[1]: http://www.unicode.org/reports/tr44/
|
|
11
|
+
|
|
12
|
+
Home page: http://erratique.ch/software/uucp"""
|
|
13
|
+
maintainer: "Daniel Bünzli <daniel.buenzl i@erratique.ch>"
|
|
14
|
+
authors: "The uucp programmers"
|
|
15
|
+
license: "ISC"
|
|
16
|
+
tags: ["unicode" "text" "character" "org:erratique"]
|
|
17
|
+
homepage: "https://erratique.ch/software/uucp"
|
|
18
|
+
doc: "https://erratique.ch/software/uucp/doc/"
|
|
19
|
+
bug-reports: "https://github.com/dbuenzli/uucp/issues"
|
|
20
|
+
depends: [
|
|
21
|
+
"ocaml" {>= "4.03.0"}
|
|
22
|
+
"ocamlfind" {build}
|
|
23
|
+
"ocamlbuild" {build}
|
|
24
|
+
"topkg" {build & >= "1.0.3"}
|
|
25
|
+
"uucd" {with-test}
|
|
26
|
+
"uunf" {with-test}
|
|
27
|
+
"uutf" {with-test}
|
|
28
|
+
]
|
|
29
|
+
depopts: ["uutf" "uunf" "cmdliner"]
|
|
30
|
+
conflicts: [
|
|
31
|
+
"uutf" {< "1.0.1"}
|
|
32
|
+
"cmdliner" {< "1.1.0"}
|
|
33
|
+
]
|
|
34
|
+
build: [
|
|
35
|
+
"ocaml"
|
|
36
|
+
"pkg/pkg.ml"
|
|
37
|
+
"build"
|
|
38
|
+
"--dev-pkg"
|
|
39
|
+
"%{dev}%"
|
|
40
|
+
"--with-uutf"
|
|
41
|
+
"%{uutf:installed}%"
|
|
42
|
+
"--with-uunf"
|
|
43
|
+
"%{uunf:installed}%"
|
|
44
|
+
"--with-cmdliner"
|
|
45
|
+
"%{cmdliner:installed}%"
|
|
46
|
+
]
|
|
47
|
+
post-messages:
|
|
48
|
+
"If the build fails with \"ocamlopt.opt got signal and exited\", issue 'ulimit -s unlimited' and retry."
|
|
49
|
+
{failure & (arch = "ppc64" | arch = "arm64")}
|
|
50
|
+
dev-repo: "git+https://erratique.ch/repos/uucp.git"
|
|
51
|
+
url {
|
|
52
|
+
src: "https://erratique.ch/software/uucp/releases/uucp-15.0.0.tbz"
|
|
53
|
+
checksum:
|
|
54
|
+
"sha512=ee4acff5666961766321e85e287fb9d5b8d50533319f22bf6f4eceb943242df2d0e0f4e775c4a140f68ca142837938eaa5926e22362215a3365ffe7f8768923b"
|
|
55
|
+
}
|
|
@@ -1,28 +1,6 @@
|
|
|
1
1
|
opam-version: "2.0"
|
|
2
|
-
synopsis: "
|
|
3
|
-
|
|
4
|
-
authors: ["The uuseg programmers"]
|
|
5
|
-
homepage: "https://erratique.ch/software/uuseg"
|
|
6
|
-
doc: "https://erratique.ch/software/uuseg/doc/"
|
|
7
|
-
dev-repo: "git+https://erratique.ch/repos/uuseg.git"
|
|
8
|
-
bug-reports: "https://github.com/dbuenzli/uuseg/issues"
|
|
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: """
|
|
2
|
+
synopsis: "Unicode text segmentation for OCaml"
|
|
3
|
+
description: """\
|
|
26
4
|
Uuseg is an OCaml library for segmenting Unicode text. It implements
|
|
27
5
|
the locale independent [Unicode text segmentation algorithms][1] to
|
|
28
6
|
detect grapheme cluster, word and sentence boundaries and the
|
|
@@ -40,4 +18,40 @@ OCaml UTF-X encoded strings. It is distributed under the ISC license.
|
|
|
40
18
|
[1]: http://www.unicode.org/reports/tr29/
|
|
41
19
|
[2]: http://www.unicode.org/reports/tr14/
|
|
42
20
|
|
|
43
|
-
Homepage: http://erratique.ch/software/uuseg"""
|
|
21
|
+
Homepage: http://erratique.ch/software/uuseg"""
|
|
22
|
+
maintainer: "Daniel Bünzli <daniel.buenzl i@erratique.ch>"
|
|
23
|
+
authors: "The uuseg programmers"
|
|
24
|
+
license: "ISC"
|
|
25
|
+
tags: ["unicode" "text" "segmentation" "org:erratique"]
|
|
26
|
+
homepage: "https://erratique.ch/software/uuseg"
|
|
27
|
+
doc: "https://erratique.ch/software/uuseg/doc/"
|
|
28
|
+
bug-reports: "https://github.com/dbuenzli/uuseg/issues"
|
|
29
|
+
depends: [
|
|
30
|
+
"ocaml" {>= "4.03.0"}
|
|
31
|
+
"ocamlfind" {build}
|
|
32
|
+
"ocamlbuild" {build}
|
|
33
|
+
"topkg" {build & >= "1.0.3"}
|
|
34
|
+
"uucp" {>= "15.0.0" & < "16.0.0"}
|
|
35
|
+
]
|
|
36
|
+
depopts: ["uutf" "cmdliner"]
|
|
37
|
+
conflicts: [
|
|
38
|
+
"uutf" {< "1.0.0"}
|
|
39
|
+
"cmdliner" {< "1.1.0"}
|
|
40
|
+
]
|
|
41
|
+
build: [
|
|
42
|
+
"ocaml"
|
|
43
|
+
"pkg/pkg.ml"
|
|
44
|
+
"build"
|
|
45
|
+
"--dev-pkg"
|
|
46
|
+
"%{dev}%"
|
|
47
|
+
"--with-uutf"
|
|
48
|
+
"%{uutf:installed}%"
|
|
49
|
+
"--with-cmdliner"
|
|
50
|
+
"%{cmdliner:installed}%"
|
|
51
|
+
]
|
|
52
|
+
dev-repo: "git+https://erratique.ch/repos/uuseg.git"
|
|
53
|
+
url {
|
|
54
|
+
src: "https://erratique.ch/software/uuseg/releases/uuseg-15.0.0.tbz"
|
|
55
|
+
checksum:
|
|
56
|
+
"sha512=37ea83b582dd779a026cfae11f08f5d67ef79fce65a2cf03f2a9aabc7eb5de60c8e812524fa7531e4ff6e22a3b18228e3438a0143ce43be95f23237cc283576f"
|
|
57
|
+
}
|
|
@@ -30,10 +30,10 @@ build: [
|
|
|
30
30
|
]
|
|
31
31
|
]
|
|
32
32
|
url {
|
|
33
|
-
src: "https://github.com/ocaml/dune/releases/download/3.
|
|
33
|
+
src: "https://github.com/ocaml/dune/releases/download/3.5.0/dune-3.5.0.tbz"
|
|
34
34
|
checksum: [
|
|
35
|
-
"sha256=
|
|
36
|
-
"sha512=
|
|
35
|
+
"sha256=77bd4c6704359fae1969636cfc3cd7a517ba3604819ef89c919c0762b5093610"
|
|
36
|
+
"sha512=acaed76ab8618977118579641a1f6734ed4a225ab46494c6c5fd8e1bf9a0889e62db9adc7bd11770da602f4dd4785cef5ece4ad26512d08b64b8f3bd8954c80d"
|
|
37
37
|
]
|
|
38
38
|
}
|
|
39
|
-
x-commit-hash: "
|
|
39
|
+
x-commit-hash: "77c1e6f8f27f57fe0c04ec1624a85069b02437cf"
|
|
@@ -14,7 +14,7 @@ build: [
|
|
|
14
14
|
]
|
|
15
15
|
depends: [
|
|
16
16
|
"ocaml" {>= "4.02.3"}
|
|
17
|
-
"dune"
|
|
17
|
+
"dune" {>= "2.0"}
|
|
18
18
|
"cppo" {build}
|
|
19
19
|
"alcotest" {with-test & >= "0.8.5"}
|
|
20
20
|
"odoc" {with-doc}
|
|
@@ -29,10 +29,10 @@ ydump is a pretty-printing command-line program provided with the
|
|
|
29
29
|
yojson package."""
|
|
30
30
|
url {
|
|
31
31
|
src:
|
|
32
|
-
"https://github.com/ocaml-community/yojson/releases/download/2.0.
|
|
32
|
+
"https://github.com/ocaml-community/yojson/releases/download/2.0.2/yojson-2.0.2.tbz"
|
|
33
33
|
checksum: [
|
|
34
|
-
"sha256=
|
|
35
|
-
"sha512=
|
|
34
|
+
"sha256=876bb6f38af73a84a29438a3da35e4857c60a14556a606525b148c6fdbe5461b"
|
|
35
|
+
"sha512=9e150689a814a64e53e361e336fe826df5a3e3851d1367fda4a001392175c29348de55db0b7d7ba18539dec2cf78198efcb7f41b77a9861763f5aa97c05509ad"
|
|
36
36
|
]
|
|
37
37
|
}
|
|
38
|
-
x-commit-hash: "
|
|
38
|
+
x-commit-hash: "17ca03c5877a4346f0691443f35ed9678f99962f"
|