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.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.2/git-2.1.2.tbz"
57 checksum: [
58 "sha256=b2fc7aae9735526eb11ecf7c2bfc02393327268a4d3327d8be679622a0a6cc7b"
59 "sha512=bb3306f2728d3ac4975b4ba347b53aec26a831a96445ed4812685e9991c46ed45393c107f1b4cb42ca77fed1cbb2a06ffb41036fd7284d812270630c3ac3dc6f"
60 ]
61}