From a146a0716e290831e44b40dcbbfdce113c606d92 Mon Sep 17 00:00:00 2001 From: Jon Ludlam Date: Fri, 7 Feb 2020 20:20:08 +0100 Subject: [PATCH 1/2] [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) --- packages/odoc/odoc.1.5.0/opam | 53 +++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 packages/odoc/odoc.1.5.0/opam diff --git a/packages/odoc/odoc.1.5.0/opam b/packages/odoc/odoc.1.5.0/opam new file mode 100644 index 00000000000..40a4dd156d0 --- /dev/null +++ b/packages/odoc/odoc.1.5.0/opam @@ -0,0 +1,53 @@ +opam-version: "2.0" + +version: "dev" +homepage: "http://github.com/ocaml/odoc" +doc: "https://ocaml.github.io/odoc/" +bug-reports: "https://github.com/ocaml/odoc/issues" +license: "ISC" + +authors: [ + "Thomas Refis " + "David Sheets " + "Leo White " + "Anton Bachin " + "Jon Ludlam " +] +maintainer: "Anton Bachin " +dev-repo: "git+https://github.com/ocaml/odoc.git" + +synopsis: "OCaml documentation generator" +description: """ +Odoc is a documentation generator for OCaml. It reads doc comments, +delimited with `(** ... *)`, and outputs HTML. +""" + +depends: [ + "astring" + "cmdliner" + "cppo" {build} + "dune" + "fpath" + "ocaml" {>= "4.02.0"} + "result" + "tyxml" {>= "4.3.0"} + + "alcotest" {dev & >= "0.8.3"} + "markup" {dev & >= "0.8.0"} + "ocamlfind" {dev} + "sexplib" {dev & >= "113.33.00"} + + "bisect_ppx" {with-test & >= "1.3.0"} +] + +build: [ + ["dune" "subst"] {pinned} + ["dune" "build" "-p" name "-j" jobs] +] +url { + src: "https://github.com/ocaml/odoc/releases/download/1.5.0/odoc-1.5.0.tbz" + checksum: [ + "sha256=857759be968070bfda208add3ae2c2bc87826ca2bfc39cebab1cc1e13db7a140" + "sha512=9573230f6ebd7f95d44a5e34f6de68f6b1b530cc7987402f84532e339498dde702082517066c4db428a334510af625db8055ecd03d91b57dd599fd5b3ac53f49" + ] +} From 3e8ff6b0ab0cbcbb8968b2c13dc18cce01c2a353 Mon Sep 17 00:00:00 2001 From: Kate Date: Fri, 7 Feb 2020 21:38:12 +0000 Subject: [PATCH 2/2] odoc.1.5.0: Remove version field --- packages/odoc/odoc.1.5.0/opam | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/odoc/odoc.1.5.0/opam b/packages/odoc/odoc.1.5.0/opam index 40a4dd156d0..99f9336f3aa 100644 --- a/packages/odoc/odoc.1.5.0/opam +++ b/packages/odoc/odoc.1.5.0/opam @@ -1,6 +1,5 @@ opam-version: "2.0" -version: "dev" homepage: "http://github.com/ocaml/odoc" doc: "https://ocaml.github.io/odoc/" bug-reports: "https://github.com/ocaml/odoc/issues"