this repo has no description
1opam-version: "2.0"
2synopsis: "A single-consumer single-producer queue on a block device"
3description: """
4This is a simple queue containing variable-length items stored on a
5 disk, in the style of Xen shared-memory-ring."""
6maintainer: "jonathan.ludlam@citrix.com"
7authors: ["David Scott" "Jon Ludlam" "Si Beaumont" "Pau Ruiz Safont"]
8license: "ISC"
9tags: ["org:mirage" "org:xapi-project"]
10homepage: "https://github.com/mirage/shared-block-ring"
11bug-reports: "https://github.com/mirage/shared-block-ring/issues/"
12depends: [
13 "ocaml" {>= "4.06.0"}
14 "bisect_ppx" {dev & >= "2.5.0"}
15 "cmdliner"
16 "cstruct" {>= "3.0.0"}
17 "dune" {>= "2.7.0"}
18 "duration"
19 "io-page"
20 "io-page-unix" {>= "2.0.0"}
21 "logs"
22 "lwt"
23 "lwt_log"
24 "mirage-block" {>= "2.0.1"}
25 "mirage-block-unix" {< "2.13.0"}
26 "mirage-clock" {>= "3.0.0"}
27 "mirage-clock-unix" {with-test}
28 "mirage-time" {>= "2.0.1"}
29 "mirage-time-unix"
30 "ounit2" {with-test}
31 "ppx_cstruct"
32 "ppx_sexp_conv" {>= "v0.12.0"}
33 "result"
34 "rresult"
35 "sexplib"
36 "sexplib0"
37 "conf-libev" {with-test} # to help tests not blow up select (used by lwt)
38]
39build: [
40 ["dune" "subst"] {dev}
41 ["dune" "build" "-p" name "-j" jobs]
42 ["dune" "runtest" "-p" name "-j" jobs] {with-test}
43]
44dev-repo: "git+https://github.com/mirage/shared-block-ring.git"
45x-commit-hash: "1c22e3abdc45514cad188d7984dc0d985fb21f25"
46url {
47 src:
48 "https://github.com/mirage/shared-block-ring/releases/download/3.0.0/shared-block-ring-3.0.0.tbz"
49 checksum: [
50 "sha256=e8fc63805afee9d3a7f954edcea9faff8b990ae3f616ebd6ef87fd42624873ec"
51 "sha512=3d2d75c9b1cad3031de9ba6aa7e1ba2fa5e0040f25bbdb95fd5192ddf3fc1d6659e806dcc53e0eb7c78ef64dec6ceca63686e8d5c79c3a5379e66d977973de19"
52 ]
53}