this repo has no description
1opam-version: "2.0"
2maintainer: "sheets@alum.mit.edu"
3authors: [
4 "Anil Madhavapeddy"
5 "David Sheets"
6 "Andy Ray"
7 "Jeff Hammerbacher"
8 "Thomas Gazagnaire"
9 "Rudi Grinberg"
10 "Qi Li"
11 "Jeremy Yallop"
12 "Dave Tucker"
13]
14homepage: "https://github.com/mirage/ocaml-github"
15bug-reports: "https://github.com/mirage/ocaml-github/issues"
16dev-repo: "git+https://github.com/mirage/ocaml-github.git"
17tags: [
18 "org:mirage"
19 "org:xapi-project"
20 "git"
21]
22build: [
23 ["jbuilder" "subst" "-p" name] {dev}
24 ["jbuilder" "build" "-p" name "-j" jobs]
25 ["jbuilder" "runtest" "-p" name] {with-test}
26]
27depends: [
28 "ocaml" {>= "4.03.0" & < "4.12.0"}
29 "jbuilder" {>= "1.0+beta10"}
30 "uri" {>= "1.9.0"}
31 "cohttp" {>= "0.99.0"}
32 "cohttp-lwt" {>= "0.99"}
33 "lwt" {>= "2.4.4"}
34 "atdgen" {>= "1.10.0" & < "1.13.0"}
35 "yojson" {>= "1.2.0"}
36 "stringext"
37]
38synopsis: "GitHub APIv3 OCaml Library"
39description: """
40[](https://travis-ci.org/mirage/ocaml-github)
41[](https://mirage.github.io/ocaml-github/)
42
43This library provides an OCaml interface to the [GitHub
44APIv3](https://developer.github.com/v3/) (JSON). It is compatible with
45[MirageOS](https://mirage.io) and also compiles to pure JavaScript via
46[js_of_ocaml](http://ocsigen.org/js_of_ocaml).
47
48It is [not yet complete](#api-support-coverage) but
49[lib/github.atd](https://github.com/mirage/ocaml-github/blob/master/lib/github.atd)
50contains the data types that have been bound so far.
51
52There are several tests and examples in
53[lib_test](https://github.com/mirage/ocaml-github/tree/master/lib_test)
54for small bits of
55functionality. [jar](https://github.com/mirage/ocaml-github/tree/master/jar)
56contains utility programs that use the [git jar](#git-jar) facility for
57stored tokens.
58
59If you are interested in easily using this library to listen for GitHub
60web hook events, you should look at [dsheets/ocaml-github-hooks](https://github.com/dsheets/ocaml-github-hooks)."""
61url {
62 src:
63 "https://github.com/mirage/ocaml-github/releases/download/v3.0.1/github-3.0.1.tbz"
64 checksum: [
65 "sha256=6e66823ac5be96427616d07fa331be14df6658a15201bc63de537e8a2f96dda8"
66 "md5=031bf0e5679dbb9d2cfb9f12c5d9f3a7"
67 ]
68}