forked from xapi-project/xen-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
xapi.opam
81 lines (81 loc) · 1.94 KB
/
xapi.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
opam-version: "2.0"
maintainer: "[email protected]"
authors: [ "[email protected]" ]
homepage: "https://github.com/xapi-project/xen-api"
bug-reports: "https://github.com/xapi-project/xen-api/issues"
dev-repo: "git+https://github.com/xapi-project/xen-api.git"
build: [
["dune" "build" "-p" name "-j" jobs ]
["dune" "runtest" "-p" name "-j" jobs] {with-test}
]
depends: [
"ocaml"
"dune" {build & >= "1.4"}
"alcotest" # needed to generate the quicktest binary
"angstrom"
"base64"
"cdrom"
"conf-pam"
"crowbar" {with-test}
"ctypes"
"ctypes-foreign"
"domain-name"
"ezxenstore"
"fmt" {with-test}
"ipaddr"
"http-lib"
"mirage-crypto" {with-test}
"mirage-crypto-pk"
"mirage-crypto-rng" {with-test}
"message-switch-unix"
"mtime"
"ocaml-migrate-parsetree"
"pci"
"pciutil"
"ppx_deriving_rpc"
"ppx_sexp_conv"
"rpclib"
"rrdd-plugin"
"rresult"
"sexpr"
"sha"
"stunnel"
"tar"
"tar-unix"
"base-threads"
"base-unix"
"uuid"
"x509"
"xapi-client"
"xapi-cli-protocol"
"xapi-consts"
"xapi-datamodel"
"xapi-stdext-date"
"xapi-stdext-pervasives"
"xapi-stdext-std"
"xapi-stdext-threads"
"xapi-stdext-unix"
"xapi-stdext-zerocheck"
"xapi-test-utils" {with-test}
"xapi-types"
"xapi-xenopsd"
"xapi-idl"
"xapi-inventory"
"xml-light2"
"yojson"
"zstd"
]
depexts: [
["hwdata" "libxxhash-dev" "libxxhash0"] {os-distribution = "debian"}
["hwdata" "libxxhash-dev" "libxxhash0"] {os-distribution = "ubuntu"}
["hwdata" "xxhash-devel" "xxhash-libs"] {os-distribution = "centos"}
["hwdata" "xxhash-devel" "xxhash-libs"] {os-distribution = "fedora"}
["hwdata" "xxhash-dev" "xxhash"] {os-distribution = "alpine"}
]
synopsis: "The xapi toolstack daemon which implements the XenAPI"
description: """
This daemon exposes the XenAPI and is used by clients such as 'xe'
and 'XenCenter' to manage clusters of Xen-enabled hosts."""
url {
src: "https://github.com/xapi-project/xen-api/archive/master.tar.gz"
}