this repo has no description
1opam-version: "2.0"
2maintainer: [ "thomas@gazagnaire.org"
3 "romain.calascibetta@gmail.com" ]
4authors: "Thomas Gazagnaire"
5license: "ISC"
6homepage: "https://github.com/mirage/ocaml-git"
7bug-reports: "https://github.com/mirage/ocaml-git/issues"
8dev-repo: "git+https://github.com/mirage/ocaml-git.git"
9doc: "https://mirage.github.io/ocaml-git/"
10synopsis: "Git format and protocol in pure OCaml"
11description: """
12Support for on-disk and in-memory Git stores. Can read and write all
13the Git objects: the usual blobs, trees, commits and tags but also
14the pack files, pack indexes and the index file (where the staging area
15lives).
16
17All the objects share a consistent API, and convenience functions are
18provided to manipulate the different objects."""
19
20build: [
21 ["dune" "subst"] {dev}
22 ["dune" "build" "-p" name "-j" jobs]
23 ["dune" "runtest" "-p" name] {with-test}
24]
25
26depends: [
27 "ocaml" {>= "4.03.0"}
28 "dune" {>= "1.1"}
29 "uri" {>= "1.9.0"}
30 "lwt" {>= "2.4.7"}
31 "angstrom" {>= "0.9.0" & < "0.14.0"}
32 "fpath" {>= "0.7.0"}
33 "digestif" {>= "0.7.2" & < "1.0.0"}
34 "lru" {>= "0.3.0"}
35 "decompress" {>= "0.9.0" & < "1.0.0"}
36 "checkseum" {>= "0.0.9" & < "0.5.0"}
37 "stdlib-shims"
38 "ke"
39 "encore" {< "0.6"}
40 "duff" {< "0.3"}
41 "hex"
42 "ocplib-endian"
43 "rresult"
44 "logs"
45 "fmt"
46 "astring"
47 "cstruct"
48 "ocamlgraph"
49 "alcotest" {with-test & >= "0.8.1"}
50 "nocrypto" {with-test & >= "0.5.4"}
51 "tls" {with-test & < "1.0.0"}
52 "mtime" {with-test & >= "1.0.0" & < "2.0.0"}
53]
54url {
55 src:
56 "https://github.com/mirage/ocaml-git/releases/download/2.1.1/git-2.1.1.tbz"
57 checksum: [
58 "sha256=9d9db7028c58eb82ee44236afdd68feb42ebe9778aa23a3e59ba65aa2d40ce6d"
59 "sha512=ae73f03138455d2bbd3617c9740c2d950f6f6e848dc9f76fbc608cc17f57eab041e1fbdb338a82f94c5121e7dacb733618a40585959097e2dce9c8c87e9f10d0"
60 ]
61}