From 4aeb1da90d7e734f078d018ad31c1c0623a6bfed Mon Sep 17 00:00:00 2001 From: Hugo Heuzard Date: Tue, 4 Feb 2025 10:18:28 +0100 Subject: [PATCH] Misc: prepare the release --- dune-project | 2 +- js_of_ocaml-compiler.opam | 2 +- wasm_of_ocaml-compiler.opam | 3 +-- wasm_of_ocaml-compiler.opam.template | 13 +++++++++++++ 4 files changed, 16 insertions(+), 4 deletions(-) create mode 100644 wasm_of_ocaml-compiler.opam.template diff --git a/dune-project b/dune-project index 9a9aa2c405..d988d36b0c 100644 --- a/dune-project +++ b/dune-project @@ -29,7 +29,7 @@ menhir menhirLib menhirSdk - (yojson (>= 1.6))) + (yojson (>= 2.1))) (depopts ocamlfind) (conflicts diff --git a/js_of_ocaml-compiler.opam b/js_of_ocaml-compiler.opam index 53956ccb1e..b4fc20c5d1 100644 --- a/js_of_ocaml-compiler.opam +++ b/js_of_ocaml-compiler.opam @@ -24,7 +24,7 @@ depends: [ "menhir" "menhirLib" "menhirSdk" - "yojson" {>= "1.6"} + "yojson" {>= "2.1"} "odoc" {with-doc} ] depopts: ["ocamlfind"] diff --git a/wasm_of_ocaml-compiler.opam b/wasm_of_ocaml-compiler.opam index bcb3f21403..360b7e38d9 100644 --- a/wasm_of_ocaml-compiler.opam +++ b/wasm_of_ocaml-compiler.opam @@ -34,6 +34,7 @@ conflicts: [ "ocamlfind" {< "1.5.1"} "js_of_ocaml" {< "3.0"} ] +dev-repo: "git+https://github.com/ocsigen/js_of_ocaml.git" build: [ ["dune" "subst"] {dev} [ @@ -44,8 +45,6 @@ build: [ "-j" jobs "@install" - "@runtest" {with-test} "@doc" {with-doc} ] ] -dev-repo: "git+https://github.com/ocsigen/js_of_ocaml.git" diff --git a/wasm_of_ocaml-compiler.opam.template b/wasm_of_ocaml-compiler.opam.template new file mode 100644 index 0000000000..44877d421e --- /dev/null +++ b/wasm_of_ocaml-compiler.opam.template @@ -0,0 +1,13 @@ +build: [ + ["dune" "subst"] {dev} + [ + "dune" + "build" + "-p" + name + "-j" + jobs + "@install" + "@doc" {with-doc} + ] +]