From 8965be0448d2eb507add00fc3c1b0c52ab4bcb60 Mon Sep 17 00:00:00 2001 From: xvw Date: Sun, 20 Oct 2024 19:49:13 +0200 Subject: [PATCH] [new release] yocaml (12 packages) (2.0.1) CHANGES: #### yocaml - Fix Table of contents computation when the first index is lower than followers by [xvw](https://github.com/xvw) - Remove `charset` of the computed `meta` (since it does not follow the form `name => content`) by [xvw](https://github.com/xvw) - Move some modules (`Datetime` and `Toc`) at the Toplevel of `Yocaml` by [xvw](https://github.com/xvw) --- packages/yocaml/yocaml.2.0.1/opam | 48 +++++++++++++++++++ .../yocaml_cmarkit/yocaml_cmarkit.2.0.1/opam | 41 ++++++++++++++++ packages/yocaml_eio/yocaml_eio.2.0.1/opam | 43 +++++++++++++++++ packages/yocaml_git/yocaml_git.2.0.1/opam | 47 ++++++++++++++++++ .../yocaml_jingoo/yocaml_jingoo.2.0.1/opam | 40 ++++++++++++++++ .../yocaml_mustache.2.0.1/opam | 40 ++++++++++++++++ packages/yocaml_omd/yocaml_omd.2.0.1/opam | 41 ++++++++++++++++ packages/yocaml_otoml/yocaml_otoml.2.0.1/opam | 40 ++++++++++++++++ .../yocaml_runtime/yocaml_runtime.2.0.1/opam | 44 +++++++++++++++++ .../yocaml_syndication.2.0.1/opam | 43 +++++++++++++++++ packages/yocaml_unix/yocaml_unix.2.0.1/opam | 41 ++++++++++++++++ packages/yocaml_yaml/yocaml_yaml.2.0.1/opam | 40 ++++++++++++++++ 12 files changed, 508 insertions(+) create mode 100644 packages/yocaml/yocaml.2.0.1/opam create mode 100644 packages/yocaml_cmarkit/yocaml_cmarkit.2.0.1/opam create mode 100644 packages/yocaml_eio/yocaml_eio.2.0.1/opam create mode 100644 packages/yocaml_git/yocaml_git.2.0.1/opam create mode 100644 packages/yocaml_jingoo/yocaml_jingoo.2.0.1/opam create mode 100644 packages/yocaml_mustache/yocaml_mustache.2.0.1/opam create mode 100644 packages/yocaml_omd/yocaml_omd.2.0.1/opam create mode 100644 packages/yocaml_otoml/yocaml_otoml.2.0.1/opam create mode 100644 packages/yocaml_runtime/yocaml_runtime.2.0.1/opam create mode 100644 packages/yocaml_syndication/yocaml_syndication.2.0.1/opam create mode 100644 packages/yocaml_unix/yocaml_unix.2.0.1/opam create mode 100644 packages/yocaml_yaml/yocaml_yaml.2.0.1/opam diff --git a/packages/yocaml/yocaml.2.0.1/opam b/packages/yocaml/yocaml.2.0.1/opam new file mode 100644 index 00000000000..b4c34310094 --- /dev/null +++ b/packages/yocaml/yocaml.2.0.1/opam @@ -0,0 +1,48 @@ +opam-version: "2.0" +synopsis: "Core engine of the YOCaml Static Site Generator" +description: "YOCaml is a build system dedicated to generate static document" +maintainer: ["The XHTMLBoy "] +authors: ["The XHTMLBoy "] +license: "GPL-3.0-or-later" +homepage: "https://github.com/xhtmlboi/yocaml" +bug-reports: "https://github.com/xhtmlboi/yocaml/issues" +depends: [ + "ocaml" {>= "5.1.1" & < "5.3"} + "dune" {>= "3.14" & >= "3.0.0"} + "odoc" {with-doc} + "sherlodoc" {with-doc} + "fmt" {with-test} + "alcotest" {with-test & >= "1.3.0"} + "qcheck" {with-test} + "qcheck-alcotest" {with-test} + "ppx_expect" + "mdx" {with-test & = "2.4.1"} + "ocamlformat" {with-dev-setup} + "ocp-indent" {with-dev-setup} + "merlin" {with-dev-setup} + "utop" {with-dev-setup} +] +build: [ + ["dune" "subst"] {dev} + [ + "dune" + "build" + "-p" + name + "-j" + jobs + "@install" + "@runtest" {with-test} + "@doc" {with-doc} + ] +] +dev-repo: "git+https://github.com/xhtmlboi/yocaml.git" +url { + src: + "https://github.com/xhtmlboi/yocaml/releases/download/v2.0.1/yocaml-2.0.1.tbz" + checksum: [ + "sha256=cde46c80549a7d585281fcfd1ac30e9fc04137f48512744bc6fcbde449cf265c" + "sha512=ca8eaa42c6edee34e433093e18a8b66e4cf3b937f5c65c0eb50a53cc59fea260b9929ce25231fe60dafb69d469bde474ae86450addc9e6844031329ff28c7e7e" + ] +} +x-commit-hash: "54aedd7b6f0874ff549dc323aa12015a0915380a" diff --git a/packages/yocaml_cmarkit/yocaml_cmarkit.2.0.1/opam b/packages/yocaml_cmarkit/yocaml_cmarkit.2.0.1/opam new file mode 100644 index 00000000000..34186bff8c4 --- /dev/null +++ b/packages/yocaml_cmarkit/yocaml_cmarkit.2.0.1/opam @@ -0,0 +1,41 @@ +opam-version: "2.0" +synopsis: + "Yocaml plugin for using Markdown (via Cmarkit package) as a Markup language" +maintainer: ["The XHTMLBoy "] +authors: ["The XHTMLBoy "] +license: "GPL-3.0-or-later" +homepage: "https://github.com/xhtmlboi/yocaml" +bug-reports: "https://github.com/xhtmlboi/yocaml/issues" +depends: [ + "ocaml" {>= "5.1.1"} + "dune" {>= "3.14" & >= "3.0.0"} + "ppx_expect" + "mdx" {with-test & = "2.4.1"} + "yocaml" {= version} + "cmarkit" + "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/xhtmlboi/yocaml.git" +url { + src: + "https://github.com/xhtmlboi/yocaml/releases/download/v2.0.1/yocaml-2.0.1.tbz" + checksum: [ + "sha256=cde46c80549a7d585281fcfd1ac30e9fc04137f48512744bc6fcbde449cf265c" + "sha512=ca8eaa42c6edee34e433093e18a8b66e4cf3b937f5c65c0eb50a53cc59fea260b9929ce25231fe60dafb69d469bde474ae86450addc9e6844031329ff28c7e7e" + ] +} +x-commit-hash: "54aedd7b6f0874ff549dc323aa12015a0915380a" diff --git a/packages/yocaml_eio/yocaml_eio.2.0.1/opam b/packages/yocaml_eio/yocaml_eio.2.0.1/opam new file mode 100644 index 00000000000..f4475870471 --- /dev/null +++ b/packages/yocaml_eio/yocaml_eio.2.0.1/opam @@ -0,0 +1,43 @@ +opam-version: "2.0" +synopsis: "The Eio runtime YOCaml" +maintainer: ["The XHTMLBoy "] +authors: ["The XHTMLBoy "] +license: "GPL-3.0-or-later" +homepage: "https://github.com/xhtmlboi/yocaml" +bug-reports: "https://github.com/xhtmlboi/yocaml/issues" +depends: [ + "ocaml" {>= "5.1.1"} + "dune" {>= "3.14" & >= "3.0.0"} + "ppx_expect" + "mdx" {with-test & = "2.4.1"} + "yocaml" {= version} + "yocaml_runtime" {= version} + "eio" {= "1.1"} + "eio_main" {= "1.1"} + "cohttp-eio" {= "6.0.0~beta2"} + "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/xhtmlboi/yocaml.git" +url { + src: + "https://github.com/xhtmlboi/yocaml/releases/download/v2.0.1/yocaml-2.0.1.tbz" + checksum: [ + "sha256=cde46c80549a7d585281fcfd1ac30e9fc04137f48512744bc6fcbde449cf265c" + "sha512=ca8eaa42c6edee34e433093e18a8b66e4cf3b937f5c65c0eb50a53cc59fea260b9929ce25231fe60dafb69d469bde474ae86450addc9e6844031329ff28c7e7e" + ] +} +x-commit-hash: "54aedd7b6f0874ff549dc323aa12015a0915380a" diff --git a/packages/yocaml_git/yocaml_git.2.0.1/opam b/packages/yocaml_git/yocaml_git.2.0.1/opam new file mode 100644 index 00000000000..52e4fc820c3 --- /dev/null +++ b/packages/yocaml_git/yocaml_git.2.0.1/opam @@ -0,0 +1,47 @@ +opam-version: "2.0" +synopsis: + "Yocaml plugins for generating Yocaml program into a Git repository" +maintainer: ["The XHTMLBoy "] +authors: ["The XHTMLBoy "] +license: "GPL-3.0-or-later" +homepage: "https://github.com/xhtmlboi/yocaml" +bug-reports: "https://github.com/xhtmlboi/yocaml/issues" +depends: [ + "ocaml" {>= "5.1.1"} + "dune" {>= "3.14" & >= "3.0.0"} + "ppx_expect" + "mdx" {with-test & = "2.4.1"} + "lwt" {>= "5.7.0"} + "mimic" {>= "0.0.9"} + "cstruct" {>= "6.2.0"} + "git-kv" {>= "0.0.5"} + "git-unix" {>= "3.16.1"} + "mirage-clock" {>= "4.2.0"} + "yocaml" {= version} + "yocaml_runtime" {= version} + "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/xhtmlboi/yocaml.git" +url { + src: + "https://github.com/xhtmlboi/yocaml/releases/download/v2.0.1/yocaml-2.0.1.tbz" + checksum: [ + "sha256=cde46c80549a7d585281fcfd1ac30e9fc04137f48512744bc6fcbde449cf265c" + "sha512=ca8eaa42c6edee34e433093e18a8b66e4cf3b937f5c65c0eb50a53cc59fea260b9929ce25231fe60dafb69d469bde474ae86450addc9e6844031329ff28c7e7e" + ] +} +x-commit-hash: "54aedd7b6f0874ff549dc323aa12015a0915380a" diff --git a/packages/yocaml_jingoo/yocaml_jingoo.2.0.1/opam b/packages/yocaml_jingoo/yocaml_jingoo.2.0.1/opam new file mode 100644 index 00000000000..e30eac4d1f2 --- /dev/null +++ b/packages/yocaml_jingoo/yocaml_jingoo.2.0.1/opam @@ -0,0 +1,40 @@ +opam-version: "2.0" +synopsis: "Yocaml plugin for using Jingoo as a template language" +maintainer: ["The XHTMLBoy "] +authors: ["The XHTMLBoy "] +license: "GPL-3.0-or-later" +homepage: "https://github.com/xhtmlboi/yocaml" +bug-reports: "https://github.com/xhtmlboi/yocaml/issues" +depends: [ + "ocaml" {>= "5.1.1"} + "dune" {>= "3.14" & >= "3.0.0"} + "ppx_expect" + "mdx" {with-test & = "2.4.1"} + "yocaml" {= version} + "jingoo" {>= "1.5.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/xhtmlboi/yocaml.git" +url { + src: + "https://github.com/xhtmlboi/yocaml/releases/download/v2.0.1/yocaml-2.0.1.tbz" + checksum: [ + "sha256=cde46c80549a7d585281fcfd1ac30e9fc04137f48512744bc6fcbde449cf265c" + "sha512=ca8eaa42c6edee34e433093e18a8b66e4cf3b937f5c65c0eb50a53cc59fea260b9929ce25231fe60dafb69d469bde474ae86450addc9e6844031329ff28c7e7e" + ] +} +x-commit-hash: "54aedd7b6f0874ff549dc323aa12015a0915380a" diff --git a/packages/yocaml_mustache/yocaml_mustache.2.0.1/opam b/packages/yocaml_mustache/yocaml_mustache.2.0.1/opam new file mode 100644 index 00000000000..75365065412 --- /dev/null +++ b/packages/yocaml_mustache/yocaml_mustache.2.0.1/opam @@ -0,0 +1,40 @@ +opam-version: "2.0" +synopsis: "Yocaml plugin for using Mustache as a template language" +maintainer: ["The XHTMLBoy "] +authors: ["The XHTMLBoy "] +license: "GPL-3.0-or-later" +homepage: "https://github.com/xhtmlboi/yocaml" +bug-reports: "https://github.com/xhtmlboi/yocaml/issues" +depends: [ + "ocaml" {>= "5.1.1"} + "dune" {>= "3.14" & >= "3.0.0"} + "ppx_expect" + "mdx" {with-test & = "2.4.1"} + "yocaml" {= version} + "mustache" {= "3.3.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/xhtmlboi/yocaml.git" +url { + src: + "https://github.com/xhtmlboi/yocaml/releases/download/v2.0.1/yocaml-2.0.1.tbz" + checksum: [ + "sha256=cde46c80549a7d585281fcfd1ac30e9fc04137f48512744bc6fcbde449cf265c" + "sha512=ca8eaa42c6edee34e433093e18a8b66e4cf3b937f5c65c0eb50a53cc59fea260b9929ce25231fe60dafb69d469bde474ae86450addc9e6844031329ff28c7e7e" + ] +} +x-commit-hash: "54aedd7b6f0874ff549dc323aa12015a0915380a" diff --git a/packages/yocaml_omd/yocaml_omd.2.0.1/opam b/packages/yocaml_omd/yocaml_omd.2.0.1/opam new file mode 100644 index 00000000000..54b721b24b5 --- /dev/null +++ b/packages/yocaml_omd/yocaml_omd.2.0.1/opam @@ -0,0 +1,41 @@ +opam-version: "2.0" +synopsis: + "Yocaml plugin for using Markdown (via OMD package) as a Markup language" +maintainer: ["The XHTMLBoy "] +authors: ["The XHTMLBoy "] +license: "GPL-3.0-or-later" +homepage: "https://github.com/xhtmlboi/yocaml" +bug-reports: "https://github.com/xhtmlboi/yocaml/issues" +depends: [ + "ocaml" {>= "5.1.1"} + "dune" {>= "3.14" & >= "3.0.0"} + "ppx_expect" + "mdx" {with-test & = "2.4.1"} + "yocaml" {= version} + "omd" {>= "2.0.0~alpha4"} + "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/xhtmlboi/yocaml.git" +url { + src: + "https://github.com/xhtmlboi/yocaml/releases/download/v2.0.1/yocaml-2.0.1.tbz" + checksum: [ + "sha256=cde46c80549a7d585281fcfd1ac30e9fc04137f48512744bc6fcbde449cf265c" + "sha512=ca8eaa42c6edee34e433093e18a8b66e4cf3b937f5c65c0eb50a53cc59fea260b9929ce25231fe60dafb69d469bde474ae86450addc9e6844031329ff28c7e7e" + ] +} +x-commit-hash: "54aedd7b6f0874ff549dc323aa12015a0915380a" diff --git a/packages/yocaml_otoml/yocaml_otoml.2.0.1/opam b/packages/yocaml_otoml/yocaml_otoml.2.0.1/opam new file mode 100644 index 00000000000..84ffb9415ce --- /dev/null +++ b/packages/yocaml_otoml/yocaml_otoml.2.0.1/opam @@ -0,0 +1,40 @@ +opam-version: "2.0" +synopsis: "Yocaml plugin for dealing with TOML as metadata provider" +maintainer: ["The XHTMLBoy "] +authors: ["The XHTMLBoy "] +license: "GPL-3.0-or-later" +homepage: "https://github.com/xhtmlboi/yocaml" +bug-reports: "https://github.com/xhtmlboi/yocaml/issues" +depends: [ + "ocaml" {>= "5.1.1"} + "dune" {>= "3.14" & >= "3.0.0"} + "ppx_expect" + "mdx" {with-test & = "2.4.1"} + "yocaml" {= version} + "otoml" {>= "1.0.5"} + "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/xhtmlboi/yocaml.git" +url { + src: + "https://github.com/xhtmlboi/yocaml/releases/download/v2.0.1/yocaml-2.0.1.tbz" + checksum: [ + "sha256=cde46c80549a7d585281fcfd1ac30e9fc04137f48512744bc6fcbde449cf265c" + "sha512=ca8eaa42c6edee34e433093e18a8b66e4cf3b937f5c65c0eb50a53cc59fea260b9929ce25231fe60dafb69d469bde474ae86450addc9e6844031329ff28c7e7e" + ] +} +x-commit-hash: "54aedd7b6f0874ff549dc323aa12015a0915380a" diff --git a/packages/yocaml_runtime/yocaml_runtime.2.0.1/opam b/packages/yocaml_runtime/yocaml_runtime.2.0.1/opam new file mode 100644 index 00000000000..cb5f03b7b57 --- /dev/null +++ b/packages/yocaml_runtime/yocaml_runtime.2.0.1/opam @@ -0,0 +1,44 @@ +opam-version: "2.0" +synopsis: "Tool for describing runtimes (using Logs and Digestif)" +maintainer: ["The XHTMLBoy "] +authors: ["The XHTMLBoy "] +license: "GPL-3.0-or-later" +homepage: "https://github.com/xhtmlboi/yocaml" +bug-reports: "https://github.com/xhtmlboi/yocaml/issues" +depends: [ + "ocaml" {>= "5.1.1"} + "dune" {>= "3.14" & >= "3.0.0"} + "ppx_expect" + "mdx" {with-test & = "2.4.1"} + "yocaml" {= version} + "cohttp" {>= "5.3.11"} + "magic-mime" {>= "1.3.1"} + "logs" {>= "0.7.0"} + "fmt" {>= "0.9.0"} + "digestif" {>= "1.2.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/xhtmlboi/yocaml.git" +url { + src: + "https://github.com/xhtmlboi/yocaml/releases/download/v2.0.1/yocaml-2.0.1.tbz" + checksum: [ + "sha256=cde46c80549a7d585281fcfd1ac30e9fc04137f48512744bc6fcbde449cf265c" + "sha512=ca8eaa42c6edee34e433093e18a8b66e4cf3b937f5c65c0eb50a53cc59fea260b9929ce25231fe60dafb69d469bde474ae86450addc9e6844031329ff28c7e7e" + ] +} +x-commit-hash: "54aedd7b6f0874ff549dc323aa12015a0915380a" diff --git a/packages/yocaml_syndication/yocaml_syndication.2.0.1/opam b/packages/yocaml_syndication/yocaml_syndication.2.0.1/opam new file mode 100644 index 00000000000..8222f70d875 --- /dev/null +++ b/packages/yocaml_syndication/yocaml_syndication.2.0.1/opam @@ -0,0 +1,43 @@ +opam-version: "2.0" +synopsis: "Yocaml plugin for dealing with RSS and Atom feed" +maintainer: ["The XHTMLBoy "] +authors: ["The XHTMLBoy "] +license: "GPL-3.0-or-later" +homepage: "https://github.com/xhtmlboi/yocaml" +bug-reports: "https://github.com/xhtmlboi/yocaml/issues" +depends: [ + "ocaml" {>= "5.1.1"} + "dune" {>= "3.14" & >= "3.0.0"} + "yocaml" {= version} + "fmt" {with-test} + "alcotest" {with-test & >= "1.3.0"} + "qcheck" {with-test} + "qcheck-alcotest" {with-test} + "ppx_expect" + "mdx" {with-test & = "2.4.1"} + "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/xhtmlboi/yocaml.git" +url { + src: + "https://github.com/xhtmlboi/yocaml/releases/download/v2.0.1/yocaml-2.0.1.tbz" + checksum: [ + "sha256=cde46c80549a7d585281fcfd1ac30e9fc04137f48512744bc6fcbde449cf265c" + "sha512=ca8eaa42c6edee34e433093e18a8b66e4cf3b937f5c65c0eb50a53cc59fea260b9929ce25231fe60dafb69d469bde474ae86450addc9e6844031329ff28c7e7e" + ] +} +x-commit-hash: "54aedd7b6f0874ff549dc323aa12015a0915380a" diff --git a/packages/yocaml_unix/yocaml_unix.2.0.1/opam b/packages/yocaml_unix/yocaml_unix.2.0.1/opam new file mode 100644 index 00000000000..876c96931c1 --- /dev/null +++ b/packages/yocaml_unix/yocaml_unix.2.0.1/opam @@ -0,0 +1,41 @@ +opam-version: "2.0" +synopsis: "The Unix runtime for YOCaml" +maintainer: ["The XHTMLBoy "] +authors: ["The XHTMLBoy "] +license: "GPL-3.0-or-later" +homepage: "https://github.com/xhtmlboi/yocaml" +bug-reports: "https://github.com/xhtmlboi/yocaml/issues" +depends: [ + "ocaml" {>= "5.1.1"} + "dune" {>= "3.14" & >= "3.0.0"} + "ppx_expect" + "mdx" {with-test & = "2.4.1"} + "httpcats" {>= "0.0.1"} + "yocaml" {= version} + "yocaml_runtime" {= version} + "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/xhtmlboi/yocaml.git" +url { + src: + "https://github.com/xhtmlboi/yocaml/releases/download/v2.0.1/yocaml-2.0.1.tbz" + checksum: [ + "sha256=cde46c80549a7d585281fcfd1ac30e9fc04137f48512744bc6fcbde449cf265c" + "sha512=ca8eaa42c6edee34e433093e18a8b66e4cf3b937f5c65c0eb50a53cc59fea260b9929ce25231fe60dafb69d469bde474ae86450addc9e6844031329ff28c7e7e" + ] +} +x-commit-hash: "54aedd7b6f0874ff549dc323aa12015a0915380a" diff --git a/packages/yocaml_yaml/yocaml_yaml.2.0.1/opam b/packages/yocaml_yaml/yocaml_yaml.2.0.1/opam new file mode 100644 index 00000000000..11d37e2dfb4 --- /dev/null +++ b/packages/yocaml_yaml/yocaml_yaml.2.0.1/opam @@ -0,0 +1,40 @@ +opam-version: "2.0" +synopsis: "Yocaml plugin for dealing with Yaml as metadata provider" +maintainer: ["The XHTMLBoy "] +authors: ["The XHTMLBoy "] +license: "GPL-3.0-or-later" +homepage: "https://github.com/xhtmlboi/yocaml" +bug-reports: "https://github.com/xhtmlboi/yocaml/issues" +depends: [ + "ocaml" {>= "5.1.1"} + "dune" {>= "3.14" & >= "3.0.0"} + "ppx_expect" + "mdx" {with-test & = "2.4.1"} + "yocaml" {= version} + "yaml" {>= "3.2.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/xhtmlboi/yocaml.git" +url { + src: + "https://github.com/xhtmlboi/yocaml/releases/download/v2.0.1/yocaml-2.0.1.tbz" + checksum: [ + "sha256=cde46c80549a7d585281fcfd1ac30e9fc04137f48512744bc6fcbde449cf265c" + "sha512=ca8eaa42c6edee34e433093e18a8b66e4cf3b937f5c65c0eb50a53cc59fea260b9929ce25231fe60dafb69d469bde474ae86450addc9e6844031329ff28c7e7e" + ] +} +x-commit-hash: "54aedd7b6f0874ff549dc323aa12015a0915380a"