Skip to content

Commit e14568b

Browse files
author
Hugo Heuzard
committed
[new release] js_of_ocaml, js_of_ocaml-tyxml, js_of_ocaml-toplevel, js_of_ocaml-ppx_deriving_json, js_of_ocaml-ppx, js_of_ocaml-lwt and js_of_ocaml-compiler (5.4.0)
CHANGES: ## Bug fixes * Runtime: Fix recursive modules on ocaml < 4.13 (ocsigen/js_of_ocaml#1485) * Runtime: fix hashing of NaN (ocsigen/js_of_ocaml#1475) * Runtime: float rounding should resolve tie away from zero (ocsigen/js_of_ocaml#1475) * Runtime: fix Gc.stat, Gc.quick_stat, Gc.get (ocsigen/js_of_ocaml#1475) * Compiler: fix some miscompilation, probably introduced in jsoo 5.0.0, revealed by OCaml 5.0
1 parent 6db7397 commit e14568b

File tree

7 files changed

+335
-0
lines changed
  • packages
    • js_of_ocaml-compiler/js_of_ocaml-compiler.5.4.0
    • js_of_ocaml-lwt/js_of_ocaml-lwt.5.4.0
    • js_of_ocaml-ppx_deriving_json/js_of_ocaml-ppx_deriving_json.5.4.0
    • js_of_ocaml-ppx/js_of_ocaml-ppx.5.4.0
    • js_of_ocaml-toplevel/js_of_ocaml-toplevel.5.4.0
    • js_of_ocaml-tyxml/js_of_ocaml-tyxml.5.4.0
    • js_of_ocaml/js_of_ocaml.5.4.0

7 files changed

+335
-0
lines changed
Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
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 <[email protected]>"]
6+
authors: ["Ocsigen team <[email protected]>"]
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/manual/overview"
11+
doc: "https://ocsigen.org/js_of_ocaml/latest/manual/overview"
12+
bug-reports: "https://github.com/ocsigen/js_of_ocaml/issues"
13+
depends: [
14+
"dune" {>= "3.7"}
15+
"ocaml" {>= "4.08" & < "5.2"}
16+
"num" {with-test}
17+
"ppx_expect" {>= "v0.14.2" & with-test}
18+
"ppxlib" {>= "0.15.0"}
19+
"re" {with-test}
20+
"cmdliner" {>= "1.1.0"}
21+
"sedlex" {>= "2.3"}
22+
"menhir"
23+
"menhirLib"
24+
"menhirSdk"
25+
"yojson"
26+
"odoc" {with-doc}
27+
]
28+
depopts: ["ocamlfind"]
29+
conflicts: [
30+
"ocamlfind" {< "1.5.1"}
31+
"js_of_ocaml" {< "3.0"}
32+
]
33+
dev-repo: "git+https://github.com/ocsigen/js_of_ocaml.git"
34+
build: [
35+
["dune" "subst"] {dev}
36+
[
37+
"dune"
38+
"build"
39+
"-p"
40+
name
41+
"-j"
42+
jobs
43+
"@install"
44+
"@doc" {with-doc}
45+
]
46+
]
47+
url {
48+
src:
49+
"https://github.com/ocsigen/js_of_ocaml/releases/download/5.4.0/js_of_ocaml-5.4.0.tbz"
50+
checksum: [
51+
"sha256=f1215de133867fefdb16e2798a225ee0446469a57462af0deebdd22d2a8d3b94"
52+
"sha512=610cd22818bc6f0a0163f0eec74f58338e18709a6101639f65e58241a9216ed286c3cb091b41e36a82c926de5f030d718a6e76a493e885e61456047a8da153c9"
53+
]
54+
}
55+
x-commit-hash: "705b9e39bfb6ab22afbb606dc85c81d1c30faff4"
Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
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 <[email protected]>"]
6+
authors: ["Ocsigen team <[email protected]>"]
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/manual/overview"
11+
doc: "https://ocsigen.org/js_of_ocaml/latest/manual/overview"
12+
bug-reports: "https://github.com/ocsigen/js_of_ocaml/issues"
13+
depends: [
14+
"dune" {>= "3.7"}
15+
"ocaml" {>= "4.08"}
16+
"js_of_ocaml" {= version}
17+
"js_of_ocaml-ppx" {= version}
18+
"lwt" {>= "2.4.4"}
19+
"num" {with-test}
20+
"ppx_expect" {>= "v0.14.2" & with-test}
21+
"ppxlib" {>= "0.22.0" & with-test}
22+
"re" {>= "1.9.0" & with-test}
23+
"odoc" {with-doc}
24+
]
25+
depopts: ["graphics" "lwt_log"]
26+
dev-repo: "git+https://github.com/ocsigen/js_of_ocaml.git"
27+
build: [
28+
["dune" "subst"] {dev}
29+
[
30+
"dune"
31+
"build"
32+
"-p"
33+
name
34+
"-j"
35+
jobs
36+
"@install"
37+
"@doc" {with-doc}
38+
]
39+
]
40+
url {
41+
src:
42+
"https://github.com/ocsigen/js_of_ocaml/releases/download/5.4.0/js_of_ocaml-5.4.0.tbz"
43+
checksum: [
44+
"sha256=f1215de133867fefdb16e2798a225ee0446469a57462af0deebdd22d2a8d3b94"
45+
"sha512=610cd22818bc6f0a0163f0eec74f58338e18709a6101639f65e58241a9216ed286c3cb091b41e36a82c926de5f030d718a6e76a493e885e61456047a8da153c9"
46+
]
47+
}
48+
x-commit-hash: "705b9e39bfb6ab22afbb606dc85c81d1c30faff4"
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
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 <[email protected]>"]
6+
authors: ["Ocsigen team <[email protected]>"]
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/manual/overview"
11+
doc: "https://ocsigen.org/js_of_ocaml/latest/manual/overview"
12+
bug-reports: "https://github.com/ocsigen/js_of_ocaml/issues"
13+
depends: [
14+
"dune" {>= "3.7"}
15+
"ocaml" {>= "4.08"}
16+
"js_of_ocaml" {= version}
17+
"ppxlib" {>= "0.15.0"}
18+
"num" {with-test}
19+
"ppx_expect" {>= "v0.14.2" & with-test}
20+
"re" {>= "1.9.0" & with-test}
21+
"odoc" {with-doc}
22+
]
23+
dev-repo: "git+https://github.com/ocsigen/js_of_ocaml.git"
24+
build: [
25+
["dune" "subst"] {dev}
26+
[
27+
"dune"
28+
"build"
29+
"-p"
30+
name
31+
"-j"
32+
jobs
33+
"@install"
34+
"@doc" {with-doc}
35+
]
36+
]
37+
url {
38+
src:
39+
"https://github.com/ocsigen/js_of_ocaml/releases/download/5.4.0/js_of_ocaml-5.4.0.tbz"
40+
checksum: [
41+
"sha256=f1215de133867fefdb16e2798a225ee0446469a57462af0deebdd22d2a8d3b94"
42+
"sha512=610cd22818bc6f0a0163f0eec74f58338e18709a6101639f65e58241a9216ed286c3cb091b41e36a82c926de5f030d718a6e76a493e885e61456047a8da153c9"
43+
]
44+
}
45+
x-commit-hash: "705b9e39bfb6ab22afbb606dc85c81d1c30faff4"
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
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 <[email protected]>"]
6+
authors: ["Ocsigen team <[email protected]>"]
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/manual/overview"
11+
doc: "https://ocsigen.org/js_of_ocaml/latest/manual/overview"
12+
bug-reports: "https://github.com/ocsigen/js_of_ocaml/issues"
13+
depends: [
14+
"dune" {>= "3.7"}
15+
"ocaml" {>= "4.08"}
16+
"js_of_ocaml" {= version}
17+
"ppxlib" {>= "0.15"}
18+
"num" {with-test}
19+
"ppx_expect" {>= "v0.14.2" & with-test}
20+
"re" {>= "1.9.0" & with-test}
21+
"odoc" {with-doc}
22+
]
23+
dev-repo: "git+https://github.com/ocsigen/js_of_ocaml.git"
24+
build: [
25+
["dune" "subst"] {dev}
26+
[
27+
"dune"
28+
"build"
29+
"-p"
30+
name
31+
"-j"
32+
jobs
33+
"@install"
34+
"@doc" {with-doc}
35+
]
36+
]
37+
url {
38+
src:
39+
"https://github.com/ocsigen/js_of_ocaml/releases/download/5.4.0/js_of_ocaml-5.4.0.tbz"
40+
checksum: [
41+
"sha256=f1215de133867fefdb16e2798a225ee0446469a57462af0deebdd22d2a8d3b94"
42+
"sha512=610cd22818bc6f0a0163f0eec74f58338e18709a6101639f65e58241a9216ed286c3cb091b41e36a82c926de5f030d718a6e76a493e885e61456047a8da153c9"
43+
]
44+
}
45+
x-commit-hash: "705b9e39bfb6ab22afbb606dc85c81d1c30faff4"
Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
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 <[email protected]>"]
6+
authors: ["Ocsigen team <[email protected]>"]
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/manual/overview"
11+
doc: "https://ocsigen.org/js_of_ocaml/latest/manual/overview"
12+
bug-reports: "https://github.com/ocsigen/js_of_ocaml/issues"
13+
depends: [
14+
"dune" {>= "3.7"}
15+
"ocaml" {>= "4.08"}
16+
"js_of_ocaml-compiler" {= version}
17+
"ocamlfind" {>= "1.5.1"}
18+
"cohttp-lwt-unix" {with-test}
19+
"graphics" {with-test}
20+
"num" {with-test}
21+
"ppx_expect" {>= "v0.14.2" & with-test}
22+
"ppxlib" {>= "0.15" & with-test}
23+
"re" {>= "1.9.0" & with-test}
24+
"odoc" {with-doc}
25+
]
26+
dev-repo: "git+https://github.com/ocsigen/js_of_ocaml.git"
27+
build: [
28+
["dune" "subst"] {dev}
29+
[
30+
"dune"
31+
"build"
32+
"-p"
33+
name
34+
"-j"
35+
jobs
36+
"@install"
37+
"@doc" {with-doc}
38+
]
39+
]
40+
url {
41+
src:
42+
"https://github.com/ocsigen/js_of_ocaml/releases/download/5.4.0/js_of_ocaml-5.4.0.tbz"
43+
checksum: [
44+
"sha256=f1215de133867fefdb16e2798a225ee0446469a57462af0deebdd22d2a8d3b94"
45+
"sha512=610cd22818bc6f0a0163f0eec74f58338e18709a6101639f65e58241a9216ed286c3cb091b41e36a82c926de5f030d718a6e76a493e885e61456047a8da153c9"
46+
]
47+
}
48+
x-commit-hash: "705b9e39bfb6ab22afbb606dc85c81d1c30faff4"
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
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 <[email protected]>"]
6+
authors: ["Ocsigen team <[email protected]>"]
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/manual/overview"
11+
doc: "https://ocsigen.org/js_of_ocaml/latest/manual/overview"
12+
bug-reports: "https://github.com/ocsigen/js_of_ocaml/issues"
13+
depends: [
14+
"dune" {>= "3.7"}
15+
"ocaml" {>= "4.08"}
16+
"js_of_ocaml" {= version}
17+
"js_of_ocaml-ppx" {= version}
18+
"react" {>= "1.2.1"}
19+
"reactiveData" {>= "0.2"}
20+
"tyxml" {>= "4.3"}
21+
"num" {with-test}
22+
"ppx_expect" {>= "v0.14.2" & with-test}
23+
"ppxlib" {>= "0.22.0" & with-test}
24+
"re" {>= "1.9.0" & with-test}
25+
"odoc" {with-doc}
26+
]
27+
dev-repo: "git+https://github.com/ocsigen/js_of_ocaml.git"
28+
build: [
29+
["dune" "subst"] {dev}
30+
[
31+
"dune"
32+
"build"
33+
"-p"
34+
name
35+
"-j"
36+
jobs
37+
"@install"
38+
"@doc" {with-doc}
39+
]
40+
]
41+
url {
42+
src:
43+
"https://github.com/ocsigen/js_of_ocaml/releases/download/5.4.0/js_of_ocaml-5.4.0.tbz"
44+
checksum: [
45+
"sha256=f1215de133867fefdb16e2798a225ee0446469a57462af0deebdd22d2a8d3b94"
46+
"sha512=610cd22818bc6f0a0163f0eec74f58338e18709a6101639f65e58241a9216ed286c3cb091b41e36a82c926de5f030d718a6e76a493e885e61456047a8da153c9"
47+
]
48+
}
49+
x-commit-hash: "705b9e39bfb6ab22afbb606dc85c81d1c30faff4"
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
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 <[email protected]>"]
6+
authors: ["Ocsigen team <[email protected]>"]
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/manual/overview"
11+
doc: "https://ocsigen.org/js_of_ocaml/latest/manual/overview"
12+
bug-reports: "https://github.com/ocsigen/js_of_ocaml/issues"
13+
depends: [
14+
"dune" {>= "3.7"}
15+
"ocaml" {>= "4.08"}
16+
"js_of_ocaml-compiler" {= version}
17+
"ppxlib" {>= "0.15"}
18+
"num" {with-test}
19+
"ppx_expect" {>= "v0.14.2" & with-test}
20+
"re" {>= "1.9.0" & with-test}
21+
"odoc" {with-doc}
22+
]
23+
dev-repo: "git+https://github.com/ocsigen/js_of_ocaml.git"
24+
build: [
25+
["dune" "subst"] {dev}
26+
[
27+
"dune"
28+
"build"
29+
"-p"
30+
name
31+
"-j"
32+
jobs
33+
"@install"
34+
"@doc" {with-doc}
35+
]
36+
]
37+
url {
38+
src:
39+
"https://github.com/ocsigen/js_of_ocaml/releases/download/5.4.0/js_of_ocaml-5.4.0.tbz"
40+
checksum: [
41+
"sha256=f1215de133867fefdb16e2798a225ee0446469a57462af0deebdd22d2a8d3b94"
42+
"sha512=610cd22818bc6f0a0163f0eec74f58338e18709a6101639f65e58241a9216ed286c3cb091b41e36a82c926de5f030d718a6e76a493e885e61456047a8da153c9"
43+
]
44+
}
45+
x-commit-hash: "705b9e39bfb6ab22afbb606dc85c81d1c30faff4"

0 commit comments

Comments
 (0)