@grain/binaryen.ml 0.35.0 → 0.37.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.
Files changed (66) hide show
  1. binaryen-archive/CHANGELOG.md +31 -0
  2. binaryen-archive/binaryen.opam +3 -3
  3. binaryen-archive/esy.lock/index.json +339 -462
  4. binaryen-archive/esy.lock/opam/base.v0.17.3/opam +1 -1
  5. binaryen-archive/esy.lock/opam/{chrome-trace.3.21.1 → chrome-trace.3.24.2}/opam +6 -8
  6. binaryen-archive/esy.lock/opam/{cmdliner.1.3.0 → cmdliner.2.1.1}/opam +26 -10
  7. binaryen-archive/esy.lock/opam/{dune-build-info.3.21.1 → dune-build-info.3.24.2}/opam +6 -8
  8. binaryen-archive/esy.lock/opam/{dune-configurator.3.21.1 → dune-configurator.3.24.2}/opam +6 -8
  9. binaryen-archive/esy.lock/opam/{dune-rpc.3.21.1 → dune-rpc.3.20.2}/opam +5 -5
  10. binaryen-archive/esy.lock/opam/{dune.3.21.1 → dune.3.24.2}/opam +13 -9
  11. binaryen-archive/esy.lock/opam/{dyn.3.21.1 → dyn.3.20.2}/opam +6 -6
  12. binaryen-archive/esy.lock/opam/fix.20250919/opam +1 -0
  13. binaryen-archive/esy.lock/opam/js_of_ocaml-compiler.6.4.1/opam +67 -0
  14. binaryen-archive/esy.lock/opam/ocaml-lsp-server.1.23.1/opam +2 -2
  15. binaryen-archive/esy.lock/opam/{ocaml-version.4.0.3 → ocaml-version.4.1.3}/opam +3 -3
  16. binaryen-archive/esy.lock/opam/{ocaml_intrinsics_kernel.v0.17.1 → ocaml_intrinsics_kernel.v0.17.2}/opam +3 -5
  17. binaryen-archive/esy.lock/opam/ocamlbuild.0.16.1/opam +1 -0
  18. binaryen-archive/esy.lock/opam/{ocamlc-loc.3.21.1 → ocamlc-loc.3.20.2}/opam +6 -6
  19. binaryen-archive/esy.lock/opam/ocamlfind.1.9.8/opam +2 -1
  20. binaryen-archive/esy.lock/opam/{ocamlformat-lib.0.27.0 → ocamlformat-lib.0.29.0}/opam +7 -6
  21. binaryen-archive/esy.lock/opam/{ocamlformat-rpc-lib.0.28.1 → ocamlformat-rpc-lib.0.29.0}/opam +4 -4
  22. binaryen-archive/esy.lock/opam/{ocamlformat.0.27.0 → ocamlformat.0.29.0}/opam +6 -5
  23. binaryen-archive/esy.lock/opam/{ocp-indent.1.7.0 → ocp-indent.1.9.0}/opam +10 -9
  24. binaryen-archive/esy.lock/opam/{ordering.3.21.1 → ordering.3.20.2}/opam +6 -6
  25. binaryen-archive/esy.lock/opam/{ppxlib.0.37.0 → ppxlib.0.39.0~5.6preview}/opam +12 -13
  26. binaryen-archive/esy.lock/opam/{stdune.3.21.1 → stdune.3.20.2}/opam +7 -9
  27. binaryen-archive/esy.lock/opam/{xdg.3.21.1 → xdg.3.24.2}/opam +6 -8
  28. binaryen-archive/package.json +9 -5
  29. binaryen-archive/src/dune +4 -1
  30. binaryen-archive/src/expression.c +345 -0
  31. binaryen-archive/src/expression.js +243 -11
  32. binaryen-archive/src/expression.ml +106 -0
  33. binaryen-archive/src/expression.mli +72 -0
  34. binaryen-archive/src/heap_type.c +19 -0
  35. binaryen-archive/src/heap_type.js +12 -0
  36. binaryen-archive/src/heap_type.ml +10 -1
  37. binaryen-archive/src/heap_type.mli +8 -1
  38. binaryen-archive/src/memory.c +6 -1
  39. binaryen-archive/src/memory.js +2 -2
  40. binaryen-archive/src/memory.ml +1 -1
  41. binaryen-archive/src/memory.mli +1 -1
  42. binaryen-archive/src/module.js +7 -20
  43. binaryen-archive/src/module.ml +9 -0
  44. binaryen-archive/src/module.mli +2 -0
  45. binaryen-archive/src/module_feature.c +12 -0
  46. binaryen-archive/src/module_feature.js +12 -0
  47. binaryen-archive/src/ocaml_helpers.c +9 -0
  48. binaryen-archive/src/ocaml_helpers.h +5 -0
  49. binaryen-archive/src/ocaml_helpers.js +11 -0
  50. binaryen-archive/src/passes.ml +13 -4
  51. binaryen-archive/src/passes.mli +14 -5
  52. binaryen-archive/src/type.c +5 -3
  53. binaryen-archive/src/type.js +2 -3
  54. binaryen-archive/src/type.ml +4 -1
  55. binaryen-archive/src/type.mli +1 -1
  56. binaryen-archive/src/type_builder.c +180 -0
  57. binaryen-archive/src/type_builder.js +116 -0
  58. binaryen-archive/src/type_builder.ml +67 -0
  59. binaryen-archive/src/type_builder.mli +28 -0
  60. binaryen-archive/test/test.expected +188 -25
  61. binaryen-archive/test/test.ml +131 -4
  62. binaryen-archive/esy.lock/opam/base-bytes.base/opam +0 -10
  63. binaryen-archive/esy.lock/opam/fs-io.3.21.1/opam +0 -41
  64. binaryen-archive/esy.lock/opam/js_of_ocaml-compiler.6.2.0/opam +0 -56
  65. binaryen-archive/esy.lock/opam/stdlib-shims.0.3.0/opam +0 -31
  66. binaryen-archive/esy.lock/opam/top-closure.3.21.1/opam +0 -40
@@ -16,7 +16,7 @@ depends: [
16
16
  "dune" {>= "3.11.0"}
17
17
  "dune-configurator"
18
18
  ]
19
- available: arch != "arm32" & arch != "x86_32"
19
+ available: arch != "x86_32"
20
20
  synopsis: "Full standard library replacement for OCaml"
21
21
  description: "
22
22
  Full standard library replacement for OCaml
@@ -9,16 +9,14 @@ homepage: "https://github.com/ocaml/dune"
9
9
  doc: "https://dune.readthedocs.io/"
10
10
  bug-reports: "https://github.com/ocaml/dune/issues"
11
11
  depends: [
12
- "dune" {>= "3.21"}
13
- "ocaml" {>= "4.08.0"}
12
+ "dune" {>= "3.24"}
13
+ "ocaml" {>= "4.14"}
14
14
  "odoc" {with-doc}
15
15
  ]
16
16
  dev-repo: "git+https://github.com/ocaml/dune.git"
17
17
  x-maintenance-intent: ["(latest)"]
18
18
  build: [
19
19
  ["dune" "subst"] {dev}
20
- ["rm" "-rf" "vendor/csexp"]
21
- ["rm" "-rf" "vendor/pp"]
22
20
  [
23
21
  "dune"
24
22
  "build"
@@ -32,10 +30,10 @@ build: [
32
30
  ]
33
31
  url {
34
32
  src:
35
- "https://github.com/ocaml/dune/releases/download/3.21.1/dune-3.21.1.tbz"
33
+ "https://github.com/ocaml/dune/releases/download/3.24.2/dune-3.24.2.tbz"
36
34
  checksum: [
37
- "sha256=84f7a82c6d80a7124f3847e9a489e80cfbeafb7bed3573ac01286ef56fd08d94"
38
- "sha512=d9fa44e24036d2593adfe59e52e0ad64f3e7e973d23f84af57fc79e38fa210630b0cb55590f314d6ef455333b96a8e0ce188c2720eaae44576222541ba78efb3"
35
+ "sha256=472798691b0216daf538709f0f4703b3617ef24ad0866c9096068baaba4d762a"
36
+ "sha512=13082a66a28e940d4b3c9f78b556f6c1455987cd522355ba4502e01e60a3d002d3101b51284726ae21aa87494efa2dc54d016173f05b616bbc5dad714d5714a3"
39
37
  ]
40
38
  }
41
- x-commit-hash: "0b5863d9be475453b3cc2bd321fde222af2544d4"
39
+ x-commit-hash: "ce734ac25ffb06994a4530426bb06ee8cda19e50"
@@ -6,16 +6,17 @@ for OCaml.
6
6
 
7
7
  It provides a simple and compositional mechanism to convert command
8
8
  line arguments to OCaml values and pass them to your functions. The
9
- module automatically handles syntax errors, help messages and UNIX man
10
- page generation. It supports programs with single or multiple commands
11
- and respects most of the [POSIX][1] and [GNU][2] conventions.
9
+ module automatically handles command line completion, syntax errors,
10
+ help messages and UNIX man page generation. It supports programs with
11
+ single or multiple commands and respects most of the [POSIX] and [GNU]
12
+ conventions.
12
13
 
13
14
  Cmdliner has no dependencies and is distributed under the ISC license.
14
15
 
15
- [1]: http://pubs.opengroup.org/onlinepubs/009695399/basedefs/xbd_chap12.html
16
- [2]: http://www.gnu.org/software/libc/manual/html_node/Argument-Syntax.html
16
+ Homepage: <http://erratique.ch/software/cmdliner>
17
17
 
18
- Home page: http://erratique.ch/software/cmdliner"""
18
+ [POSIX]: http://pubs.opengroup.org/onlinepubs/009695399/basedefs/xbd_chap12.html
19
+ [GNU]: http://www.gnu.org/software/libc/manual/html_node/Argument-Syntax.html"""
19
20
  maintainer: "Daniel Bünzli <daniel.buenzl i@erratique.ch>"
20
21
  authors: "The cmdliner programmers"
21
22
  license: "ISC"
@@ -28,13 +29,28 @@ depends: [
28
29
  ]
29
30
  build: [make "all" "PREFIX=%{prefix}%"]
30
31
  install: [
31
- [make "install" "LIBDIR=%{_:lib}%" "DOCDIR=%{_:doc}%"]
32
- [make "install-doc" "LIBDIR=%{_:lib}%" "DOCDIR=%{_:doc}%"]
32
+ [
33
+ make
34
+ "install"
35
+ "BINDIR=%{_:bin}%"
36
+ "LIBDIR=%{_:lib}%"
37
+ "DOCDIR=%{_:doc}%"
38
+ "SHAREDIR=%{share}%"
39
+ "MANDIR=%{man}%"
40
+ ]
41
+ [
42
+ make
43
+ "install-doc"
44
+ "LIBDIR=%{_:lib}%"
45
+ "DOCDIR=%{_:doc}%"
46
+ "SHAREDIR=%{share}%"
47
+ "MANDIR=%{man}%"
48
+ ]
33
49
  ]
34
50
  dev-repo: "git+https://erratique.ch/repos/cmdliner.git"
35
51
  url {
36
- src: "https://erratique.ch/software/cmdliner/releases/cmdliner-1.3.0.tbz"
52
+ src: "https://erratique.ch/software/cmdliner/releases/cmdliner-2.1.1.tbz"
37
53
  checksum:
38
- "sha512=4c46bc334444ff772637deae2f5ba03645d7a1b7db523470a1246acfce79b971c764d964cbb02388639b3161b279700d9ade95da550446fb32aa4849c8a8f283"
54
+ "sha512=cdc338ae2e56a72b7c75dae9564c57cca4e1fbfac454aabbf8303fcb612346284aede5984dfde7e8a7a496cc870bbd57ddf28cab3a38667279b31657f85c15dd"
39
55
  }
40
56
  x-maintenance-intent: ["(latest)"]
@@ -15,16 +15,14 @@ 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" {>= "3.21"}
19
- "ocaml" {>= "4.08"}
18
+ "dune" {>= "3.24"}
19
+ "ocaml" {>= "4.14"}
20
20
  "odoc" {with-doc}
21
21
  ]
22
22
  dev-repo: "git+https://github.com/ocaml/dune.git"
23
23
  x-maintenance-intent: ["(latest)"]
24
24
  build: [
25
25
  ["dune" "subst"] {dev}
26
- ["rm" "-rf" "vendor/csexp"]
27
- ["rm" "-rf" "vendor/pp"]
28
26
  [
29
27
  "dune"
30
28
  "build"
@@ -38,10 +36,10 @@ build: [
38
36
  ]
39
37
  url {
40
38
  src:
41
- "https://github.com/ocaml/dune/releases/download/3.21.1/dune-3.21.1.tbz"
39
+ "https://github.com/ocaml/dune/releases/download/3.24.2/dune-3.24.2.tbz"
42
40
  checksum: [
43
- "sha256=84f7a82c6d80a7124f3847e9a489e80cfbeafb7bed3573ac01286ef56fd08d94"
44
- "sha512=d9fa44e24036d2593adfe59e52e0ad64f3e7e973d23f84af57fc79e38fa210630b0cb55590f314d6ef455333b96a8e0ce188c2720eaae44576222541ba78efb3"
41
+ "sha256=472798691b0216daf538709f0f4703b3617ef24ad0866c9096068baaba4d762a"
42
+ "sha512=13082a66a28e940d4b3c9f78b556f6c1455987cd522355ba4502e01e60a3d002d3101b51284726ae21aa87494efa2dc54d016173f05b616bbc5dad714d5714a3"
45
43
  ]
46
44
  }
47
- x-commit-hash: "0b5863d9be475453b3cc2bd321fde222af2544d4"
45
+ x-commit-hash: "ce734ac25ffb06994a4530426bb06ee8cda19e50"
@@ -17,8 +17,8 @@ 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" {>= "3.21"}
21
- "ocaml" {>= "4.08.0"}
20
+ "dune" {>= "3.24"}
21
+ "ocaml" {>= "4.14"}
22
22
  "base-unix"
23
23
  "csexp" {>= "1.5.0"}
24
24
  "odoc" {with-doc}
@@ -27,8 +27,6 @@ dev-repo: "git+https://github.com/ocaml/dune.git"
27
27
  x-maintenance-intent: ["(latest)"]
28
28
  build: [
29
29
  ["dune" "subst"] {dev}
30
- ["rm" "-rf" "vendor/csexp"]
31
- ["rm" "-rf" "vendor/pp"]
32
30
  [
33
31
  "dune"
34
32
  "build"
@@ -42,10 +40,10 @@ build: [
42
40
  ]
43
41
  url {
44
42
  src:
45
- "https://github.com/ocaml/dune/releases/download/3.21.1/dune-3.21.1.tbz"
43
+ "https://github.com/ocaml/dune/releases/download/3.24.2/dune-3.24.2.tbz"
46
44
  checksum: [
47
- "sha256=84f7a82c6d80a7124f3847e9a489e80cfbeafb7bed3573ac01286ef56fd08d94"
48
- "sha512=d9fa44e24036d2593adfe59e52e0ad64f3e7e973d23f84af57fc79e38fa210630b0cb55590f314d6ef455333b96a8e0ce188c2720eaae44576222541ba78efb3"
45
+ "sha256=472798691b0216daf538709f0f4703b3617ef24ad0866c9096068baaba4d762a"
46
+ "sha512=13082a66a28e940d4b3c9f78b556f6c1455987cd522355ba4502e01e60a3d002d3101b51284726ae21aa87494efa2dc54d016173f05b616bbc5dad714d5714a3"
49
47
  ]
50
48
  }
51
- x-commit-hash: "0b5863d9be475453b3cc2bd321fde222af2544d4"
49
+ x-commit-hash: "ce734ac25ffb06994a4530426bb06ee8cda19e50"
@@ -8,7 +8,7 @@ homepage: "https://github.com/ocaml/dune"
8
8
  doc: "https://dune.readthedocs.io/"
9
9
  bug-reports: "https://github.com/ocaml/dune/issues"
10
10
  depends: [
11
- "dune" {>= "3.21"}
11
+ "dune" {>= "3.20"}
12
12
  "ocamlc-loc"
13
13
  "csexp"
14
14
  "ordering"
@@ -37,10 +37,10 @@ build: [
37
37
  ]
38
38
  url {
39
39
  src:
40
- "https://github.com/ocaml/dune/releases/download/3.21.1/dune-3.21.1.tbz"
40
+ "https://github.com/ocaml/dune/releases/download/3.20.2/dune-3.20.2.tbz"
41
41
  checksum: [
42
- "sha256=84f7a82c6d80a7124f3847e9a489e80cfbeafb7bed3573ac01286ef56fd08d94"
43
- "sha512=d9fa44e24036d2593adfe59e52e0ad64f3e7e973d23f84af57fc79e38fa210630b0cb55590f314d6ef455333b96a8e0ce188c2720eaae44576222541ba78efb3"
42
+ "sha256=b1a86b2d60bdb4a8b9bb6861bdf2f9f28a6e7cb5d833ce81afecceb9ef9ca549"
43
+ "sha512=ed14df9163e487d4ae7d0a2427eaab7823ef1f0ef2d93f0b783e6f163bbd5b44ba73f055d60b84e76f476fe11d38e794013628a1da776d9ec13cca9666e7b7ff"
44
44
  ]
45
45
  }
46
- x-commit-hash: "0b5863d9be475453b3cc2bd321fde222af2544d4"
46
+ x-commit-hash: "1e54fd3f450aae7fb41ffb6b7c8b7a5aed754777"
@@ -43,33 +43,37 @@ build: [
43
43
  depends: [
44
44
  # Please keep the lower bound in sync with .github/workflows/workflow.yml,
45
45
  # dune-project and min_ocaml_version in bootstrap.ml
46
- "ocaml" {>= "4.08"}
46
+ ("ocaml" {>= "4.14"} | ("ocaml" {>= "4.02" & < "4.14~~"} & "ocamlfind-secondary" & "ocaml-secondary-compiler" {>= "4.14"}))
47
47
  "base-unix"
48
48
  "base-threads"
49
49
  "lwt" { with-dev-setup & os != "win32" }
50
50
  "cinaps" { with-dev-setup }
51
51
  "csexp" { with-dev-setup & >= "1.3.0" }
52
- "js_of_ocaml" { with-dev-setup & >= "6.1.0" & os != "win32" }
53
- "js_of_ocaml-compiler" { with-dev-setup & >= "6.1.0" & os != "win32" }
52
+ "js_of_ocaml" { with-dev-setup & >= "6.1.0" & < "6.4" & os != "win32" }
53
+ "js_of_ocaml-compiler" { with-dev-setup & >= "6.1.0" & < "6.4" & os != "win32" }
54
54
  "mdx" { with-dev-setup & >= "2.3.0" & os != "win32" }
55
55
  "menhir" { with-dev-setup & os != "win32" }
56
56
  "ocamlfind" { with-dev-setup & os != "win32" }
57
- "odoc" { with-dev-setup & >= "2.4.0" & os != "win32" }
57
+ "odoc" { with-dev-setup & >= "3.2.0" & os != "win32" }
58
58
  "ppx_expect" { with-dev-setup & >= "v0.17" & os != "win32" }
59
+ "ppx_optcomp" {with-dev-setup}
59
60
  "spawn" { with-dev-setup }
60
61
  "ppx_inline_test" { with-dev-setup & os != "win32" }
61
62
  "ppxlib" { with-dev-setup & >= "0.37.0" & os != "win32" }
62
63
  "ctypes" { with-dev-setup & os != "win32" }
63
64
  "utop" { with-dev-setup & >= "2.6.0" & os != "win32" }
64
- "melange" { with-dev-setup & >= "5.1.0-51" & os != "win32" }
65
+ "melange" { with-dev-setup & >= "5.1.0-51" & < "7.0" & os != "win32" }
65
66
  "uutf" { with-dev-setup }
67
+ # the rev store negotiation test launches a git daemon, needs it to be
68
+ # installed on some distributions
69
+ "conf-git-daemon" { with-test }
66
70
  ]
67
71
  url {
68
72
  src:
69
- "https://github.com/ocaml/dune/releases/download/3.21.1/dune-3.21.1.tbz"
73
+ "https://github.com/ocaml/dune/releases/download/3.24.2/dune-3.24.2.tbz"
70
74
  checksum: [
71
- "sha256=84f7a82c6d80a7124f3847e9a489e80cfbeafb7bed3573ac01286ef56fd08d94"
72
- "sha512=d9fa44e24036d2593adfe59e52e0ad64f3e7e973d23f84af57fc79e38fa210630b0cb55590f314d6ef455333b96a8e0ce188c2720eaae44576222541ba78efb3"
75
+ "sha256=472798691b0216daf538709f0f4703b3617ef24ad0866c9096068baaba4d762a"
76
+ "sha512=13082a66a28e940d4b3c9f78b556f6c1455987cd522355ba4502e01e60a3d002d3101b51284726ae21aa87494efa2dc54d016173f05b616bbc5dad714d5714a3"
73
77
  ]
74
78
  }
75
- x-commit-hash: "0b5863d9be475453b3cc2bd321fde222af2544d4"
79
+ x-commit-hash: "ce734ac25ffb06994a4530426bb06ee8cda19e50"
@@ -8,14 +8,14 @@ homepage: "https://github.com/ocaml/dune"
8
8
  doc: "https://dune.readthedocs.io/"
9
9
  bug-reports: "https://github.com/ocaml/dune/issues"
10
10
  depends: [
11
- "dune" {>= "3.21"}
11
+ "dune" {>= "3.20"}
12
12
  "ocaml" {>= "4.08.0"}
13
13
  "ordering" {= version}
14
14
  "pp" {>= "1.1.0"}
15
15
  "odoc" {with-doc}
16
16
  ]
17
17
  dev-repo: "git+https://github.com/ocaml/dune.git"
18
- x-maintenance-intent: ["none"]
18
+ x-maintenance-intent: ["(latest)"]
19
19
  build: [
20
20
  ["dune" "subst"] {dev}
21
21
  ["rm" "-rf" "vendor/csexp"]
@@ -33,10 +33,10 @@ build: [
33
33
  ]
34
34
  url {
35
35
  src:
36
- "https://github.com/ocaml/dune/releases/download/3.21.1/dune-3.21.1.tbz"
36
+ "https://github.com/ocaml/dune/releases/download/3.20.2/dune-3.20.2.tbz"
37
37
  checksum: [
38
- "sha256=84f7a82c6d80a7124f3847e9a489e80cfbeafb7bed3573ac01286ef56fd08d94"
39
- "sha512=d9fa44e24036d2593adfe59e52e0ad64f3e7e973d23f84af57fc79e38fa210630b0cb55590f314d6ef455333b96a8e0ce188c2720eaae44576222541ba78efb3"
38
+ "sha256=b1a86b2d60bdb4a8b9bb6861bdf2f9f28a6e7cb5d833ce81afecceb9ef9ca549"
39
+ "sha512=ed14df9163e487d4ae7d0a2427eaab7823ef1f0ef2d93f0b783e6f163bbd5b44ba73f055d60b84e76f476fe11d38e794013628a1da776d9ec13cca9666e7b7ff"
40
40
  ]
41
41
  }
42
- x-commit-hash: "0b5863d9be475453b3cc2bd321fde222af2544d4"
42
+ x-commit-hash: "1e54fd3f450aae7fb41ffb6b7c8b7a5aed754777"
@@ -16,6 +16,7 @@ depends: [
16
16
  "dune" { >= "1.3" }
17
17
  ]
18
18
  synopsis: "Algorithmic building blocks for memoization, recursion, and more"
19
+ tags: ["algorithms"]
19
20
  url {
20
21
  src:
21
22
  "https://gitlab.inria.fr/fpottier/fix/-/archive/20250919/archive.tar.gz"
@@ -0,0 +1,67 @@
1
+ opam-version: "2.0"
2
+ synopsis: "Compiler from OCaml bytecode to JavaScript"
3
+ description:
4
+ "Js_of_ocaml is a compiler from OCaml bytecode to JavaScript. It makes it possible to run pure OCaml programs in JavaScript environment like browsers and Node.js"
5
+ maintainer: ["Ocsigen team <dev@ocsigen.org>"]
6
+ authors: ["Ocsigen team <dev@ocsigen.org>"]
7
+ license: [
8
+ "GPL-2.0-or-later" "LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception"
9
+ ]
10
+ homepage: "https://ocsigen.org/js_of_ocaml/latest/js_of_ocaml/overview.html"
11
+ doc: "https://ocsigen.org/js_of_ocaml/latest/js_of_ocaml/overview.html"
12
+ bug-reports: "https://github.com/ocsigen/js_of_ocaml/issues"
13
+ depends: [
14
+ "dune" {>= "3.20"}
15
+ "ocaml" {>= "4.13" & < "5.6"}
16
+ "num" {with-test}
17
+ "ppx_expect" {>= "v0.16.1" & with-test}
18
+ "ppxlib" {>= "0.33"}
19
+ "ocaml-compiler-libs" {>= "v0.12.4"}
20
+ "re" {with-test}
21
+ "cmdliner" {>= "2.0"}
22
+ "sedlex" {>= "3.3"}
23
+ "qcheck" {with-test}
24
+ "menhir" {>= "20180523"}
25
+ "menhirLib"
26
+ "menhirSdk"
27
+ "yojson" {>= "2.1"}
28
+ "odoc" {with-doc}
29
+ ]
30
+ depopts: ["ocamlfind"]
31
+ conflicts: [
32
+ "ocamlfind" {< "1.5.1"}
33
+ "js_of_ocaml" {< "3.0"}
34
+ ]
35
+ dev-repo: "git+https://github.com/ocsigen/js_of_ocaml.git"
36
+ x-maintenance-intent: ["(latest)"]
37
+ build: [
38
+ [
39
+ "dune"
40
+ "build"
41
+ "-p"
42
+ name
43
+ "-j"
44
+ jobs
45
+ "@install"
46
+ "@doc" {with-doc}
47
+ ]
48
+ ["cmdliner" "install" "tool-support"
49
+ "--update-opam-install=%{_:name}%.install"
50
+ "_build/install/default/bin/js_of_ocaml" {os-family != "windows"}
51
+ "_build/install/default/bin/js_of_ocaml.exe:js_of_ocaml" {os-family = "windows"}
52
+ "_build/cmdliner-install"]
53
+ ["cmdliner" "install" "tool-support"
54
+ "--update-opam-install=%{_:name}%.install"
55
+ "_build/install/default/bin/jsoo_minify" {os-family != "windows"}
56
+ "_build/install/default/bin/jsoo_minify.exe:jsoo_minify" {os-family = "windows"}
57
+ "_build/cmdliner-install"]
58
+ ]
59
+ url {
60
+ src:
61
+ "https://github.com/ocsigen/js_of_ocaml/releases/download/6.4.1/js_of_ocaml-6.4.1.tbz"
62
+ checksum: [
63
+ "sha256=e59bbffcaefaba3191620556514b7f53bb3249e3f881a070d72724234dffd819"
64
+ "sha512=bb470f316f9c81a3b2b8dedd0b0f18f8e06beb48dd70df1d9f846de90ffab439cab5ef7a93a8166af0998068b06097e8319bc0d9f4f23a7159b0de8b3b515746"
65
+ ]
66
+ }
67
+ x-commit-hash: "02ac3ba6a21f6f58b0a4c69b799ac6f43023d674"
@@ -25,10 +25,10 @@ depends: [
25
25
  "jsonrpc" {= version}
26
26
  "re" {>= "1.5.0"}
27
27
  "ppx_yojson_conv_lib" {>= "v0.14"}
28
- "dune-rpc" {>= "3.4.0"}
28
+ "dune-rpc" {>= "3.4.0" & < "3.22"}
29
29
  "chrome-trace" {>= "3.3.0"}
30
30
  "dyn"
31
- "stdune"
31
+ "stdune" {< "3.22"}
32
32
  "fiber" {>= "3.1.1" & < "4.0.0"}
33
33
  "ocaml" {>= "5.3" & < "5.4"}
34
34
  "xdg"
@@ -45,10 +45,10 @@ build: [
45
45
  dev-repo: "git+https://github.com/ocurrent/ocaml-version.git"
46
46
  url {
47
47
  src:
48
- "https://github.com/ocurrent/ocaml-version/releases/download/v4.0.3/ocaml-version-4.0.3.tbz"
48
+ "https://github.com/ocurrent/ocaml-version/releases/download/v4.1.3/ocaml-version-4.1.3.tbz"
49
49
  checksum: [
50
- "md5=6a8cce4bd5b60149ca4302ce587bff94"
51
- "sha512=199533647516b1bea700046437c3b1f0d605e593c4bfd3b694f16944a6bfdba44297a45d696da1742c57bc621ecaafa2237cb3dc379f66f7fa2e1b2d93743022"
50
+ "md5=867c6b0abd51a8a04781a495db97f2ea"
51
+ "sha512=654c76169f8bccfa370a782684f5df753d5bfb37e23cb2f011e2591ea0b6bda1544d8454e9c6c2a74695892bb5a9155466e5d546763c0b07e18a61b3c061130c"
52
52
  ]
53
53
  }
54
54
  x-maintenance-intent: ["(latest)"]
@@ -22,11 +22,9 @@ Provides functions to invoke amd64 instructions (such as cmov, min/maxsd, popcnt
22
22
  "
23
23
  url {
24
24
  src:
25
- "https://github.com/janestreet/ocaml_intrinsics_kernel/archive/refs/tags/v0.17.1.tar.gz"
25
+ "https://github.com/janestreet/ocaml_intrinsics_kernel/archive/refs/tags/v0.17.2.tar.gz"
26
26
  checksum: [
27
- "md5=56ed7d0b0331e5bcfa4e016515c0267d"
28
- "sha512=21e596d6407a620866cee7cab47ef1a9446d6a733b4994e809ea5566d5fa956682a5c6a6190ffb0ed48458abd658301944ed10c4389d91ecb8df677a5f87f2ab"
27
+ "md5=94d4734d6844417053e93ef0e3b26e33"
28
+ "sha512=21397340656d9fbe8dc079d5772bb4ca3e9c8c9c235fe2bddbbabe75fff7d38afc95f10d16f71ad0ab67f9e6fcb4ce08bece8b56cb2b37904c7210c45aa44bb5"
29
29
  ]
30
30
  }
31
- x-maintenance-intent: ["(latest)"]
32
-
@@ -28,6 +28,7 @@ build: [
28
28
  conflicts: [
29
29
  "base-ocamlbuild"
30
30
  "ocamlfind" {< "1.6.2"}
31
+ "relocatable"
31
32
  ]
32
33
 
33
34
  depends: [
@@ -9,7 +9,7 @@ homepage: "https://github.com/ocaml/dune"
9
9
  doc: "https://dune.readthedocs.io/"
10
10
  bug-reports: "https://github.com/ocaml/dune/issues"
11
11
  depends: [
12
- "dune" {>= "3.21"}
12
+ "dune" {>= "3.20"}
13
13
  "ocaml" {>= "4.08.0"}
14
14
  "dyn" {= version}
15
15
  "odoc" {with-doc}
@@ -18,7 +18,7 @@ conflicts: [
18
18
  "ocaml-lsp-server" {< "1.15.0"}
19
19
  ]
20
20
  dev-repo: "git+https://github.com/ocaml/dune.git"
21
- x-maintenance-intent: ["none"]
21
+ x-maintenance-intent: ["(latest)"]
22
22
  build: [
23
23
  ["dune" "subst"] {dev}
24
24
  ["rm" "-rf" "vendor/csexp"]
@@ -36,10 +36,10 @@ build: [
36
36
  ]
37
37
  url {
38
38
  src:
39
- "https://github.com/ocaml/dune/releases/download/3.21.1/dune-3.21.1.tbz"
39
+ "https://github.com/ocaml/dune/releases/download/3.20.2/dune-3.20.2.tbz"
40
40
  checksum: [
41
- "sha256=84f7a82c6d80a7124f3847e9a489e80cfbeafb7bed3573ac01286ef56fd08d94"
42
- "sha512=d9fa44e24036d2593adfe59e52e0ad64f3e7e973d23f84af57fc79e38fa210630b0cb55590f314d6ef455333b96a8e0ce188c2720eaae44576222541ba78efb3"
41
+ "sha256=b1a86b2d60bdb4a8b9bb6861bdf2f9f28a6e7cb5d833ce81afecceb9ef9ca549"
42
+ "sha512=ed14df9163e487d4ae7d0a2427eaab7823ef1f0ef2d93f0b783e6f163bbd5b44ba73f055d60b84e76f476fe11d38e794013628a1da776d9ec13cca9666e7b7ff"
43
43
  ]
44
44
  }
45
- x-commit-hash: "0b5863d9be475453b3cc2bd321fde222af2544d4"
45
+ x-commit-hash: "1e54fd3f450aae7fb41ffb6b7c8b7a5aed754777"
@@ -12,9 +12,10 @@ license: "MIT"
12
12
  homepage: "http://projects.camlcity.org/projects/findlib.html"
13
13
  bug-reports: "https://github.com/ocaml/ocamlfind/issues"
14
14
  depends: [
15
- "ocaml" {>= "3.08.0" & (os != "cygwin" & os-distribution != "msys2" | < "5.0")}
15
+ "ocaml" {>= "3.08.0" & (os != "cygwin" & os-distribution != "msys2" | < "5.0") & < "5.5.0~"}
16
16
  ]
17
17
  depopts: ["graphics"]
18
+ conflicts: ["relocatable"]
18
19
  build: [
19
20
  [
20
21
  "./configure"
@@ -17,11 +17,12 @@ authors: [
17
17
  homepage: "https://github.com/ocaml-ppx/ocamlformat"
18
18
  bug-reports: "https://github.com/ocaml-ppx/ocamlformat/issues"
19
19
  depends: [
20
- "ocaml" {>= "4.08"}
20
+ "ocaml" {>= "4.14"}
21
21
  "alcotest" {with-test & >= "1.3.0"}
22
22
  "base" {>= "v0.12.0"}
23
- "cmdliner" {>= "1.1.0" & < "2.0.0"}
23
+ "cmdliner" {>= "1.1.0"}
24
24
  "dune" {>= "2.8"}
25
+ "dune" {< "3.22" & with-test}
25
26
  "dune-build-info"
26
27
  "either"
27
28
  "fix"
@@ -59,10 +60,10 @@ dev-repo: "git+https://github.com/ocaml-ppx/ocamlformat.git"
59
60
  license: ["MIT" "LGPL-2.1-only WITH OCaml-LGPL-linking-exception"]
60
61
  url {
61
62
  src:
62
- "https://github.com/ocaml-ppx/ocamlformat/releases/download/0.27.0/ocamlformat-0.27.0.tbz"
63
+ "https://github.com/ocaml-ppx/ocamlformat/releases/download/0.29.0/ocamlformat-0.29.0.tbz"
63
64
  checksum: [
64
- "sha256=ddbf484c076d08f99400ee84b790ec231f5c8fcbd5d3324a6400d5388e846d15"
65
- "sha512=4d2a8965a7b7ad45f8f4e76c01cf38bfa68462b07dfa7bdb2db23bd3e3017b214e6780f036679fa8595dde4167a01d957e3af8837274320449014e306773f917"
65
+ "sha256=dac77f0a957ae782bb4b869b07b9803a872a34f8c1eae8901b42d21b623c9db5"
66
+ "sha512=b4ae6fda3c28e91dc12411b577df7b216e9b1afe5887bcb9e89c158e1313dc92183c29ffb256f47f5c9384af3ac8c505ec76849b26ae950b82c9b4c21a460819"
66
67
  ]
67
68
  }
68
- x-commit-hash: "5bac2e7f71d9b0a06bd1908dda9b13da1649eee1"
69
+ x-commit-hash: "195e470387ecdcfb0f9ce309b0d8d17807bde25d"
@@ -40,10 +40,10 @@ build: [
40
40
  dev-repo: "git+https://github.com/ocaml-ppx/ocamlformat.git"
41
41
  url {
42
42
  src:
43
- "https://github.com/ocaml-ppx/ocamlformat/releases/download/0.28.1/ocamlformat-0.28.1.tbz"
43
+ "https://github.com/ocaml-ppx/ocamlformat/releases/download/0.29.0/ocamlformat-0.29.0.tbz"
44
44
  checksum: [
45
- "sha256=70bda037d0bed961ed91bdb5198b2eeef542444750a8b015d80ccb94b3ff41fb"
46
- "sha512=8de0517165c6f0cadcedcce66e57cb723956768a8068abd062243abb08fabf292283d0d284be230aa5647d0883a4dc7f28fcf1b70338a2b0c9b17a5bed1bbb71"
45
+ "sha256=dac77f0a957ae782bb4b869b07b9803a872a34f8c1eae8901b42d21b623c9db5"
46
+ "sha512=b4ae6fda3c28e91dc12411b577df7b216e9b1afe5887bcb9e89c158e1313dc92183c29ffb256f47f5c9384af3ac8c505ec76849b26ae950b82c9b4c21a460819"
47
47
  ]
48
48
  }
49
- x-commit-hash: "809492a6044557239ed1e1c2f78eec602f068ea4"
49
+ x-commit-hash: "195e470387ecdcfb0f9ce309b0d8d17807bde25d"
@@ -22,10 +22,11 @@ authors: [
22
22
  homepage: "https://github.com/ocaml-ppx/ocamlformat"
23
23
  bug-reports: "https://github.com/ocaml-ppx/ocamlformat/issues"
24
24
  depends: [
25
- "ocaml" {>= "4.08" & < "5.4"}
25
+ "ocaml" {>= "4.08"}
26
26
  "cmdliner" {with-test = "false" & >= "1.1.0" | with-test & >= "1.2.0"}
27
27
  "csexp" {>= "1.4.0"}
28
28
  "dune" {>= "2.8"}
29
+ "dune" {< "3.22" & with-test}
29
30
  "ocamlformat-lib" {= version}
30
31
  "ocamlformat-rpc-lib" {with-test & = version}
31
32
  "re" {>= "1.10.3"}
@@ -50,10 +51,10 @@ dev-repo: "git+https://github.com/ocaml-ppx/ocamlformat.git"
50
51
  license: ["MIT" "LGPL-2.1-only WITH OCaml-LGPL-linking-exception"]
51
52
  url {
52
53
  src:
53
- "https://github.com/ocaml-ppx/ocamlformat/releases/download/0.27.0/ocamlformat-0.27.0.tbz"
54
+ "https://github.com/ocaml-ppx/ocamlformat/releases/download/0.29.0/ocamlformat-0.29.0.tbz"
54
55
  checksum: [
55
- "sha256=ddbf484c076d08f99400ee84b790ec231f5c8fcbd5d3324a6400d5388e846d15"
56
- "sha512=4d2a8965a7b7ad45f8f4e76c01cf38bfa68462b07dfa7bdb2db23bd3e3017b214e6780f036679fa8595dde4167a01d957e3af8837274320449014e306773f917"
56
+ "sha256=dac77f0a957ae782bb4b869b07b9803a872a34f8c1eae8901b42d21b623c9db5"
57
+ "sha512=b4ae6fda3c28e91dc12411b577df7b216e9b1afe5887bcb9e89c158e1313dc92183c29ffb256f47f5c9384af3ac8c505ec76849b26ae950b82c9b4c21a460819"
57
58
  ]
58
59
  }
59
- x-commit-hash: "5bac2e7f71d9b0a06bd1908dda9b13da1649eee1"
60
+ x-commit-hash: "195e470387ecdcfb0f9ce309b0d8d17807bde25d"
@@ -20,21 +20,20 @@ authors: [
20
20
  ]
21
21
  homepage: "http://www.typerex.org/ocp-indent.html"
22
22
  bug-reports: "https://github.com/OCamlPro/ocp-indent/issues"
23
- license: "LGPL-2.0-or-later"
23
+ license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception"
24
24
  tags: ["org:ocamlpro" "org:typerex"]
25
25
  dev-repo: "git+https://github.com/OCamlPro/ocp-indent.git"
26
26
  build: [
27
27
  ["dune" "build" "-p" name "-j" jobs]
28
28
  ]
29
29
  run-test: [
30
- ["dune" "runtest" "-p" name]
30
+ ["dune" "runtest" "-p" name "-j" jobs]
31
31
  ]
32
32
  depends: [
33
- "ocaml"
34
- "dune"
35
- "cmdliner" {>= "1.0.0" & < "2.0.0"}
33
+ "ocaml" {>= "4.08"}
34
+ "dune" {>= "3.20"}
35
+ "cmdliner" {>= "1.3.0"}
36
36
  "ocamlfind"
37
- "base-bytes"
38
37
  ]
39
38
  post-messages: [
40
39
  "This package requires additional configuration for use in editors. Install package 'user-setup', or manually:
@@ -49,9 +48,11 @@ post-messages: [
49
48
  {success & !user-setup:installed}
50
49
  ]
51
50
  url {
52
- src: "https://github.com/OCamlPro/ocp-indent/archive/1.7.0.tar.gz"
51
+ src:
52
+ "https://github.com/OCamlPro/ocp-indent/releases/download/1.9.0/ocp-indent-1.9.0.tbz"
53
53
  checksum: [
54
- "md5=3bc327e38f453f38494098725c97d2cb"
55
- "sha512=5b28ae8695612c95cb0f5748de9b9f01d8ef4ad18b31340dc526ccae5fb1b6ee7e12024ff1beb817a43796183a83bca144222ca2d77d7750f2ff56108b5fa350"
54
+ "sha256=da4ff552f9fc230d7c07f64a8ef89295907bf8d3c581132f05dcf0dd87a172b3"
55
+ "sha512=d734487162ab1373110a4c4d4f83128b21c39ec2d6e6cd1f9708178b190553cf60faebf62483113ceed490d1b9948c6241e798ea81ee266f3ed7fd8113552684"
56
56
  ]
57
57
  }
58
+ x-commit-hash: "8aeb5cc580106366050de0068c11e20f8a947acc"
@@ -8,12 +8,12 @@ homepage: "https://github.com/ocaml/dune"
8
8
  doc: "https://dune.readthedocs.io/"
9
9
  bug-reports: "https://github.com/ocaml/dune/issues"
10
10
  depends: [
11
- "dune" {>= "3.21"}
11
+ "dune" {>= "3.20"}
12
12
  "ocaml" {>= "4.08.0"}
13
13
  "odoc" {with-doc}
14
14
  ]
15
15
  dev-repo: "git+https://github.com/ocaml/dune.git"
16
- x-maintenance-intent: ["none"]
16
+ x-maintenance-intent: ["(latest)"]
17
17
  build: [
18
18
  ["dune" "subst"] {dev}
19
19
  ["rm" "-rf" "vendor/csexp"]
@@ -31,10 +31,10 @@ build: [
31
31
  ]
32
32
  url {
33
33
  src:
34
- "https://github.com/ocaml/dune/releases/download/3.21.1/dune-3.21.1.tbz"
34
+ "https://github.com/ocaml/dune/releases/download/3.20.2/dune-3.20.2.tbz"
35
35
  checksum: [
36
- "sha256=84f7a82c6d80a7124f3847e9a489e80cfbeafb7bed3573ac01286ef56fd08d94"
37
- "sha512=d9fa44e24036d2593adfe59e52e0ad64f3e7e973d23f84af57fc79e38fa210630b0cb55590f314d6ef455333b96a8e0ce188c2720eaae44576222541ba78efb3"
36
+ "sha256=b1a86b2d60bdb4a8b9bb6861bdf2f9f28a6e7cb5d833ce81afecceb9ef9ca549"
37
+ "sha512=ed14df9163e487d4ae7d0a2427eaab7823ef1f0ef2d93f0b783e6f163bbd5b44ba73f055d60b84e76f476fe11d38e794013628a1da776d9ec13cca9666e7b7ff"
38
38
  ]
39
39
  }
40
- x-commit-hash: "0b5863d9be475453b3cc2bd321fde222af2544d4"
40
+ x-commit-hash: "1e54fd3f450aae7fb41ffb6b7c8b7a5aed754777"