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 "base-bytes"
14]
15build: [
16 ["jbuilder" "subst" "-p" name "--name" name] {dev}
17 ["jbuilder" "build" "-p" name "-j" jobs]
18]
19synopsis: "Manipulate, parse and generate OCaml compiler version strings"
20description: """
21This library provides facilities to parse version numbers of the OCaml
22compiler, and enumerates the various official OCaml releases and configuration
23variants.
24
25OCaml version numbers are of the form `major.minor.patch+extra`, where the
26`patch` and `extra` fields are optional. This library offers the following
27functionality:
28
29- Functions to parse and serialise OCaml compiler version numbers.
30- Enumeration of official OCaml compiler version releases.
31- Test compiler versions for a particular feature (e.g. the `bytes` type)
32- [opam](https://opam.ocaml.org) compiler switch enumeration.
33
34Browse the [API documentation](http://docs.mirage.io/ocaml-version) for more
35details.
36
37### Further information
38
39- **Discussion:** Post on <https://discuss.ocaml.org/> with the `ocaml` tag under
40 the Ecosystem category.
41- **Bugs:** <https://github.com/avsm/ocaml-version/issues>
42- **Docs:** <http://docs.mirage.io/ocaml-version>
43
44Contributions are very welcome. Please see the overall TODO list below, or
45please get in touch with any particular comments you might have.
46
47[](https://travis-ci.org/avsm/ocaml-version)
48
49### TODO
50
51- Complete the architecture set from the officially supported compilers.
52- Add more features to the opam variants list (such as `Since.safe_string`)
53- Generate the core opam compiler package set purely from this library, so that
54 it remains in sync with the library description."""
55url {
56 src:
57 "https://github.com/avsm/ocaml-version/releases/download/v0.1.0/ocaml-version-0.1.0.tbz"
58 checksum: [
59 "sha256=5737e0f38fbe137722759eb23c6378b5c25c234bc4f8d8a9e35b0d08752ce2db"
60 "md5=e9356166a4c10e31ca65acad0ccc517f"
61 ]
62}