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" & < "5.0"}
28 "dune"
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.1.0" & < "0.5.0"}
37 "ke"
38 "encore" {< "0.6"}
39 "duff" {< "0.3"}
40 "hex"
41 "ocplib-endian"
42 "rresult"
43 "logs"
44 "fmt"
45 "astring"
46 "cstruct"
47 "ocamlgraph"
48 "alcotest" {with-test & >= "0.8.1"}
49 "nocrypto" {with-test & >= "0.5.4"}
50 "tls" {with-test & < "1.0.0"}
51 "mtime" {with-test & >= "1.0.0" & < "2.0.0"}
52]
53url {
54 src:
55 "https://github.com/mirage/ocaml-git/releases/download/2.1.0/git-2.1.0.tbz"
56 checksum: [
57 "sha256=2a64446ac45b38e6830dc907d5321c0902310562dae3ba1bfb9ed70c0b3b9c7c"
58 "sha512=7ac19137197a0620f4a1398e325895a37bc1d52d9e32ed756488e01b55ae95f37f930c80d11bc29203b30ee6becf49b67826afd31c1389eb37e2c7f892b40864"
59 ]
60}