From 175c122236e298e8c27c8bf70ca41cb0668ce0ab Mon Sep 17 00:00:00 2001 From: Yawar Amin Date: Sun, 29 Dec 2024 13:59:14 -0500 Subject: [PATCH 1/2] [new release] dream-html (2 packages) (3.9.5) CHANGES: See https://github.com/yawaramin/dream-html/tags --- packages/dream-html/dream-html.3.9.5/opam | 43 +++++++++++++++++++++++ packages/pure-html/pure-html.3.9.5/opam | 40 +++++++++++++++++++++ 2 files changed, 83 insertions(+) create mode 100644 packages/dream-html/dream-html.3.9.5/opam create mode 100644 packages/pure-html/pure-html.3.9.5/opam diff --git a/packages/dream-html/dream-html.3.9.5/opam b/packages/dream-html/dream-html.3.9.5/opam new file mode 100644 index 00000000000..c0324ec0a6e --- /dev/null +++ b/packages/dream-html/dream-html.3.9.5/opam @@ -0,0 +1,43 @@ +opam-version: "2.0" +synopsis: "HTML generator eDSL for Dream" +description: + "Write HTML directly in your OCaml source files with editor support." +maintainer: ["Yawar Amin "] +authors: ["Yawar Amin "] +license: "GPL-3.0-or-later" +tags: ["org:yawaramin"] +homepage: "https://github.com/yawaramin/dream-html" +doc: "https://yawaramin.github.io/dream-html/" +bug-reports: "https://github.com/yawaramin/dream-html/issues" +depends: [ + "dune" {>= "3.0"} + "ocaml" {>= "4.14.0"} + "ppxlib" {>= "0.33.0" & < "1.0.0"} + "pure-html" {= version} + "dream" {>= "1.0.0~alpha7"} + "odoc" {with-doc} +] +build: [ + ["dune" "subst"] {dev} + [ + "dune" + "build" + "-p" + name + "-j" + jobs + "@install" + "@runtest" {with-test} + "@doc" {with-doc} + ] +] +dev-repo: "git+https://github.com/yawaramin/dream-html.git" +url { + src: + "https://github.com/yawaramin/dream-html/releases/download/v3.9.5/dream-html-3.9.5.tbz" + checksum: [ + "sha256=61218e64561b5f2f74b866af750018717046fe333bf48c7fa4192d632e1250e7" + "sha512=a0f35373434c3e847b0a3c527e7539aa587ea7b1bf36e627a0a753a44932eabba0865ba179b27259b58a3503070c17080de37fc5d9d73931ac8e6bb3b59a073f" + ] +} +x-commit-hash: "7504c0d53d464812b3056071894e93bf04c49b09" diff --git a/packages/pure-html/pure-html.3.9.5/opam b/packages/pure-html/pure-html.3.9.5/opam new file mode 100644 index 00000000000..f3d7fcc3b4d --- /dev/null +++ b/packages/pure-html/pure-html.3.9.5/opam @@ -0,0 +1,40 @@ +opam-version: "2.0" +synopsis: "HTML generator eDSL" +description: + "Write HTML directly in your OCaml source files with editor support." +maintainer: ["Yawar Amin "] +authors: ["Yawar Amin "] +license: "GPL-3.0-or-later" +tags: ["org:yawaramin"] +homepage: "https://github.com/yawaramin/dream-html" +doc: "https://yawaramin.github.io/dream-html/" +bug-reports: "https://github.com/yawaramin/dream-html/issues" +depends: [ + "dune" {>= "3.0"} + "uri" {>= "4.4.0" & < "5.0.0"} + "odoc" {with-doc} +] +build: [ + ["dune" "subst"] {dev} + [ + "dune" + "build" + "-p" + name + "-j" + jobs + "@install" + "@runtest" {with-test} + "@doc" {with-doc} + ] +] +dev-repo: "git+https://github.com/yawaramin/dream-html.git" +url { + src: + "https://github.com/yawaramin/dream-html/releases/download/v3.9.5/dream-html-3.9.5.tbz" + checksum: [ + "sha256=61218e64561b5f2f74b866af750018717046fe333bf48c7fa4192d632e1250e7" + "sha512=a0f35373434c3e847b0a3c527e7539aa587ea7b1bf36e627a0a753a44932eabba0865ba179b27259b58a3503070c17080de37fc5d9d73931ac8e6bb3b59a073f" + ] +} +x-commit-hash: "7504c0d53d464812b3056071894e93bf04c49b09" From db06a38451497a69e56f83d52f7ed317cb347eeb Mon Sep 17 00:00:00 2001 From: Yawar Amin Date: Tue, 31 Dec 2024 17:58:50 -0500 Subject: [PATCH 2/2] Bump up dream lower bound --- packages/dream-html/dream-html.3.9.5/opam | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/dream-html/dream-html.3.9.5/opam b/packages/dream-html/dream-html.3.9.5/opam index c0324ec0a6e..69af31523b6 100644 --- a/packages/dream-html/dream-html.3.9.5/opam +++ b/packages/dream-html/dream-html.3.9.5/opam @@ -14,7 +14,7 @@ depends: [ "ocaml" {>= "4.14.0"} "ppxlib" {>= "0.33.0" & < "1.0.0"} "pure-html" {= version} - "dream" {>= "1.0.0~alpha7"} + "dream" {>= "1.0.0~alpha8"} "odoc" {with-doc} ] build: [