Skip to content

Commit a146a07

Browse files
committed
[new release] odoc (1.5.0)
CHANGES: Additions - Add option to turn warnings into errors (ocaml/odoc#398, Jules Aguillon) Bugs fixed - Emit quote before identifier in alias type expr (Fixes ocaml/odoc#391, Anton Bachin) - Handle generalized open statements introduced in 4.08 (ocaml/odoc#393, Jon Ludlam) - Refactor error reporting to avoid exiting the program in library code (ocaml/odoc#400, Jules Aguillon) - Build on OCaml 4.10 (ocaml/odoc#408, Jon Ludlam)
1 parent a59e00c commit a146a07

File tree

1 file changed

+53
-0
lines changed
  • packages/odoc/odoc.1.5.0

1 file changed

+53
-0
lines changed

packages/odoc/odoc.1.5.0/opam

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
opam-version: "2.0"
2+
3+
version: "dev"
4+
homepage: "http://github.com/ocaml/odoc"
5+
doc: "https://ocaml.github.io/odoc/"
6+
bug-reports: "https://github.com/ocaml/odoc/issues"
7+
license: "ISC"
8+
9+
authors: [
10+
"Thomas Refis <trefis@janestreet.com>"
11+
"David Sheets <sheets@alum.mit.edu>"
12+
"Leo White <leo@lpw25.net>"
13+
"Anton Bachin <antonbachin@yahoo.com>"
14+
"Jon Ludlam <jon@recoil.org>"
15+
]
16+
maintainer: "Anton Bachin <antonbachin@yahoo.com>"
17+
dev-repo: "git+https://github.com/ocaml/odoc.git"
18+
19+
synopsis: "OCaml documentation generator"
20+
description: """
21+
Odoc is a documentation generator for OCaml. It reads doc comments,
22+
delimited with `(** ... *)`, and outputs HTML.
23+
"""
24+
25+
depends: [
26+
"astring"
27+
"cmdliner"
28+
"cppo" {build}
29+
"dune"
30+
"fpath"
31+
"ocaml" {>= "4.02.0"}
32+
"result"
33+
"tyxml" {>= "4.3.0"}
34+
35+
"alcotest" {dev & >= "0.8.3"}
36+
"markup" {dev & >= "0.8.0"}
37+
"ocamlfind" {dev}
38+
"sexplib" {dev & >= "113.33.00"}
39+
40+
"bisect_ppx" {with-test & >= "1.3.0"}
41+
]
42+
43+
build: [
44+
["dune" "subst"] {pinned}
45+
["dune" "build" "-p" name "-j" jobs]
46+
]
47+
url {
48+
src: "https://github.com/ocaml/odoc/releases/download/1.5.0/odoc-1.5.0.tbz"
49+
checksum: [
50+
"sha256=857759be968070bfda208add3ae2c2bc87826ca2bfc39cebab1cc1e13db7a140"
51+
"sha512=9573230f6ebd7f95d44a5e34f6de68f6b1b530cc7987402f84532e339498dde702082517066c4db428a334510af625db8055ecd03d91b57dd599fd5b3ac53f49"
52+
]
53+
}

0 commit comments

Comments
 (0)