Skip to content

Commit

Permalink
Merge 3315165 into 1e79ed4
Browse files Browse the repository at this point in the history
  • Loading branch information
psafont committed May 24, 2021
2 parents 1e79ed4 + 3315165 commit 30562b5
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 10 deletions.
9 changes: 7 additions & 2 deletions nbd-tool.opam
Expand Up @@ -19,12 +19,17 @@ depends: [
"lwt_log"
"mirage-block-unix"
"nbd-unix" {=version}
"odoc" {with-doc}
"uri"
]
depexts: [
["qemu-img" "nbd" "nmap-ncat"] {with-test & os-family = "rhel"}
["qemu-utils" "nbd-client" "netcat-openbsd"] {with-test & os-family = "debian"}
]
build: ["dune" "build" "-p" name "-j" jobs]
run-test: ["dune" "runtest" "-p" name "-j" jobs]
build: [
["dune" "subst"] {dev}
["dune" "build" "-p" name "-j" jobs]
["dune" "build" "-p" name "-j" jobs "@doc"] {with-doc}
["dune" "build" "-p" name "-j" jobs "@runtest"] {with-test}
]
dev-repo: "git+https://github.com/xapi-project/nbd.git"
3 changes: 2 additions & 1 deletion nbd-unix.opam
Expand Up @@ -18,10 +18,11 @@ depends: [
"io-page"
"io-page-unix"
"lwt" {>= "2.7.0"}
"lwt_ssl"
"mirage-block" {>= "2.0.0"}
"mirage-block-unix"
"nbd" {=version}
"lwt_ssl"
"odoc" {with-doc}
"ssl"
]
build: [
Expand Down
17 changes: 10 additions & 7 deletions nbd.opam
Expand Up @@ -6,28 +6,31 @@ homepage: "https://github.com/xapi-project/nbd"
doc: "https://xapi-project.github.io/nbd/nbd/index.html"
dev-repo: "git+https://github.com/xapi-project/nbd.git"
bug-reports: "https://github.com/xapi-project/nbd/issues"

build: ["dune" "build" "-p" name "-j" jobs]
run-test: ["dune" "runtest" "-p" name "-j" jobs]

build: [
["dune" "subst"] {dev}
["dune" "build" "-p" name "-j" jobs]
["dune" "build" "-p" name "-j" jobs "@doc"] {with-doc}
["dune" "build" "-p" name "-j" jobs "@runtest"] {with-test}
]
depends: [
"ocaml" {>= "4.08.0"}
"bisect_ppx" {dev & >= "2.5.0"}
"dune" {>= "2.7.0"}
"alcotest" {with-test}
"alcotest-lwt" {with-test}
"io-page-unix" {with-test}
"cstruct" {>= "3.1.0"}
"io-page"
"io-page-unix" {with-test}
"mirage-block" {>= "2.0.0"}
"mirage-block-unix"
"lwt" {>= "2.7.0"}
"lwt_log"
"odoc" {with-doc}
"ppx_cstruct" {>= "3.1.0"}
"ppx_sexp_conv" {>= "v0.9.0"}
"rresult"
"sexplib"
"uri"
"ppx_cstruct" {>= "3.1.0"}
"ppx_sexp_conv" {>= "v0.9.0"}
]
tags: [ "org:mirage" "org:xapi-project" ]
synopsis: "Network Block Device (NBD) protocol implementation"
Expand Down

0 comments on commit 30562b5

Please sign in to comment.