Skip to content

Commit 0cf4ef6

Browse files
authored
Merge pull request #27978 from psafont/release-qcow-0.12.1
[new release] qcow (4 packages) (0.12.1)
2 parents 035a20e + 800f029 commit 0cf4ef6

File tree

4 files changed

+212
-0
lines changed
  • packages
    • qcow-stream/qcow-stream.0.12.1
    • qcow-tool/qcow-tool.0.12.1
    • qcow-types/qcow-types.0.12.1
    • qcow/qcow.0.12.1

4 files changed

+212
-0
lines changed
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
opam-version: "2.0"
2+
synopsis: "Library offering QCOW streaming capabilities"
3+
maintainer: [
4+
"Dave Scott <[email protected]>" "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+
"qcow-types" {= version}
14+
"cstruct-lwt"
15+
"io-page"
16+
"lwt" {>= "5.5.0"}
17+
"odoc" {with-doc}
18+
]
19+
build: [
20+
["dune" "subst"] {dev}
21+
[
22+
"dune"
23+
"build"
24+
"-p"
25+
name
26+
"-j"
27+
jobs
28+
"@install"
29+
"@runtest" {with-test}
30+
"@doc" {with-doc}
31+
]
32+
]
33+
dev-repo: "git+https://github.com/mirage/ocaml-qcow.git"
34+
x-maintenance-intent: ["latest"]
35+
url {
36+
src:
37+
"https://github.com/mirage/ocaml-qcow/releases/download/0.12.1/qcow-0.12.1.tbz"
38+
checksum: [
39+
"sha256=c799f3c2eda00b345d37ccd759bcd7b8be8744216b77a38883ff4cd99727ae37"
40+
"sha512=2160598f460240f9580991e7f7d69e3ef83a2e6ec62268b711840d359cd303d4e14a5d65d89ceb82a6f77b434d06a01af9daa7780808a885f3307909c11dcfd8"
41+
]
42+
}
43+
x-commit-hash: "e9f228b3626aef9275c43f539bb9959d8d167314"
Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
opam-version: "2.0"
2+
synopsis: "A command-line tool for manipulating qcow2-formatted data"
3+
maintainer: [
4+
"Dave Scott <[email protected]>" "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"}
18+
"cstruct"
19+
"result"
20+
"unix-type-representations"
21+
"lwt"
22+
"mirage-block" {>= "3.0.0"}
23+
"sha" {>= "1.10"}
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+
build: [
35+
["dune" "subst"] {dev}
36+
[
37+
"dune"
38+
"build"
39+
"-p"
40+
name
41+
"-j"
42+
jobs
43+
"@install"
44+
"@runtest" {with-test}
45+
"@doc" {with-doc}
46+
]
47+
]
48+
dev-repo: "git+https://github.com/mirage/ocaml-qcow.git"
49+
x-maintenance-intent: ["latest"]
50+
url {
51+
src:
52+
"https://github.com/mirage/ocaml-qcow/releases/download/0.12.1/qcow-0.12.1.tbz"
53+
checksum: [
54+
"sha256=c799f3c2eda00b345d37ccd759bcd7b8be8744216b77a38883ff4cd99727ae37"
55+
"sha512=2160598f460240f9580991e7f7d69e3ef83a2e6ec62268b711840d359cd303d4e14a5d65d89ceb82a6f77b434d06a01af9daa7780808a885f3307909c11dcfd8"
56+
]
57+
}
58+
x-commit-hash: "e9f228b3626aef9275c43f539bb9959d8d167314"
Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
opam-version: "2.0"
2+
synopsis: "Minimal set of dependencies for qcow-stream, shared with qcow"
3+
maintainer: [
4+
"Dave Scott <[email protected]>" "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+
"logs"
17+
"lwt"
18+
"mirage-block" {>= "3.0.0"}
19+
"ppx_sexp_conv"
20+
"prometheus"
21+
"sexplib"
22+
"odoc" {with-doc}
23+
]
24+
build: [
25+
["dune" "subst"] {dev}
26+
[
27+
"dune"
28+
"build"
29+
"-p"
30+
name
31+
"-j"
32+
jobs
33+
"@install"
34+
"@runtest" {with-test}
35+
"@doc" {with-doc}
36+
]
37+
]
38+
dev-repo: "git+https://github.com/mirage/ocaml-qcow.git"
39+
x-maintenance-intent: ["latest"]
40+
url {
41+
src:
42+
"https://github.com/mirage/ocaml-qcow/releases/download/0.12.1/qcow-0.12.1.tbz"
43+
checksum: [
44+
"sha256=c799f3c2eda00b345d37ccd759bcd7b8be8744216b77a38883ff4cd99727ae37"
45+
"sha512=2160598f460240f9580991e7f7d69e3ef83a2e6ec62268b711840d359cd303d4e14a5d65d89ceb82a6f77b434d06a01af9daa7780808a885f3307909c11dcfd8"
46+
]
47+
}
48+
x-commit-hash: "e9f228b3626aef9275c43f539bb9959d8d167314"

packages/qcow/qcow.0.12.1/opam

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
opam-version: "2.0"
2+
synopsis: "Support for Qcow2 images"
3+
maintainer: [
4+
"Dave Scott <[email protected]>" "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"
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+
["dune" "subst"] {dev}
41+
[
42+
"dune"
43+
"build"
44+
"-p"
45+
name
46+
"-j"
47+
jobs
48+
"@install"
49+
"@runtest" {with-test}
50+
"@doc" {with-doc}
51+
]
52+
]
53+
dev-repo: "git+https://github.com/mirage/ocaml-qcow.git"
54+
x-maintenance-intent: ["latest"]
55+
url {
56+
src:
57+
"https://github.com/mirage/ocaml-qcow/releases/download/0.12.1/qcow-0.12.1.tbz"
58+
checksum: [
59+
"sha256=c799f3c2eda00b345d37ccd759bcd7b8be8744216b77a38883ff4cd99727ae37"
60+
"sha512=2160598f460240f9580991e7f7d69e3ef83a2e6ec62268b711840d359cd303d4e14a5d65d89ceb82a6f77b434d06a01af9daa7780808a885f3307909c11dcfd8"
61+
]
62+
}
63+
x-commit-hash: "e9f228b3626aef9275c43f539bb9959d8d167314"

0 commit comments

Comments
 (0)