File tree Expand file tree Collapse file tree 4 files changed +220
-0
lines changed
qcow-stream/qcow-stream.0.14.0
qcow-tool/qcow-tool.0.14.0
qcow-types/qcow-types.0.14.0 Expand file tree Collapse file tree 4 files changed +220
-0
lines changed Original file line number Diff line number Diff line change 1+ opam-version: "2.0"
2+ synopsis: "Library offering QCOW streaming capabilities"
3+ maintainer: [
4+ "Dave Scott <dave@recoil.org>" "Pau Ruiz Safont" "Edwin Török "
5+ ]
6+ authors: ["David Scott"]
7+ license: "ISC"
8+ tags: ["org:mirage"]
9+ homepage: "https://github.com/mirage/ocaml-qcow"
10+ bug-reports: "https://github.com/mirage/ocaml-qcow/issues"
11+ depends: [
12+ "dune" {>= "3.18"}
13+ "ocaml" {>= "4.12.0"}
14+ "alcotest" {with-test & >= "1.2.0"}
15+ "qcow-types" {= version}
16+ "cstruct-lwt"
17+ "io-page"
18+ "lwt" {>= "5.5.0"}
19+ "lwt_ppx" {>= "2.0.3"}
20+ "odoc" {with-doc}
21+ ]
22+ build: [
23+ [
24+ "dune"
25+ "build"
26+ "-p"
27+ name
28+ "-j"
29+ jobs
30+ "@install"
31+ "@runtest" {with-test & ocaml:version >= "4.13"}
32+ "@doc" {with-doc}
33+ ]
34+ ]
35+ dev-repo: "git+https://github.com/mirage/ocaml-qcow.git"
36+ x-maintenance-intent: ["latest"]
37+ url {
38+ src:
39+ "https://github.com/mirage/ocaml-qcow/releases/download/0.14.0/qcow-0.14.0.tbz"
40+ checksum: [
41+ "sha256=0c7845059853675ae99bf0d1463670f81af4e84131f9c871e0cc5e813fb53504"
42+ "sha512=5bb14b6a1ca355f09fc800692ba97590c6d653823b4df951a11c3bfd83c574b41364e32b124738c219bbb5d11af3ea04d7b69afe9562f5112c2cb6b6834e77d1"
43+ ]
44+ }
45+ x-commit-hash: "1eacfe0af61f1743ea17aecf96901fdb70304b85"
Original file line number Diff line number Diff line change 1+ opam-version: "2.0"
2+ synopsis: "A command-line tool for manipulating qcow2-formatted data"
3+ maintainer: [
4+ "Dave Scott <dave@recoil.org>" "Pau Ruiz Safont" "Edwin Török "
5+ ]
6+ authors: ["David Scott"]
7+ license: "ISC"
8+ tags: ["org:mirage"]
9+ homepage: "https://github.com/mirage/ocaml-qcow"
10+ bug-reports: "https://github.com/mirage/ocaml-qcow/issues"
11+ depends: [
12+ "dune" {>= "3.18"}
13+ "ocaml" {>= "4.12.0"}
14+ "qcow" {= version}
15+ "qcow-stream" {= version}
16+ "conf-qemu-img" {with-test}
17+ "cmdliner" {>= "1.1.0" & < "2.0.0"}
18+ "cstruct"
19+ "result"
20+ "unix-type-representations"
21+ "lwt"
22+ "mirage-block" {>= "3.0.0"}
23+ "sha" {>= "1.15.4"}
24+ "sexplib"
25+ "logs"
26+ "fmt" {>= "0.8.2"}
27+ "astring"
28+ "io-page" {>= "2.4.0"}
29+ "ounit" {with-test}
30+ "mirage-block-ramdisk" {with-test}
31+ "ezjsonm" {with-test}
32+ "odoc" {with-doc}
33+ ]
34+ dev-repo: "git+https://github.com/mirage/ocaml-qcow.git"
35+ x-maintenance-intent: ["latest"]
36+ build: [
37+ [
38+ "dune"
39+ "build"
40+ "-p"
41+ name
42+ "-j"
43+ jobs
44+ "@install"
45+ "@runtest" {with-test & arch != "arm32" & arch != "x86_32"}
46+ "@doc" {with-doc}
47+ ]
48+ ]
49+ url {
50+ src:
51+ "https://github.com/mirage/ocaml-qcow/releases/download/0.14.0/qcow-0.14.0.tbz"
52+ checksum: [
53+ "sha256=0c7845059853675ae99bf0d1463670f81af4e84131f9c871e0cc5e813fb53504"
54+ "sha512=5bb14b6a1ca355f09fc800692ba97590c6d653823b4df951a11c3bfd83c574b41364e32b124738c219bbb5d11af3ea04d7b69afe9562f5112c2cb6b6834e77d1"
55+ ]
56+ }
57+ x-commit-hash: "1eacfe0af61f1743ea17aecf96901fdb70304b85"
58+ x-ci-accept-failures: [
59+ "freebsd-14.3"
60+ "macos-homebrew"
61+ "opensuse-15.6"
62+ "opensuse-16.0"
63+ "opensuse-tumbleweed"
64+ ]
Original file line number Diff line number Diff line change 1+ opam-version: "2.0"
2+ synopsis: "Minimal set of dependencies for qcow-stream, shared with qcow"
3+ maintainer: [
4+ "Dave Scott <dave@recoil.org>" "Pau Ruiz Safont" "Edwin Török "
5+ ]
6+ authors: ["David Scott"]
7+ license: "ISC"
8+ tags: ["org:mirage"]
9+ homepage: "https://github.com/mirage/ocaml-qcow"
10+ bug-reports: "https://github.com/mirage/ocaml-qcow/issues"
11+ depends: [
12+ "dune" {>= "3.18"}
13+ "ocaml" {>= "4.12.0"}
14+ "astring"
15+ "cstruct" {>= "6.1.0"}
16+ "diet" {>= "0.3.0"}
17+ "logs"
18+ "lwt"
19+ "lwt_ppx" {>= "1.0.1"}
20+ "mirage-block" {>= "3.0.0"}
21+ "ppx_sexp_conv"
22+ "prometheus"
23+ "sexplib"
24+ "odoc" {with-doc}
25+ ]
26+ build: [
27+ [
28+ "dune"
29+ "build"
30+ "-p"
31+ name
32+ "-j"
33+ jobs
34+ "@install"
35+ "@runtest" {with-test}
36+ "@doc" {with-doc}
37+ ]
38+ ]
39+ dev-repo: "git+https://github.com/mirage/ocaml-qcow.git"
40+ x-maintenance-intent: ["latest"]
41+ url {
42+ src:
43+ "https://github.com/mirage/ocaml-qcow/releases/download/0.14.0/qcow-0.14.0.tbz"
44+ checksum: [
45+ "sha256=0c7845059853675ae99bf0d1463670f81af4e84131f9c871e0cc5e813fb53504"
46+ "sha512=5bb14b6a1ca355f09fc800692ba97590c6d653823b4df951a11c3bfd83c574b41364e32b124738c219bbb5d11af3ea04d7b69afe9562f5112c2cb6b6834e77d1"
47+ ]
48+ }
49+ x-commit-hash: "1eacfe0af61f1743ea17aecf96901fdb70304b85"
Original file line number Diff line number Diff line change 1+ opam-version: "2.0"
2+ synopsis: "Support for Qcow2 images"
3+ maintainer: [
4+ "Dave Scott <dave@recoil.org>" "Pau Ruiz Safont" "Edwin Török "
5+ ]
6+ authors: ["David Scott"]
7+ license: "ISC"
8+ tags: ["org:mirage"]
9+ homepage: "https://github.com/mirage/ocaml-qcow"
10+ bug-reports: "https://github.com/mirage/ocaml-qcow/issues"
11+ depends: [
12+ "dune" {>= "3.18"}
13+ "ocaml" {>= "4.12.0"}
14+ "qcow-types" {= version}
15+ "base-bytes"
16+ "cstruct" {>= "3.4.0"}
17+ "result"
18+ "io-page" {>= "2.4.0"}
19+ "lwt" {>= "5.5.0"}
20+ "mirage-block" {>= "3.0.0"}
21+ "mirage-block-unix" {>= "2.5.0"}
22+ "mirage-block-combinators"
23+ "mirage-sleep"
24+ "sexplib"
25+ "logs"
26+ "fmt" {>= "0.8.2"}
27+ "astring"
28+ "prometheus"
29+ "unix-type-representations"
30+ "stdlib-shims"
31+ "sha" {>= "1.15.4"}
32+ "ppx_deriving"
33+ "ppx_sexp_conv"
34+ "ounit" {with-test}
35+ "mirage-block-ramdisk" {with-test & >= "0.5"}
36+ "ezjsonm" {with-test}
37+ "odoc" {with-doc}
38+ ]
39+ build: [
40+ [
41+ "dune"
42+ "build"
43+ "-p"
44+ name
45+ "-j"
46+ jobs
47+ "@install"
48+ "@runtest" {with-test}
49+ "@doc" {with-doc}
50+ ]
51+ ]
52+ dev-repo: "git+https://github.com/mirage/ocaml-qcow.git"
53+ x-maintenance-intent: ["latest"]
54+ url {
55+ src:
56+ "https://github.com/mirage/ocaml-qcow/releases/download/0.14.0/qcow-0.14.0.tbz"
57+ checksum: [
58+ "sha256=0c7845059853675ae99bf0d1463670f81af4e84131f9c871e0cc5e813fb53504"
59+ "sha512=5bb14b6a1ca355f09fc800692ba97590c6d653823b4df951a11c3bfd83c574b41364e32b124738c219bbb5d11af3ea04d7b69afe9562f5112c2cb6b6834e77d1"
60+ ]
61+ }
62+ x-commit-hash: "1eacfe0af61f1743ea17aecf96901fdb70304b85"
You can’t perform that action at this time.
0 commit comments