diff --git a/packages/odoc-driver/odoc-driver.3.0.0/opam b/packages/odoc-driver/odoc-driver.3.0.0/opam new file mode 100644 index 000000000000..d7edb3b1682a --- /dev/null +++ b/packages/odoc-driver/odoc-driver.3.0.0/opam @@ -0,0 +1,76 @@ +opam-version: "2.0" +homepage: "https://github.com/ocaml/odoc" +doc: "https://ocaml.github.io/odoc/" +bug-reports: "https://github.com/ocaml/odoc/issues" +license: "ISC" + +maintainer: [ + "Daniel Bünzli " + "Jon Ludlam " + "Jules Aguillon " + "Paul-Elliot Anglès d'Auriac " +] +authors: [ + "Anton Bachin " + "Daniel Bünzli " + "David Sheets " + "Jon Ludlam " + "Jules Aguillon " + "Leo White " + "Lubega Simon " + "Paul-Elliot Anglès d'Auriac " + "Thomas Refis " +] +dev-repo: "git+https://github.com/ocaml/odoc.git" + +synopsis: "OCaml Documentation Generator - Driver" +description: """ +The driver is a sample implementation of a tool to drive odoc to generate +documentation for installed packages. +""" + + +depends: [ + "ocaml" {>= "5.1.0"} + "odoc" {= version} + "dune" {>= "3.7.0"} + "odoc-md" + "bos" + "fpath" + "yojson" {>= "2.0.0"} + "ocamlfind" + "opam-format" {>= "2.1.0"} + "logs" + "eio_main" + "eio" {>= "1.0"} + "progress" + "cmdliner" {>= "1.1.0"} + "sexplib" + "ppx_sexp_conv" + "sherlodoc" +] + +build: [ + ["dune" "subst"] {dev} + [ + "dune" + "build" + "-p" + name + "-j" + jobs + "@install" + "@doc" {with-doc} + ] +] + +x-maintenance-intent: ["(latest)"] +url { + src: "https://github.com/ocaml/odoc/releases/download/3.0.0/odoc-3.0.0.tbz" + checksum: [ + "sha256=ce84fa7e0cc5f3e8a54e6adeb10826152798b602057b9e46c5ae7e5d5206812b" + "sha512=9febd413450ca2e3824c9ef7e1c9ae8d8094aa72ed71327a69d8d6b42f6f197b3f3f40d674de0d11fa1242ee0df95c693b5d74467d530704e1339f3a523452f6" + ] +} +x-commit-hash: "90e679061f68c5e5ee5915e280f63d842f41f300" + diff --git a/packages/odoc-md/odoc-md.3.0.0/opam b/packages/odoc-md/odoc-md.3.0.0/opam new file mode 100644 index 000000000000..7126f63a4ebe --- /dev/null +++ b/packages/odoc-md/odoc-md.3.0.0/opam @@ -0,0 +1,56 @@ +opam-version: "2.0" +homepage: "https://github.com/ocaml/odoc" +doc: "https://ocaml.github.io/odoc/" +bug-reports: "https://github.com/ocaml/odoc/issues" +license: "ISC" + +maintainer: [ + "Jon Ludlam " + "Jules Aguillon " + "Paul-Elliot Anglès d'Auriac " +] +authors: [ + "Daniel Bünzli " + "Paul-Elliot Anglès d'Auriac " + "Jon Ludlam " +] +dev-repo: "git+https://github.com/ocaml/odoc.git" + +synopsis: "OCaml Documentation Generator - Markdown support" +description: """ +Odoc-md is part of the odoc suite of tools for generating documentation for OCaml packages. + +This package provides support for generating documentation from Markdown files. +""" + +depends: [ + "ocaml" {>= "4.14.0"} + "odoc" {= version} + "dune" {>= "3.7.0"} + "cmarkit" +] + +build: [ + ["dune" "subst"] {dev} + [ + "dune" + "build" + "-p" + name + "-j" + jobs + "@install" + "@doc" {with-doc} + ] +] + +x-maintenance-intent: ["(latest)"] +url { + src: "https://github.com/ocaml/odoc/releases/download/3.0.0/odoc-3.0.0.tbz" + checksum: [ + "sha256=ce84fa7e0cc5f3e8a54e6adeb10826152798b602057b9e46c5ae7e5d5206812b" + "sha512=9febd413450ca2e3824c9ef7e1c9ae8d8094aa72ed71327a69d8d6b42f6f197b3f3f40d674de0d11fa1242ee0df95c693b5d74467d530704e1339f3a523452f6" + ] +} +x-commit-hash: "90e679061f68c5e5ee5915e280f63d842f41f300" + diff --git a/packages/odoc-parser/odoc-parser.3.0.0/opam b/packages/odoc-parser/odoc-parser.3.0.0/opam new file mode 100644 index 000000000000..2cc778457bc6 --- /dev/null +++ b/packages/odoc-parser/odoc-parser.3.0.0/opam @@ -0,0 +1,47 @@ +opam-version: "2.0" +synopsis: "Parser for ocaml documentation comments" +description: """ +Odoc_parser is a library for parsing the contents of OCaml documentation +comments, formatted using 'odoc' syntax, an extension of the language +understood by ocamldoc.""" +maintainer: ["Jon Ludlam "] +authors: ["Anton Bachin "] +license: "ISC" +homepage: "https://github.com/ocaml/odoc" +bug-reports: "https://github.com/ocaml/odoc/issues" +dev-repo: "git+https://github.com/ocaml/odoc.git" +doc: "https://ocaml.github.io/odoc/odoc_parser" +depends: [ + "dune" {>= "3.7"} + "ocaml" {>= "4.02.0" & < "5.4"} + "astring" + "result" + "camlp-streams" + "ppx_expect" {with-test} + ("ocaml" {< "4.04.1" & with-test} | "sexplib0" {with-test}) +] +build: [ + ["dune" "subst"] {dev} + [ + "dune" + "build" + "-p" + name + "-j" + jobs + "@install" + # Tests are not all associated with a package and would be run if using the + # default '@runtest'. + "@src/parser/runtest" {with-test} + ] +] +x-maintenance-intent: ["(latest)"] +url { + src: "https://github.com/ocaml/odoc/releases/download/3.0.0/odoc-3.0.0.tbz" + checksum: [ + "sha256=ce84fa7e0cc5f3e8a54e6adeb10826152798b602057b9e46c5ae7e5d5206812b" + "sha512=9febd413450ca2e3824c9ef7e1c9ae8d8094aa72ed71327a69d8d6b42f6f197b3f3f40d674de0d11fa1242ee0df95c693b5d74467d530704e1339f3a523452f6" + ] +} +x-commit-hash: "90e679061f68c5e5ee5915e280f63d842f41f300" + diff --git a/packages/odoc/odoc.3.0.0/opam b/packages/odoc/odoc.3.0.0/opam new file mode 100644 index 000000000000..5e343407c995 --- /dev/null +++ b/packages/odoc/odoc.3.0.0/opam @@ -0,0 +1,94 @@ +opam-version: "2.0" +homepage: "https://github.com/ocaml/odoc" +doc: "https://ocaml.github.io/odoc/" +bug-reports: "https://github.com/ocaml/odoc/issues" +license: "ISC" + +maintainer: [ + "Daniel Bünzli " + "Jon Ludlam " + "Jules Aguillon " + "Paul-Elliot Anglès d'Auriac " +] +authors: [ + "Anton Bachin " + "Daniel Bünzli " + "David Sheets " + "Jon Ludlam " + "Jules Aguillon " + "Leo White " + "Lubega Simon " + "Paul-Elliot Anglès d'Auriac " + "Thomas Refis " +] +dev-repo: "git+https://github.com/ocaml/odoc.git" + +synopsis: "OCaml Documentation Generator" +description: """ +**odoc** is a powerful and flexible documentation generator for OCaml. It reads *doc comments*, demarcated by `(** ... *)`, and transforms them into a variety of output formats, including HTML, LaTeX, and man pages. + +- **Output Formats:** Odoc generates HTML for web browsing, LaTeX for PDF generation, and man pages for use on Unix-like systems. +- **Cross-References:** odoc uses the `ocamldoc` markup, which allows to create links for functions, types, modules, and documentation pages. +- **Link to Source Code:** Documentation generated includes links to the source code of functions, providing an easy way to navigate from the docs to the actual implementation. +- **Code Highlighting:** odoc automatically highlights syntax in code snippets for different languages. + +odoc is part of the [OCaml Platform](https://ocaml.org/docs/platform), the recommended set of tools for OCaml. +""" + + +depends: [ + "odoc-parser" {= version} + "astring" + "cmdliner" {>= "1.0.0" & < "2.0.0"} + "cppo" {build & >= "1.1.0"} + "dune" {>= "3.7.0"} + "fpath" + "ocaml" {>= "4.02.0" & < "5.4"} + "result" + "tyxml" {>= "4.4.0"} + "fmt" + + "ocamlfind" {with-test} + "yojson" {>= "2.1.0"} + ("ocaml" {< "4.04.1" & with-test} | "sexplib0" {with-test}) + "conf-jq" {with-test} + + "ppx_expect" {with-test} + "bos" {with-test} + "crunch" {>= "1.4.1"} + + ("ocaml" {< "4.07.0" & with-test} | "bisect_ppx" {with-test & > "2.5.0"}) +] + +conflicts: [ "ocaml-option-bytecode-only" ] + +x-extra-doc-deps: [ + "odoc-driver" {= version} + "sherlodoc" {= version} + "odig" +] + +build: [ + ["dune" "subst"] {dev} + [ + "dune" + "build" + "-p" + name + "-j" + jobs + "@install" + "@runtest" {with-test} + "@doc" {with-doc} + ] +] +x-maintenance-intent: ["(latest)"] +url { + src: "https://github.com/ocaml/odoc/releases/download/3.0.0/odoc-3.0.0.tbz" + checksum: [ + "sha256=ce84fa7e0cc5f3e8a54e6adeb10826152798b602057b9e46c5ae7e5d5206812b" + "sha512=9febd413450ca2e3824c9ef7e1c9ae8d8094aa72ed71327a69d8d6b42f6f197b3f3f40d674de0d11fa1242ee0df95c693b5d74467d530704e1339f3a523452f6" + ] +} +x-commit-hash: "90e679061f68c5e5ee5915e280f63d842f41f300" + diff --git a/packages/sherlodoc/sherlodoc.3.0.0/opam b/packages/sherlodoc/sherlodoc.3.0.0/opam new file mode 100644 index 000000000000..3c48dffbbdc6 --- /dev/null +++ b/packages/sherlodoc/sherlodoc.3.0.0/opam @@ -0,0 +1,56 @@ +opam-version: "2.0" +synopsis: "Search engine for OCaml documentation" +maintainer: ["art.wendling@gmail.com"] +authors: ["Arthur Wendling" "Emile Trotignon"] +license: "MIT" +homepage: "https://github.com/ocaml/odoc" +doc: "https://ocaml.github.io/odoc/" +bug-reports: "https://github.com/ocaml/odoc/issues" +depends: [ + "dune" {>= "3.7"} + "ocaml" {>= "4.0.8"} + "odoc" {= version} + "base64" {>= "3.5.1"} + "bigstringaf" {>= "0.9.1"} + "js_of_ocaml" {>= "5.6.0"} + "brr" {>= "0.0.6"} + "cmdliner" {>= "1.2.0"} + "decompress" {>= "1.5.3"} + "fpath" {>= "0.7.3"} + "lwt" {>= "5.7.0"} + "menhir" {>= "20230608"} + "ppx_blob" {>= "0.9.0"} + "tyxml" {>= "4.6.0"} + "result" {>= "1.5"} + "odig" {with-test} + "base" {with-test & = "v0.16.3"} + "alcotest" {with-test} +] +depopts: [ + "ancient" {>= "0.9.1"} +] +build: [ + ["dune" "subst"] {dev} + [ + "dune" + "build" + "-p" + name + "-j" + jobs + "@install" + "@sherlodoc/runtest" {with-test} + "@doc" {with-doc} + ] +] +dev-repo: "git+https://github.com/ocaml/odoc.git" +x-maintenance-intent: ["(latest)"] +url { + src: "https://github.com/ocaml/odoc/releases/download/3.0.0/odoc-3.0.0.tbz" + checksum: [ + "sha256=ce84fa7e0cc5f3e8a54e6adeb10826152798b602057b9e46c5ae7e5d5206812b" + "sha512=9febd413450ca2e3824c9ef7e1c9ae8d8094aa72ed71327a69d8d6b42f6f197b3f3f40d674de0d11fa1242ee0df95c693b5d74467d530704e1339f3a523452f6" + ] +} +x-commit-hash: "90e679061f68c5e5ee5915e280f63d842f41f300" +