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"]
22 ["dune" "build" "-p" name "-j" jobs]
23 ["dune" "runtest" "-p" name] {with-test}
24]
25
26depends: [
27 "ocaml" {>= "4.07.0"}
28 "dune" {>= "1.1"}
29 "uri" {>= "1.9.0"}
30 "lwt" {>= "2.4.7"}
31 "angstrom" {>= "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.5" & < "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 "mirage-crypto-rng" {with-test & >= "0.5.4" & < "0.11.0"}
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.3/git-2.1.3.tbz"
57 checksum: [
58 "sha256=5d614ae0404a2438c5cee98bf4aa64cee9980e2a382a437acd6ee65dcca6f4de"
59 "sha512=9a863552ad7fddfa37d92738dd1c793e888a3c544f97a7634aa9ed5cef1ca22db4e6bfa1908c58986af0bf1dcd665ba63308c1656e68397b7a87f1a09e94fe97"
60 ]
61}