Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

opam: dunify vhd-tool's metadata #5872

Merged
merged 1 commit into from
Jul 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -321,6 +321,32 @@

(package
(name vhd-tool)
(synopsis "Manipulate .vhd files")
(tags ("org.mirage" "org:xapi-project"))
(depends
(alcotest-lwt :with-test)
cohttp-lwt
conf-libssl
(cstruct (>= "3.0.0"))
(ezxenstore (= :version))
(forkexec (= :version))
io-page
lwt
nbd-unix
ppx_cstruct
ppx_deriving_rpc
re
rpclib
sha
tar
(vhd-format (= :version))
(vhd-format-lwt (= :version))
(xapi-idl (= :version))
(xapi-log (= :version))
(xen-api-client-lwt (= :version))
xenstore
xenstore_transport
)
)

(package
Expand Down
52 changes: 30 additions & 22 deletions vhd-tool.opam
Original file line number Diff line number Diff line change
@@ -1,25 +1,20 @@
# This file is generated by dune, edit dune-project instead
license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception"
opam-version: "2.0"
maintainer: "xen-api@lists.xen.org"
authors: [ "xen-api@lists.xen.org" ]
homepage: "https://github.com/xapi-project/xen-api"
synopsis: "Manipulate .vhd files"
maintainer: ["Xapi project maintainers"]
authors: ["xen-api@lists.xen.org"]
license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception"
tags: ["org.mirage" "org:xapi-project"]
homepage: "https://xapi-project.github.io/"
bug-reports: "https://github.com/xapi-project/xen-api/issues"
dev-repo: "git+https://github.com/xapi-project/xen-api.git"
tags: [
"org:mirage"
"org:xapi-project"
]
build: [[ "dune" "build" "-p" name "-j" jobs ]
]
depends: [
"ocaml"
"dune"
"dune" {>= "3.0"}
"alcotest-lwt" {with-test}
"cohttp-lwt"
"conf-libssl"
"cstruct" {>= "3.0.0"}
"forkexec"
"ezxenstore" {= version}
"forkexec" {= version}
"io-page"
"lwt"
"nbd-unix"
Expand All @@ -29,14 +24,27 @@ depends: [
"rpclib"
"sha"
"tar"
"vhd-format"
"vhd-format-lwt"
"xapi-idl"
"xapi-log"
"vhd-format" {= version}
"vhd-format-lwt" {= version}
"xapi-idl" {= version}
"xapi-log" {= version}
"xen-api-client-lwt" {= version}
"xenstore"
"xenstore_transport"
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
synopsis: ".vhd file manipulation"
url {
src: "https://github.com/xapi-project/xen-api/archive/master.tar.gz"
}
dev-repo: "git+https://github.com/xapi-project/xen-api.git"
40 changes: 0 additions & 40 deletions vhd-tool.opam.template

This file was deleted.

Loading