@grain/binaryen.ml 0.17.0 → 0.17.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/CHANGELOG.md +7 -0
- binaryen-archive/binaryen.opam +5 -5
- binaryen-archive/esy.lock/index.json +492 -245
- binaryen-archive/esy.lock/opam/base-bigarray.base/opam +6 -0
- binaryen-archive/esy.lock/opam/{cppo.1.6.8 → cppo.1.6.9}/opam +21 -19
- binaryen-archive/esy.lock/opam/{dune-build-info.2.9.3 → dune-build-info.3.2.0}/opam +8 -5
- binaryen-archive/esy.lock/opam/{dune-configurator.2.9.3 → dune-configurator.3.2.0}/opam +9 -8
- binaryen-archive/esy.lock/opam/dune-rpc.3.2.0/opam +44 -0
- binaryen-archive/esy.lock/opam/{dune.2.9.3 → dune.3.2.0}/opam +6 -8
- binaryen-archive/esy.lock/opam/dyn.3.2.0/opam +41 -0
- binaryen-archive/esy.lock/opam/{easy-format.1.3.3 → easy-format.1.3.4}/opam +8 -10
- binaryen-archive/esy.lock/opam/fiber.3.2.0/opam +42 -0
- binaryen-archive/esy.lock/opam/{js_of_ocaml-compiler.3.11.0 → js_of_ocaml-compiler.4.0.0}/opam +13 -11
- binaryen-archive/esy.lock/opam/{menhir.20211128 → menhir.20220210}/opam +4 -4
- binaryen-archive/esy.lock/opam/{menhirLib.20211128 → menhirLib.20220210}/opam +3 -3
- binaryen-archive/esy.lock/opam/{menhirSdk.20211128 → menhirSdk.20220210}/opam +3 -3
- binaryen-archive/esy.lock/opam/{ocaml-lsp-server.1.10.3 → ocaml-lsp-server.1.11.6}/opam +15 -7
- binaryen-archive/esy.lock/opam/{ocamlformat-rpc-lib.0.19.0 → ocamlformat-rpc-lib.0.22.4}/opam +6 -7
- binaryen-archive/esy.lock/opam/octavius.1.2.2/opam +33 -0
- binaryen-archive/esy.lock/opam/omd.1.3.1/opam +39 -0
- binaryen-archive/esy.lock/opam/ordering.3.2.0/opam +39 -0
- binaryen-archive/esy.lock/opam/stdune.3.2.0/opam +44 -0
- binaryen-archive/esy.lock/opam/xdg.3.2.0/opam +40 -0
- binaryen-archive/esy.lock/overrides/opam__s__js__of__ocaml_compiler_opam__c__4.0.0_opam_override/package.json +3 -0
- binaryen-archive/package.json +5 -5
- binaryen-archive/esy.lock/overrides/opam__s__easy_format_opam__c__1.3.3_opam_override/package.json +0 -3
|
@@ -1,37 +1,39 @@
|
|
|
1
1
|
opam-version: "2.0"
|
|
2
|
-
|
|
2
|
+
synopsis: "Code preprocessor like cpp for OCaml"
|
|
3
|
+
description: """\
|
|
4
|
+
Cppo is an equivalent of the C preprocessor for OCaml programs.
|
|
5
|
+
It allows the definition of simple macros and file inclusion.
|
|
6
|
+
|
|
7
|
+
Cppo is:
|
|
8
|
+
|
|
9
|
+
* more OCaml-friendly than cpp
|
|
10
|
+
* easy to learn without consulting a manual
|
|
11
|
+
* reasonably fast
|
|
12
|
+
* simple to install and to maintain"""
|
|
13
|
+
maintainer: [
|
|
14
|
+
"Martin Jambon <martin@mjambon.com>" "Yishuai Li <yishuai@upenn.edu>"
|
|
15
|
+
]
|
|
3
16
|
authors: "Martin Jambon"
|
|
4
17
|
license: "BSD-3-Clause"
|
|
5
18
|
homepage: "https://github.com/ocaml-community/cppo"
|
|
6
|
-
doc: "https://ocaml-community.github.io/cppo
|
|
19
|
+
doc: "https://ocaml-community.github.io/cppo"
|
|
7
20
|
bug-reports: "https://github.com/ocaml-community/cppo/issues"
|
|
8
21
|
depends: [
|
|
9
22
|
"ocaml" {>= "4.02.3"}
|
|
10
|
-
"dune" {>= "1.
|
|
23
|
+
"dune" {>= "1.10"}
|
|
11
24
|
"base-unix"
|
|
12
25
|
]
|
|
13
26
|
build: [
|
|
14
27
|
["dune" "subst"] {dev}
|
|
15
28
|
["dune" "build" "-p" name "-j" jobs]
|
|
16
29
|
["dune" "runtest" "-p" name "-j" jobs] {with-test}
|
|
30
|
+
["dune" "build" "-p" name "@doc"] {with-doc}
|
|
17
31
|
]
|
|
18
32
|
dev-repo: "git+https://github.com/ocaml-community/cppo.git"
|
|
19
|
-
synopsis: "Code preprocessor like cpp for OCaml"
|
|
20
|
-
description: """
|
|
21
|
-
Cppo is an equivalent of the C preprocessor for OCaml programs.
|
|
22
|
-
It allows the definition of simple macros and file inclusion.
|
|
23
|
-
|
|
24
|
-
Cppo is:
|
|
25
|
-
|
|
26
|
-
* more OCaml-friendly than cpp
|
|
27
|
-
* easy to learn without consulting a manual
|
|
28
|
-
* reasonably fast
|
|
29
|
-
* simple to install and to maintain
|
|
30
|
-
"""
|
|
31
33
|
url {
|
|
32
|
-
src: "https://github.com/ocaml-community/cppo/archive/v1.6.
|
|
34
|
+
src: "https://github.com/ocaml-community/cppo/archive/v1.6.9.tar.gz"
|
|
33
35
|
checksum: [
|
|
34
|
-
"md5=
|
|
35
|
-
"sha512=
|
|
36
|
+
"md5=d23ffe85ac7dc8f0afd1ddf622770d09"
|
|
37
|
+
"sha512=26ff5a7b7f38c460661974b23ca190f0feae3a99f1974e0fd12ccf08745bd7d91b7bc168c70a5385b837bfff9530e0e4e41cf269f23dd8cf16ca658008244b44"
|
|
36
38
|
]
|
|
37
|
-
}
|
|
39
|
+
}
|
|
@@ -15,12 +15,15 @@ homepage: "https://github.com/ocaml/dune"
|
|
|
15
15
|
doc: "https://dune.readthedocs.io/"
|
|
16
16
|
bug-reports: "https://github.com/ocaml/dune/issues"
|
|
17
17
|
depends: [
|
|
18
|
-
"dune" {>= "
|
|
18
|
+
"dune" {>= "3.0"}
|
|
19
|
+
"ocaml" {>= "4.08"}
|
|
19
20
|
"odoc" {with-doc}
|
|
20
21
|
]
|
|
21
22
|
dev-repo: "git+https://github.com/ocaml/dune.git"
|
|
22
23
|
build: [
|
|
23
24
|
["dune" "subst"] {dev}
|
|
25
|
+
["rm" "-rf" "vendor/csexp"]
|
|
26
|
+
["rm" "-rf" "vendor/pp"]
|
|
24
27
|
[
|
|
25
28
|
"dune"
|
|
26
29
|
"build"
|
|
@@ -34,10 +37,10 @@ build: [
|
|
|
34
37
|
]
|
|
35
38
|
url {
|
|
36
39
|
src:
|
|
37
|
-
"https://github.com/ocaml/dune/releases/download/2.
|
|
40
|
+
"https://github.com/ocaml/dune/releases/download/3.2.0/chrome-trace-3.2.0.tbz"
|
|
38
41
|
checksum: [
|
|
39
|
-
"sha256=
|
|
40
|
-
"sha512=
|
|
42
|
+
"sha256=bd1fbce6ae79ed1eb26fa89bb2e2e23978afceb3f53f5578cf1bdab08a1ad5bc"
|
|
43
|
+
"sha512=b99e82d7e2233a9dd8c1fae591a03f9470fcdf9750d0e428cee2d4c8bcfa4da1595e9e10af2f234279a6ca8a120a773b247d4761d2c39210fc6101076631690e"
|
|
41
44
|
]
|
|
42
45
|
}
|
|
43
|
-
x-commit-hash: "
|
|
46
|
+
x-commit-hash: "43af00f79e41ce9101d42b36dab13e1f68d49a7a"
|
|
@@ -17,15 +17,16 @@ homepage: "https://github.com/ocaml/dune"
|
|
|
17
17
|
doc: "https://dune.readthedocs.io/"
|
|
18
18
|
bug-reports: "https://github.com/ocaml/dune/issues"
|
|
19
19
|
depends: [
|
|
20
|
-
"dune" {>= "
|
|
21
|
-
"ocaml" {>= "4.
|
|
22
|
-
"
|
|
23
|
-
"csexp" {>= "1.3.0"}
|
|
20
|
+
"dune" {>= "3.0"}
|
|
21
|
+
"ocaml" {>= "4.04.0"}
|
|
22
|
+
"csexp" {>= "1.5.0"}
|
|
24
23
|
"odoc" {with-doc}
|
|
25
24
|
]
|
|
26
25
|
dev-repo: "git+https://github.com/ocaml/dune.git"
|
|
27
26
|
build: [
|
|
28
27
|
["dune" "subst"] {dev}
|
|
28
|
+
["rm" "-rf" "vendor/csexp"]
|
|
29
|
+
["rm" "-rf" "vendor/pp"]
|
|
29
30
|
[
|
|
30
31
|
"dune"
|
|
31
32
|
"build"
|
|
@@ -39,10 +40,10 @@ build: [
|
|
|
39
40
|
]
|
|
40
41
|
url {
|
|
41
42
|
src:
|
|
42
|
-
"https://github.com/ocaml/dune/releases/download/2.
|
|
43
|
+
"https://github.com/ocaml/dune/releases/download/3.2.0/chrome-trace-3.2.0.tbz"
|
|
43
44
|
checksum: [
|
|
44
|
-
"sha256=
|
|
45
|
-
"sha512=
|
|
45
|
+
"sha256=bd1fbce6ae79ed1eb26fa89bb2e2e23978afceb3f53f5578cf1bdab08a1ad5bc"
|
|
46
|
+
"sha512=b99e82d7e2233a9dd8c1fae591a03f9470fcdf9750d0e428cee2d4c8bcfa4da1595e9e10af2f234279a6ca8a120a773b247d4761d2c39210fc6101076631690e"
|
|
46
47
|
]
|
|
47
48
|
}
|
|
48
|
-
x-commit-hash: "
|
|
49
|
+
x-commit-hash: "43af00f79e41ce9101d42b36dab13e1f68d49a7a"
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
opam-version: "2.0"
|
|
2
|
+
synopsis: "Communicate with dune using rpc"
|
|
3
|
+
description: "Library to connect and control a running dune instance"
|
|
4
|
+
maintainer: ["Jane Street Group, LLC <opensource@janestreet.com>"]
|
|
5
|
+
authors: ["Jane Street Group, LLC <opensource@janestreet.com>"]
|
|
6
|
+
license: "MIT"
|
|
7
|
+
homepage: "https://github.com/ocaml/dune"
|
|
8
|
+
doc: "https://dune.readthedocs.io/"
|
|
9
|
+
bug-reports: "https://github.com/ocaml/dune/issues"
|
|
10
|
+
depends: [
|
|
11
|
+
"dune" {>= "3.0"}
|
|
12
|
+
"csexp"
|
|
13
|
+
"ordering"
|
|
14
|
+
"dyn"
|
|
15
|
+
"xdg"
|
|
16
|
+
"stdune" {= version}
|
|
17
|
+
"pp" {>= "1.1.0"}
|
|
18
|
+
"odoc" {with-doc}
|
|
19
|
+
]
|
|
20
|
+
dev-repo: "git+https://github.com/ocaml/dune.git"
|
|
21
|
+
build: [
|
|
22
|
+
["dune" "subst"] {dev}
|
|
23
|
+
["rm" "-rf" "vendor/csexp"]
|
|
24
|
+
["rm" "-rf" "vendor/pp"]
|
|
25
|
+
[
|
|
26
|
+
"dune"
|
|
27
|
+
"build"
|
|
28
|
+
"-p"
|
|
29
|
+
name
|
|
30
|
+
"-j"
|
|
31
|
+
jobs
|
|
32
|
+
"@install"
|
|
33
|
+
"@doc" {with-doc}
|
|
34
|
+
]
|
|
35
|
+
]
|
|
36
|
+
url {
|
|
37
|
+
src:
|
|
38
|
+
"https://github.com/ocaml/dune/releases/download/3.2.0/chrome-trace-3.2.0.tbz"
|
|
39
|
+
checksum: [
|
|
40
|
+
"sha256=bd1fbce6ae79ed1eb26fa89bb2e2e23978afceb3f53f5578cf1bdab08a1ad5bc"
|
|
41
|
+
"sha512=b99e82d7e2233a9dd8c1fae591a03f9470fcdf9750d0e428cee2d4c8bcfa4da1595e9e10af2f234279a6ca8a120a773b247d4761d2c39210fc6101076631690e"
|
|
42
|
+
]
|
|
43
|
+
}
|
|
44
|
+
x-commit-hash: "43af00f79e41ce9101d42b36dab13e1f68d49a7a"
|
|
@@ -29,17 +29,15 @@ conflicts: [
|
|
|
29
29
|
"merlin" {< "3.4.0"}
|
|
30
30
|
"ocaml-lsp-server" {< "1.3.0"}
|
|
31
31
|
"dune-configurator" {< "2.3.0"}
|
|
32
|
-
"odoc" {< "
|
|
32
|
+
"odoc" {< "2.0.1"}
|
|
33
33
|
"dune-release" {< "1.3.0"}
|
|
34
34
|
"js_of_ocaml-compiler" {< "3.6.0"}
|
|
35
35
|
"jbuilder" {= "transition"}
|
|
36
36
|
]
|
|
37
37
|
dev-repo: "git+https://github.com/ocaml/dune.git"
|
|
38
38
|
build: [
|
|
39
|
-
# opam 2 sets OPAM_SWITCH_PREFIX, so we don't need a hardcoded path
|
|
40
|
-
["ocaml" "configure.ml" "--libdir" lib] {opam-version < "2"}
|
|
41
39
|
["ocaml" "bootstrap.ml" "-j" jobs]
|
|
42
|
-
["./dune.exe" "build" "
|
|
40
|
+
["./dune.exe" "build" "dune.install" "--release" "--profile" "dune-bootstrap" "-j" jobs]
|
|
43
41
|
]
|
|
44
42
|
depends: [
|
|
45
43
|
# Please keep the lower bound in sync with .github/workflows/workflow.yml,
|
|
@@ -50,10 +48,10 @@ depends: [
|
|
|
50
48
|
]
|
|
51
49
|
url {
|
|
52
50
|
src:
|
|
53
|
-
"https://github.com/ocaml/dune/releases/download/2.
|
|
51
|
+
"https://github.com/ocaml/dune/releases/download/3.2.0/chrome-trace-3.2.0.tbz"
|
|
54
52
|
checksum: [
|
|
55
|
-
"sha256=
|
|
56
|
-
"sha512=
|
|
53
|
+
"sha256=bd1fbce6ae79ed1eb26fa89bb2e2e23978afceb3f53f5578cf1bdab08a1ad5bc"
|
|
54
|
+
"sha512=b99e82d7e2233a9dd8c1fae591a03f9470fcdf9750d0e428cee2d4c8bcfa4da1595e9e10af2f234279a6ca8a120a773b247d4761d2c39210fc6101076631690e"
|
|
57
55
|
]
|
|
58
56
|
}
|
|
59
|
-
x-commit-hash: "
|
|
57
|
+
x-commit-hash: "43af00f79e41ce9101d42b36dab13e1f68d49a7a"
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
opam-version: "2.0"
|
|
2
|
+
synopsis: "Dynamic type"
|
|
3
|
+
description: "Dynamic type"
|
|
4
|
+
maintainer: ["Jane Street Group, LLC <opensource@janestreet.com>"]
|
|
5
|
+
authors: ["Jane Street Group, LLC <opensource@janestreet.com>"]
|
|
6
|
+
license: "MIT"
|
|
7
|
+
homepage: "https://github.com/ocaml/dune"
|
|
8
|
+
doc: "https://dune.readthedocs.io/"
|
|
9
|
+
bug-reports: "https://github.com/ocaml/dune/issues"
|
|
10
|
+
depends: [
|
|
11
|
+
"dune" {>= "3.0"}
|
|
12
|
+
"ocaml" {>= "4.08.0"}
|
|
13
|
+
"ordering" {= version}
|
|
14
|
+
"pp" {>= "1.1.0"}
|
|
15
|
+
"odoc" {with-doc}
|
|
16
|
+
]
|
|
17
|
+
dev-repo: "git+https://github.com/ocaml/dune.git"
|
|
18
|
+
build: [
|
|
19
|
+
["dune" "subst"] {dev}
|
|
20
|
+
["rm" "-rf" "vendor/csexp"]
|
|
21
|
+
["rm" "-rf" "vendor/pp"]
|
|
22
|
+
[
|
|
23
|
+
"dune"
|
|
24
|
+
"build"
|
|
25
|
+
"-p"
|
|
26
|
+
name
|
|
27
|
+
"-j"
|
|
28
|
+
jobs
|
|
29
|
+
"@install"
|
|
30
|
+
"@doc" {with-doc}
|
|
31
|
+
]
|
|
32
|
+
]
|
|
33
|
+
url {
|
|
34
|
+
src:
|
|
35
|
+
"https://github.com/ocaml/dune/releases/download/3.2.0/chrome-trace-3.2.0.tbz"
|
|
36
|
+
checksum: [
|
|
37
|
+
"sha256=bd1fbce6ae79ed1eb26fa89bb2e2e23978afceb3f53f5578cf1bdab08a1ad5bc"
|
|
38
|
+
"sha512=b99e82d7e2233a9dd8c1fae591a03f9470fcdf9750d0e428cee2d4c8bcfa4da1595e9e10af2f234279a6ca8a120a773b247d4761d2c39210fc6101076631690e"
|
|
39
|
+
]
|
|
40
|
+
}
|
|
41
|
+
x-commit-hash: "43af00f79e41ce9101d42b36dab13e1f68d49a7a"
|
|
@@ -22,11 +22,11 @@ labelled with something like "int main", "let x =" or "x:"."""
|
|
|
22
22
|
maintainer: ["martin@mjambon.com" "rudi.grinberg@gmail.com"]
|
|
23
23
|
authors: ["Martin Jambon"]
|
|
24
24
|
license: "BSD-3-Clause"
|
|
25
|
-
homepage: "https://github.com/
|
|
25
|
+
homepage: "https://github.com/ocaml-community/easy-format"
|
|
26
26
|
doc: "https://mjambon.github.io/easy-format/"
|
|
27
|
-
bug-reports: "https://github.com/
|
|
27
|
+
bug-reports: "https://github.com/ocaml-community/easy-format/issues"
|
|
28
28
|
depends: [
|
|
29
|
-
"dune" {>= "2.
|
|
29
|
+
"dune" {>= "3.2" & >= "1.10"}
|
|
30
30
|
"ocaml" {>= "4.08"}
|
|
31
31
|
"odoc" {with-doc}
|
|
32
32
|
]
|
|
@@ -39,20 +39,18 @@ build: [
|
|
|
39
39
|
name
|
|
40
40
|
"-j"
|
|
41
41
|
jobs
|
|
42
|
-
"--promote-install-files=false"
|
|
43
42
|
"@install"
|
|
44
43
|
"@runtest" {with-test}
|
|
45
44
|
"@doc" {with-doc}
|
|
46
45
|
]
|
|
47
|
-
["dune" "install" "-p" name "--create-install-files" name]
|
|
48
46
|
]
|
|
49
|
-
dev-repo: "git+https://github.com/
|
|
47
|
+
dev-repo: "git+https://github.com/ocaml-community/easy-format.git"
|
|
50
48
|
url {
|
|
51
49
|
src:
|
|
52
|
-
"https://github.com/
|
|
50
|
+
"https://github.com/ocaml-community/easy-format/releases/download/1.3.4/easy-format-1.3.4.tbz"
|
|
53
51
|
checksum: [
|
|
54
|
-
"sha256=
|
|
55
|
-
"sha512=
|
|
52
|
+
"sha256=1dbf051e9f68574dde6e2e254a66b9c524ca425e80b36e99af96ed964ab610c3"
|
|
53
|
+
"sha512=90264864dde4cbf51f60fb5c21cf033e11bdeb662e76b62ce27b496c298ca9102174885ed7a6d29a6b8e43089e27d5bb5be247f88d9739c15cfd8470fec29d33"
|
|
56
54
|
]
|
|
57
55
|
}
|
|
58
|
-
x-commit-hash: "
|
|
56
|
+
x-commit-hash: "ba4962884509ceec63905dd6e0ccb429be4f9f66"
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
opam-version: "2.0"
|
|
2
|
+
synopsis: "Structured concurrency 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.0"}
|
|
13
|
+
"ocaml" {>= "4.08.0"}
|
|
14
|
+
"stdune" {= version}
|
|
15
|
+
"dyn" {= version}
|
|
16
|
+
"odoc" {with-doc}
|
|
17
|
+
]
|
|
18
|
+
dev-repo: "git+https://github.com/ocaml/dune.git"
|
|
19
|
+
build: [
|
|
20
|
+
["dune" "subst"] {dev}
|
|
21
|
+
["rm" "-rf" "vendor/csexp"]
|
|
22
|
+
["rm" "-rf" "vendor/pp"]
|
|
23
|
+
[
|
|
24
|
+
"dune"
|
|
25
|
+
"build"
|
|
26
|
+
"-p"
|
|
27
|
+
name
|
|
28
|
+
"-j"
|
|
29
|
+
jobs
|
|
30
|
+
"@install"
|
|
31
|
+
"@doc" {with-doc}
|
|
32
|
+
]
|
|
33
|
+
]
|
|
34
|
+
url {
|
|
35
|
+
src:
|
|
36
|
+
"https://github.com/ocaml/dune/releases/download/3.2.0/chrome-trace-3.2.0.tbz"
|
|
37
|
+
checksum: [
|
|
38
|
+
"sha256=bd1fbce6ae79ed1eb26fa89bb2e2e23978afceb3f53f5578cf1bdab08a1ad5bc"
|
|
39
|
+
"sha512=b99e82d7e2233a9dd8c1fae591a03f9470fcdf9750d0e428cee2d4c8bcfa4da1595e9e10af2f234279a6ca8a120a773b247d4761d2c39210fc6101076631690e"
|
|
40
|
+
]
|
|
41
|
+
}
|
|
42
|
+
x-commit-hash: "43af00f79e41ce9101d42b36dab13e1f68d49a7a"
|
binaryen-archive/esy.lock/opam/{js_of_ocaml-compiler.3.11.0 → js_of_ocaml-compiler.4.0.0}/opam
RENAMED
|
@@ -6,18 +6,18 @@ maintainer: ["Ocsigen team <dev@ocsigen.org>"]
|
|
|
6
6
|
authors: ["Ocsigen team <dev@ocsigen.org>"]
|
|
7
7
|
license:
|
|
8
8
|
"GPL-2.0-or-later AND LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception"
|
|
9
|
-
homepage: "https://ocsigen.
|
|
10
|
-
doc: "https://ocsigen.
|
|
9
|
+
homepage: "https://ocsigen.org/js_of_ocaml/latest/manual/overview"
|
|
10
|
+
doc: "https://ocsigen.org/js_of_ocaml/latest/manual/overview"
|
|
11
11
|
bug-reports: "https://github.com/ocsigen/js_of_ocaml/issues"
|
|
12
12
|
depends: [
|
|
13
|
-
"dune" {>= "2.
|
|
14
|
-
"ocaml" {>= "4.04" & < "4.
|
|
13
|
+
"dune" {>= "2.9"}
|
|
14
|
+
"ocaml" {>= "4.04" & < "4.15"}
|
|
15
15
|
"num" {with-test}
|
|
16
|
-
"ppx_expect" {>= "v0.
|
|
16
|
+
"ppx_expect" {>= "v0.14.2" & with-test}
|
|
17
17
|
"ppxlib" {>= "0.15.0"}
|
|
18
18
|
"re" {with-test}
|
|
19
|
-
"cmdliner"
|
|
20
|
-
"menhir"
|
|
19
|
+
"cmdliner" {>= "1.0.0"}
|
|
20
|
+
"menhir"
|
|
21
21
|
"menhirLib"
|
|
22
22
|
"menhirSdk"
|
|
23
23
|
"yojson"
|
|
@@ -39,16 +39,18 @@ build: [
|
|
|
39
39
|
name
|
|
40
40
|
"-j"
|
|
41
41
|
jobs
|
|
42
|
+
"--promote-install-files=false"
|
|
42
43
|
"@install"
|
|
43
44
|
"@doc" {with-doc}
|
|
44
45
|
]
|
|
46
|
+
["dune" "install" "-p" name "--create-install-files" name]
|
|
45
47
|
]
|
|
46
48
|
url {
|
|
47
49
|
src:
|
|
48
|
-
"https://github.com/ocsigen/js_of_ocaml/releases/download/
|
|
50
|
+
"https://github.com/ocsigen/js_of_ocaml/releases/download/4.0.0/js_of_ocaml-4.0.0.tbz"
|
|
49
51
|
checksum: [
|
|
50
|
-
"sha256=
|
|
51
|
-
"sha512=
|
|
52
|
+
"sha256=df02f819e5b2f48234af2b3e3e7c9781afa8212f8bece7ebcfbd8358b394495e"
|
|
53
|
+
"sha512=92e822849c8be14ce0428f7f4be3991449f76e65d408073a5b8b9674ba2d099439027aa11618b603c7ee31a179cf6976d54a929917a69b269425f0367926c200"
|
|
52
54
|
]
|
|
53
55
|
}
|
|
54
|
-
x-commit-hash: "
|
|
56
|
+
x-commit-hash: "6fb1d008061b6c028c375b240882bb735d54a5bc"
|
|
@@ -13,7 +13,7 @@ build: [
|
|
|
13
13
|
["dune" "build" "-p" name "-j" jobs]
|
|
14
14
|
]
|
|
15
15
|
depends: [
|
|
16
|
-
"ocaml" {>= "4.03.0"
|
|
16
|
+
"ocaml" {>= "4.03.0"}
|
|
17
17
|
"dune" {>= "2.8.0"}
|
|
18
18
|
"menhirLib" {= version}
|
|
19
19
|
"menhirSdk" {= version}
|
|
@@ -21,9 +21,9 @@ depends: [
|
|
|
21
21
|
synopsis: "An LR(1) parser generator"
|
|
22
22
|
url {
|
|
23
23
|
src:
|
|
24
|
-
"https://gitlab.inria.fr/fpottier/menhir/-/archive/
|
|
24
|
+
"https://gitlab.inria.fr/fpottier/menhir/-/archive/20220210/archive.tar.gz"
|
|
25
25
|
checksum: [
|
|
26
|
-
"md5=
|
|
27
|
-
"sha512=
|
|
26
|
+
"md5=e3cef220f676c4b1c16cbccb174cefe3"
|
|
27
|
+
"sha512=3063fec1d8b9fe092c8461b0689d426c7fe381a2bf3fd258dc42ceecca1719d32efbb8a18d94ada5555c38175ea352da3adbb239fdbcbcf52c3a5c85a4d9586f"
|
|
28
28
|
]
|
|
29
29
|
}
|
|
@@ -22,9 +22,9 @@ conflicts: [
|
|
|
22
22
|
synopsis: "Runtime support library for parsers generated by Menhir"
|
|
23
23
|
url {
|
|
24
24
|
src:
|
|
25
|
-
"https://gitlab.inria.fr/fpottier/menhir/-/archive/
|
|
25
|
+
"https://gitlab.inria.fr/fpottier/menhir/-/archive/20220210/archive.tar.gz"
|
|
26
26
|
checksum: [
|
|
27
|
-
"md5=
|
|
28
|
-
"sha512=
|
|
27
|
+
"md5=e3cef220f676c4b1c16cbccb174cefe3"
|
|
28
|
+
"sha512=3063fec1d8b9fe092c8461b0689d426c7fe381a2bf3fd258dc42ceecca1719d32efbb8a18d94ada5555c38175ea352da3adbb239fdbcbcf52c3a5c85a4d9586f"
|
|
29
29
|
]
|
|
30
30
|
}
|
|
@@ -22,9 +22,9 @@ conflicts: [
|
|
|
22
22
|
synopsis: "Compile-time library for auxiliary tools related to Menhir"
|
|
23
23
|
url {
|
|
24
24
|
src:
|
|
25
|
-
"https://gitlab.inria.fr/fpottier/menhir/-/archive/
|
|
25
|
+
"https://gitlab.inria.fr/fpottier/menhir/-/archive/20220210/archive.tar.gz"
|
|
26
26
|
checksum: [
|
|
27
|
-
"md5=
|
|
28
|
-
"sha512=
|
|
27
|
+
"md5=e3cef220f676c4b1c16cbccb174cefe3"
|
|
28
|
+
"sha512=3063fec1d8b9fe092c8461b0689d426c7fe381a2bf3fd258dc42ceecca1719d32efbb8a18d94ada5555c38175ea352da3adbb239fdbcbcf52c3a5c85a4d9586f"
|
|
29
29
|
]
|
|
30
30
|
}
|
|
@@ -22,14 +22,22 @@ depends: [
|
|
|
22
22
|
"yojson"
|
|
23
23
|
"re" {>= "1.5.0"}
|
|
24
24
|
"ppx_yojson_conv_lib" {>= "v0.14"}
|
|
25
|
+
"dune-rpc"
|
|
26
|
+
"dyn"
|
|
27
|
+
"stdune"
|
|
28
|
+
"fiber" {>= "3.1.1"}
|
|
29
|
+
"xdg"
|
|
30
|
+
"ordering"
|
|
25
31
|
"dune-build-info"
|
|
26
32
|
"spawn"
|
|
33
|
+
"omd" {<= "1.3.1"}
|
|
34
|
+
"octavius" {>= "1.2.2"}
|
|
35
|
+
"uutf" {>= "1.0.2"}
|
|
27
36
|
"pp" {>= "1.1.2"}
|
|
28
37
|
"csexp" {>= "1.5"}
|
|
29
|
-
"
|
|
30
|
-
"ocamlformat-rpc-lib" {>= "0.18.0" & < "0.20.0"}
|
|
38
|
+
"ocamlformat-rpc-lib" {>= "0.21.0"}
|
|
31
39
|
"odoc" {with-doc}
|
|
32
|
-
"ocaml" {>= "4.
|
|
40
|
+
"ocaml" {>= "4.14" & < "4.15"}
|
|
33
41
|
]
|
|
34
42
|
dev-repo: "git+https://github.com/ocaml/ocaml-lsp.git"
|
|
35
43
|
build: [
|
|
@@ -45,10 +53,10 @@ build: [
|
|
|
45
53
|
]
|
|
46
54
|
url {
|
|
47
55
|
src:
|
|
48
|
-
"https://github.com/ocaml/ocaml-lsp/releases/download/1.
|
|
56
|
+
"https://github.com/ocaml/ocaml-lsp/releases/download/1.11.6/jsonrpc-1.11.6.tbz"
|
|
49
57
|
checksum: [
|
|
50
|
-
"sha256=
|
|
51
|
-
"sha512=
|
|
58
|
+
"sha256=50b546ced5332c4a038bcf68b65b7888cb8e61aebe102e8c80b23a4c5899bbbb"
|
|
59
|
+
"sha512=e7c6d07d3943b088198af383120f2e75478b84dd6077eafa0f01fc808072b9cebe667651d22e11592c1f134f5d289cccf7c58e1ad1aae6c0ce92a4eca32b1371"
|
|
52
60
|
]
|
|
53
61
|
}
|
|
54
|
-
x-commit-hash: "
|
|
62
|
+
x-commit-hash: "1c02a6b8c44f3858ad8c0b7c114d4f14fbf53f9c"
|
binaryen-archive/esy.lock/opam/{ocamlformat-rpc-lib.0.19.0 → ocamlformat-rpc-lib.0.22.4}/opam
RENAMED
|
@@ -9,9 +9,8 @@ homepage: "https://github.com/ocaml-ppx/ocamlformat"
|
|
|
9
9
|
bug-reports: "https://github.com/ocaml-ppx/ocamlformat/issues"
|
|
10
10
|
depends: [
|
|
11
11
|
"dune" {>= "2.8"}
|
|
12
|
-
"ocaml" {>= "4.08"
|
|
13
|
-
"csexp"
|
|
14
|
-
"sexplib0"
|
|
12
|
+
"ocaml" {>= "4.08"}
|
|
13
|
+
"csexp" {>= "1.4.0"}
|
|
15
14
|
"odoc" {with-doc}
|
|
16
15
|
]
|
|
17
16
|
build: [
|
|
@@ -31,10 +30,10 @@ build: [
|
|
|
31
30
|
dev-repo: "git+https://github.com/ocaml-ppx/ocamlformat.git"
|
|
32
31
|
url {
|
|
33
32
|
src:
|
|
34
|
-
"https://github.com/ocaml-ppx/ocamlformat/releases/download/0.
|
|
33
|
+
"https://github.com/ocaml-ppx/ocamlformat/releases/download/0.22.4/ocamlformat-0.22.4.tbz"
|
|
35
34
|
checksum: [
|
|
36
|
-
"sha256=
|
|
37
|
-
"sha512=
|
|
35
|
+
"sha256=eb54de2b81ac7cc2e68d81a7dc80b391a81b737fcfa3ef969ea91bdad6c9c060"
|
|
36
|
+
"sha512=2bdeb9abc5757176040f641b22c59ac2b038c3bc1c42ddf86422b80cb90278fbe8ca05d0f788be0375a632bb6584b8d165d07f9f84686c2174208a8c20324b13"
|
|
38
37
|
]
|
|
39
38
|
}
|
|
40
|
-
x-commit-hash: "
|
|
39
|
+
x-commit-hash: "838ba9fa00cc27703441220b9a5d3880b17430fb"
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
opam-version: "2.0"
|
|
2
|
+
maintainer: ["leo@lpw25.net"]
|
|
3
|
+
authors: ["Leo White <leo@lpw25.net>"]
|
|
4
|
+
license: "ISC"
|
|
5
|
+
homepage: "https://github.com/ocaml-doc/octavius"
|
|
6
|
+
doc: "http://ocaml-doc.github.io/octavius/"
|
|
7
|
+
bug-reports: "https://github.com/ocaml-doc/octavius/issues"
|
|
8
|
+
depends: [
|
|
9
|
+
"dune" {>= "1.11"}
|
|
10
|
+
"ocaml" {>= "4.03.0"}
|
|
11
|
+
]
|
|
12
|
+
build: [
|
|
13
|
+
["dune" "subst"] {dev}
|
|
14
|
+
[
|
|
15
|
+
"dune"
|
|
16
|
+
"build"
|
|
17
|
+
"-p"
|
|
18
|
+
name
|
|
19
|
+
"-j"
|
|
20
|
+
jobs
|
|
21
|
+
"@install"
|
|
22
|
+
"@runtest" {with-test}
|
|
23
|
+
"@doc" {with-doc}
|
|
24
|
+
]
|
|
25
|
+
]
|
|
26
|
+
dev-repo: "git+https://github.com/ocaml-doc/octavius.git"
|
|
27
|
+
|
|
28
|
+
synopsis: "Ocamldoc comment syntax parser"
|
|
29
|
+
description: "Octavius is a library to parse the `ocamldoc` comment syntax."
|
|
30
|
+
url {
|
|
31
|
+
src: "https://github.com/ocaml-doc/octavius/archive/v1.2.2.tar.gz"
|
|
32
|
+
checksum: "md5=72f9e1d996e6c5089fc513cc9218607b"
|
|
33
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
opam-version: "2.0"
|
|
2
|
+
maintainer: "Philippe Wang <philippe.wang@gmail.com>"
|
|
3
|
+
authors: [ "Philippe Wang <philippe.wang@gmail.com>" ]
|
|
4
|
+
license: "ISC"
|
|
5
|
+
homepage: "https://github.com/ocaml/omd"
|
|
6
|
+
dev-repo: "git+https://github.com/ocaml/omd.git"
|
|
7
|
+
bug-reports: "https://github.com/ocaml/omd/issues"
|
|
8
|
+
tags: [ "org:ocamllabs" "org:mirage" ]
|
|
9
|
+
build: [
|
|
10
|
+
["ocaml" "setup.ml" "-configure" "--prefix" prefix]
|
|
11
|
+
["ocaml" "setup.ml" "-build"]
|
|
12
|
+
["ocaml" "setup.ml" "-configure" "--enable-tests"] {with-test}
|
|
13
|
+
["ocaml" "setup.ml" "-build"] {with-test}
|
|
14
|
+
["ocaml" "setup.ml" "-test"] {with-test}
|
|
15
|
+
]
|
|
16
|
+
install: ["ocaml" "setup.ml" "-install"]
|
|
17
|
+
remove: [
|
|
18
|
+
["ocaml" "%{etc}%/omd/setup.ml" "-C" "%{etc}%/omd" "-uninstall"]
|
|
19
|
+
]
|
|
20
|
+
depends: [
|
|
21
|
+
"ocaml" {>= "4.01"}
|
|
22
|
+
"base-bigarray"
|
|
23
|
+
"base-bytes"
|
|
24
|
+
"ocamlbuild" {build}
|
|
25
|
+
"ocamlfind" {build & >= "1.5"}
|
|
26
|
+
]
|
|
27
|
+
synopsis: "A Markdown frontend in pure OCaml."
|
|
28
|
+
description: """
|
|
29
|
+
This Markdown library is implemented using only pure OCaml (including
|
|
30
|
+
I/O operations provided by the standard OCaml compiler distribution).
|
|
31
|
+
OMD is meant to be as faithful as possible to the original Markdown.
|
|
32
|
+
Additionally, OMD implements a few Github markdown features, an
|
|
33
|
+
extension mechanism, and some other features. Note that the opam
|
|
34
|
+
package installs both the OMD library and the command line tool `omd`."""
|
|
35
|
+
url {
|
|
36
|
+
src:
|
|
37
|
+
"https://github.com/Chris00/omd/releases/download/1.3.1/omd-1.3.1.tar.gz"
|
|
38
|
+
checksum: "md5=845fc38e86ec0e85721130f2dd044d00"
|
|
39
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
opam-version: "2.0"
|
|
2
|
+
synopsis: "Element ordering"
|
|
3
|
+
description: "Element ordering"
|
|
4
|
+
maintainer: ["Jane Street Group, LLC <opensource@janestreet.com>"]
|
|
5
|
+
authors: ["Jane Street Group, LLC <opensource@janestreet.com>"]
|
|
6
|
+
license: "MIT"
|
|
7
|
+
homepage: "https://github.com/ocaml/dune"
|
|
8
|
+
doc: "https://dune.readthedocs.io/"
|
|
9
|
+
bug-reports: "https://github.com/ocaml/dune/issues"
|
|
10
|
+
depends: [
|
|
11
|
+
"dune" {>= "3.0"}
|
|
12
|
+
"ocaml" {>= "4.08.0"}
|
|
13
|
+
"odoc" {with-doc}
|
|
14
|
+
]
|
|
15
|
+
dev-repo: "git+https://github.com/ocaml/dune.git"
|
|
16
|
+
build: [
|
|
17
|
+
["dune" "subst"] {dev}
|
|
18
|
+
["rm" "-rf" "vendor/csexp"]
|
|
19
|
+
["rm" "-rf" "vendor/pp"]
|
|
20
|
+
[
|
|
21
|
+
"dune"
|
|
22
|
+
"build"
|
|
23
|
+
"-p"
|
|
24
|
+
name
|
|
25
|
+
"-j"
|
|
26
|
+
jobs
|
|
27
|
+
"@install"
|
|
28
|
+
"@doc" {with-doc}
|
|
29
|
+
]
|
|
30
|
+
]
|
|
31
|
+
url {
|
|
32
|
+
src:
|
|
33
|
+
"https://github.com/ocaml/dune/releases/download/3.2.0/chrome-trace-3.2.0.tbz"
|
|
34
|
+
checksum: [
|
|
35
|
+
"sha256=bd1fbce6ae79ed1eb26fa89bb2e2e23978afceb3f53f5578cf1bdab08a1ad5bc"
|
|
36
|
+
"sha512=b99e82d7e2233a9dd8c1fae591a03f9470fcdf9750d0e428cee2d4c8bcfa4da1595e9e10af2f234279a6ca8a120a773b247d4761d2c39210fc6101076631690e"
|
|
37
|
+
]
|
|
38
|
+
}
|
|
39
|
+
x-commit-hash: "43af00f79e41ce9101d42b36dab13e1f68d49a7a"
|