Skip to content

Commit 50db954

Browse files
authored
Merge pull request #768 from last-genius/asv/qcow-master
[master] Update ocaml-qcow to 0.14.0
2 parents 9527655 + 822984f commit 50db954

4 files changed

Lines changed: 103 additions & 12 deletions

File tree

  • packages
    • lwt_ppx
    • qcow-stream/qcow-stream.0.14.0
    • qcow-types/qcow-types.0.14.0
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
opam-version: "2.0"
2+
name: "lwt_ppx"
3+
version: "5.9.1"
4+
synopsis: "PPX syntax for Lwt, providing something similar to async/await from JavaScript"
5+
maintainer: [
6+
"Raphaël Proust <code@bnwr.net>" "Anton Bachin <antonbachin@yahoo.com>"
7+
]
8+
authors: ["Jérôme Vouillon" "Jérémie Dimino"]
9+
license: "MIT"
10+
homepage: "https://github.com/ocsigen/lwt"
11+
doc: "https://ocsigen.org/lwt"
12+
bug-reports: "https://github.com/ocsigen/lwt/issues"
13+
depends: [
14+
"dune" {>= "2.7"}
15+
"ocaml" {>= "4.08"}
16+
"ppxlib" {>= "0.16.0" & < "0.36"}
17+
"ppx_let" {with-test}
18+
"lwt" {>= "5.7.0" & < "6~"}
19+
"odoc" {with-doc}
20+
]
21+
build: [
22+
["dune" "subst"] {dev}
23+
[
24+
"dune"
25+
"build"
26+
"-p"
27+
name
28+
"-j"
29+
jobs
30+
"@install"
31+
"@runtest" {with-test}
32+
"@doc" {with-doc}
33+
]
34+
]
35+
dev-repo: "git+https://github.com/ocsigen/lwt.git"
36+
url {
37+
src: "https://github.com/ocsigen/lwt/archive/refs/tags/5.9.1.tar.gz"
38+
checksum: [
39+
"md5=18742da8b8fe3618e3fa700b7a884fe7"
40+
"sha512=1c51fdb4d0856c89e2df08a1c0095ef28ebd0f613b07b03d0f66501ca5486515562071291e6d0932e57587ed0c9362c8b92c5c9eddb4d2bb2f5e129986b484a7"
41+
]
42+
}
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
opam-version: "2.0"
2+
name: "lwt_ppx"
3+
version: "5.9.3"
4+
synopsis: "PPX syntax for Lwt, providing something similar to async/await from JavaScript"
5+
maintainer: [
6+
"Raphaël Proust <code@bnwr.net>" "Anton Bachin <antonbachin@yahoo.com>"
7+
]
8+
authors: ["Gabriel Radanne"]
9+
license: "MIT"
10+
homepage: "https://github.com/ocsigen/lwt"
11+
doc: "https://ocsigen.org/lwt"
12+
bug-reports: "https://github.com/ocsigen/lwt/issues"
13+
depends: [
14+
"dune" {>= "3.15"}
15+
"ocaml" {>= "4.08"}
16+
"ppxlib" {>= "0.36"}
17+
"lwt" {>= "5.7" & < "6.0.0" }
18+
"odoc" {with-doc}
19+
]
20+
build: [
21+
["dune" "subst"] {dev}
22+
[
23+
"dune"
24+
"build"
25+
"-p"
26+
name
27+
"-j"
28+
jobs
29+
"@install"
30+
"@runtest" {with-test}
31+
"@doc" {with-doc}
32+
]
33+
]
34+
dev-repo: "git+https://github.com/ocsigen/lwt.git"
35+
url {
36+
src: "https://github.com/ocsigen/lwt/archive/refs/tags/5.9.3.tar.gz"
37+
checksum: [
38+
"md5=c24a86336f721f58bfd01757b4c672fe"
39+
"sha512=7f69e2c2e886dc5adef2a9205466823d59a143a5fd65ada8dbdbd2f83961b1cecbf345d20e20181643611a037460283ab92b9505c98093fe4ff28e24cce80edd"
40+
]
41+
}
42+
conflicts: [
43+
"lwt" {= "6.0.0~alpha00" }
44+
"lwt" {= "6.0.0~beta01" }
45+
]

packages/qcow-stream/qcow-stream.0.12.2/opam renamed to packages/qcow-stream/qcow-stream.0.14.0/opam

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
opam-version: "2.0"
22
name: "qcow-stream"
3-
version: "0.12.2"
3+
version: "0.14.0"
44
synopsis: "Library offering QCOW streaming capabilities"
55
maintainer: [
66
"Dave Scott <dave@recoil.org>" "Pau Ruiz Safont" "Edwin Török "
@@ -12,10 +12,13 @@ homepage: "https://github.com/mirage/ocaml-qcow"
1212
bug-reports: "https://github.com/mirage/ocaml-qcow/issues"
1313
depends: [
1414
"dune" {>= "3.18"}
15+
"ocaml" {>= "4.12.0"}
16+
"alcotest" {with-test & >= "1.2.0"}
1517
"qcow-types" {= version}
1618
"cstruct-lwt"
1719
"io-page"
1820
"lwt" {>= "5.5.0"}
21+
"lwt_ppx" {>= "2.0.3"}
1922
"odoc" {with-doc}
2023
]
2124
build: [
@@ -30,13 +33,13 @@ build: [
3033
"@doc" {with-doc}
3134
]
3235
dev-repo: "git+https://github.com/mirage/ocaml-qcow.git"
36+
x-maintenance-intent: ["latest"]
3337
url {
3438
src:
35-
"https://github.com/mirage/ocaml-qcow/releases/download/0.12.2/qcow-0.12.2.tbz"
39+
"https://github.com/mirage/ocaml-qcow/releases/download/0.14.0/qcow-0.14.0.tbz"
3640
checksum: [
37-
"sha256=bb12f9f37ad69b54af000e64add460034ea09102687aacb4f748488afe83c868"
38-
"sha512=883fc7a1d98ee1c272408829050a0b56c785664bc16c0820440d638039e08e55c458813728c2f8c8ac49ceea582a79c3d93142664d5134f87e6bb6618a6b8f66"
41+
"sha256=0c7845059853675ae99bf0d1463670f81af4e84131f9c871e0cc5e813fb53504"
42+
"sha512=5bb14b6a1ca355f09fc800692ba97590c6d653823b4df951a11c3bfd83c574b41364e32b124738c219bbb5d11af3ea04d7b69afe9562f5112c2cb6b6834e77d1"
3943
]
4044
}
41-
x-commit-hash: "b7fc9dfd4b071b49eebbfdf7401551eb305bda01"
42-
x-maintenance-intent: ["(latest)"]
45+
x-commit-hash: "1eacfe0af61f1743ea17aecf96901fdb70304b85"

packages/qcow-types/qcow-types.0.12.2/opam renamed to packages/qcow-types/qcow-types.0.14.0/opam

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
opam-version: "2.0"
22
name: "qcow-types"
3-
version: "0.12.2"
3+
version: "0.14.0"
44
synopsis: "Minimal set of dependencies for qcow-stream, shared with qcow"
55
maintainer: [
66
"Dave Scott <dave@recoil.org>" "Pau Ruiz Safont" "Edwin Török "
@@ -18,6 +18,7 @@ depends: [
1818
"diet" {>= "0.3.0"}
1919
"logs"
2020
"lwt"
21+
"lwt_ppx" {>= "1.0.1"}
2122
"mirage-block" {>= "3.0.0"}
2223
"ppx_sexp_conv"
2324
"prometheus"
@@ -36,13 +37,13 @@ build: [
3637
"@doc" {with-doc}
3738
]
3839
dev-repo: "git+https://github.com/mirage/ocaml-qcow.git"
40+
x-maintenance-intent: ["latest"]
3941
url {
4042
src:
41-
"https://github.com/mirage/ocaml-qcow/releases/download/0.12.2/qcow-0.12.2.tbz"
43+
"https://github.com/mirage/ocaml-qcow/releases/download/0.14.0/qcow-0.14.0.tbz"
4244
checksum: [
43-
"sha256=bb12f9f37ad69b54af000e64add460034ea09102687aacb4f748488afe83c868"
44-
"sha512=883fc7a1d98ee1c272408829050a0b56c785664bc16c0820440d638039e08e55c458813728c2f8c8ac49ceea582a79c3d93142664d5134f87e6bb6618a6b8f66"
45+
"sha256=0c7845059853675ae99bf0d1463670f81af4e84131f9c871e0cc5e813fb53504"
46+
"sha512=5bb14b6a1ca355f09fc800692ba97590c6d653823b4df951a11c3bfd83c574b41364e32b124738c219bbb5d11af3ea04d7b69afe9562f5112c2cb6b6834e77d1"
4547
]
4648
}
47-
x-commit-hash: "b7fc9dfd4b071b49eebbfdf7401551eb305bda01"
48-
x-maintenance-intent: ["(latest)"]
49+
x-commit-hash: "1eacfe0af61f1743ea17aecf96901fdb70304b85"

0 commit comments

Comments
 (0)