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"
17doc: "https://mirage.github.io/ocaml-github/"
18
19tags: [
20 "org:mirage"
21 "org:xapi-project"
22 "git"
23]
24build: [
25 ["jbuilder" "subst" "-p" name] {dev}
26 ["jbuilder" "build" "-p" name "-j" jobs]
27 ["jbuilder" "runtest" "-p" name] {with-test}
28]
29depends: [
30 "ocaml" {>= "4.03.0"}
31 "jbuilder" {>= "1.0+beta10"}
32 "uri" {>= "1.9.0"}
33 "cohttp" {>= "0.99.0"}
34 "cohttp-lwt" {>= "0.99"}
35 "lwt" {>= "2.4.4"}
36 "atdgen" {>= "1.10.0" & < "1.13.0"}
37 "yojson" {>= "1.2.0"}
38 "stringext"
39]
40synopsis: "GitHub APIv3 OCaml Library"
41description: """
42[](https://travis-ci.org/mirage/ocaml-github)
43[](https://mirage.github.io/ocaml-github/)
44
45This library provides an OCaml interface to the [GitHub
46APIv3](https://developer.github.com/v3/) (JSON). It is compatible with
47[MirageOS](https://mirage.io) and also compiles to pure JavaScript via
48[js_of_ocaml](http://ocsigen.org/js_of_ocaml).
49
50It is [not yet complete](#api-support-coverage) but
51[lib/github.atd](https://github.com/mirage/ocaml-github/blob/master/lib/github.atd)
52contains the data types that have been bound so far.
53
54There are several tests and examples in
55[lib_test](https://github.com/mirage/ocaml-github/tree/master/lib_test)
56for small bits of
57functionality. [jar](https://github.com/mirage/ocaml-github/tree/master/jar)
58contains utility programs that use the [git jar](#git-jar) facility for
59stored tokens.
60
61If you are interested in easily using this library to listen for GitHub
62web hook events, you should look at [dsheets/ocaml-github-hooks](https://github.com/dsheets/ocaml-github-hooks)."""
63url {
64 src:
65 "https://github.com/mirage/ocaml-github/releases/download/3.1.0/github-3.1.0.tbz"
66 checksum: [
67 "sha256=8b742638d926ad4c469ed3d7ed85f811fcf38a42bebd9e57d2a036d3ca2bf8f9"
68 "md5=111940cd797b1a4c621be2a8077e706f"
69 ]
70}