this repo has no description

[new release] odoc (2 packages) (2.3.1)

Signed-off-by: Paul-Elliot <peada@free.fr>

Changed files
+127
packages
odoc
odoc.2.3.1
odoc-parser
odoc-parser.2.3.1
+43
packages/odoc-parser/odoc-parser.2.3.1/opam
···
+
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 <jon@recoil.org>"]
+
authors: ["Anton Bachin <antonbachin@yahoo.com>"]
+
license: "ISC"
+
homepage: "https://github.com/ocaml-doc/odoc-parser"
+
bug-reports: "https://github.com/ocaml/odoc/issues"
+
dev-repo: "git+https://github.com/ocaml/odoc.git"
+
doc: "https://ocaml-doc.github.io/odoc-parser/"
+
depends: [
+
"dune" {>= "3.7.0"}
+
"ocaml" {>= "4.02.0"}
+
"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"
+
]
+
]
+
url {
+
src: "https://github.com/ocaml/odoc/releases/download/2.3.1/odoc-2.3.1.tbz"
+
checksum: [
+
"sha256=36e20103507e73bdfdcb6b6d50d16724f98b7c8adbdcd5dadbac78e9fa77e603"
+
"sha512=b092e3344a6abb653f23d83ee128ecce181da561ceda31957cc4aba83f1ad642a30e887f58fbdeb809c1eeaab8732f7a8de23c13fc8314fb4550afee285cfb04"
+
]
+
}
+
x-commit-hash: "7ca4890b94d9c36732e3eb69fcf2859f95975dfb"
+
+84
packages/odoc/odoc.2.3.1/opam
···
+
opam-version: "2.0"
+
homepage: "http://github.com/ocaml/odoc"
+
doc: "https://ocaml.github.io/odoc/"
+
bug-reports: "https://github.com/ocaml/odoc/issues"
+
license: "ISC"
+
+
maintainer: [
+
"Daniel Bünzli <daniel.buenzli@erratique.ch>"
+
"Jon Ludlam <jon@recoil.org>"
+
"Jules Aguillon <juloo.dsi@gmail.com>"
+
"Paul-Elliot Anglès d'Auriac <paul-elliot@tarides.com>"
+
]
+
authors: [
+
"Anton Bachin <antonbachin@yahoo.com>"
+
"Daniel Bünzli <daniel.buenzli@erratique.ch>"
+
"David Sheets <sheets@alum.mit.edu>"
+
"Jon Ludlam <jon@recoil.org>"
+
"Jules Aguillon <juloo.dsi@gmail.com>"
+
"Leo White <leo@lpw25.net>"
+
"Lubega Simon <lubegasimon73@gmail.com>"
+
"Paul-Elliot Anglès d'Auriac <paul-elliot@tarides.com>"
+
"Thomas Refis <trefis@janestreet.com>"
+
]
+
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"}
+
"cppo" {build & >= "1.1.0"}
+
"dune" {>= "3.7.0"}
+
"fpath"
+
"ocaml" {>= "4.02.0"}
+
"result"
+
"tyxml" {>= "4.4.0"}
+
"fmt"
+
+
"ocamlfind" {with-test}
+
"yojson" {>= "1.6.0" & with-test}
+
("ocaml" {< "4.04.1" & with-test} | "sexplib0" {with-test})
+
"conf-jq" {with-test}
+
+
"ppx_expect" {with-test}
+
"bos" {with-test}
+
"crunch" {with-test}
+
+
("ocaml" {< "4.07.0" & with-test} | "bisect_ppx" {with-test & > "2.5.0"})
+
]
+
+
build: [
+
["dune" "subst"] {dev}
+
[
+
"dune"
+
"build"
+
"-p"
+
name
+
"-j"
+
jobs
+
"@install"
+
"@runtest" {with-test}
+
"@doc" {with-doc}
+
]
+
]
+
url {
+
src: "https://github.com/ocaml/odoc/releases/download/2.3.1/odoc-2.3.1.tbz"
+
checksum: [
+
"sha256=36e20103507e73bdfdcb6b6d50d16724f98b7c8adbdcd5dadbac78e9fa77e603"
+
"sha512=b092e3344a6abb653f23d83ee128ecce181da561ceda31957cc4aba83f1ad642a30e887f58fbdeb809c1eeaab8732f7a8de23c13fc8314fb4550afee285cfb04"
+
]
+
}
+
x-commit-hash: "7ca4890b94d9c36732e3eb69fcf2859f95975dfb"