this repo has no description
1opam-version: "2.0"
2maintainer: "Anil Madhavapeddy <anil@recoil.org>"
3authors: ["Anil Madhavapeddy <anil@recoil.org>"]
4homepage: "https://github.com/avsm/ocaml-version"
5doc: "http://docs.mirage.io/ocaml-version"
6license: "ISC"
7dev-repo: "git+https://github.com/avsm/ocaml-version.git"
8bug-reports: "https://github.com/avsm/ocaml-version/issues"
9tags: ["org:ocamllabs"]
10depends: [
11 "ocaml" {>= "4.03.0"}
12 "jbuilder" {>= "1.0+beta10"}
13]
14build: [
15 ["jbuilder" "subst" "-p" name "--name" name] {dev}
16 ["jbuilder" "build" "-p" name "-j" jobs]
17]
18synopsis: "Manipulate, parse and generate OCaml compiler version strings"
19description: """
20This library provides facilities to parse version numbers of the OCaml
21compiler, and enumerates the various official OCaml releases and configuration
22variants.
23
24OCaml version numbers are of the form `major.minor.patch+extra`, where the
25`patch` and `extra` fields are optional. This library offers the following
26functionality:
27
28- Functions to parse and serialise OCaml compiler version numbers.
29- Enumeration of official OCaml compiler version releases.
30- Test compiler versions for a particular feature (e.g. the `bytes` type)
31- [opam](https://opam.ocaml.org) compiler switch enumeration.
32
33Browse the [API documentation](http://anil-code.recoil.org/ocaml-version/ocaml-version/Ocaml_version/index.html) for more
34details.
35
36### Further information
37
38- **Discussion:** Post on <https://discuss.ocaml.org/> with the `ocaml` tag under
39 the Ecosystem category.
40- **Bugs:** <https://github.com/avsm/ocaml-version/issues>
41- **Docs:** <http://docs.mirage.io/ocaml-version>
42
43Contributions are very welcome. Please see the overall TODO list below, or
44please get in touch with any particular comments you might have.
45
46[](https://travis-ci.org/avsm/ocaml-version)
47
48### TODO
49
50- Complete the architecture set from the officially supported compilers.
51- Add more features to the opam variants list (such as `Since.safe_string`)
52- Generate the core opam compiler package set purely from this library, so that
53 it remains in sync with the library description."""
54url {
55 src:
56 "https://github.com/avsm/ocaml-version/releases/download/v0.3.0/ocaml-version-0.3.0.tbz"
57 checksum: [
58 "sha256=c755fff9c895a77a62bed58ee4986f1d03d72f8463fe7675972ee431be016930"
59 "md5=142c456a74dd514b016b3d8d8f96a3c6"
60 ]
61}