this repo has no description

Merge pull request #17810 from psafont/xapi-update

Import new versions for packages in xapi-project/xs-opam

Changed files
+419
packages
cdrom
cdrom.0.9.4
crc
crc.2.1.0
dlm
dlm.0.3.1
ezxenstore
ezxenstore.0.4.1
fd-send-recv
fd-send-recv.2.0.1
nbd
nbd.4.0.3
netlink
netlink.0.3.4
xapi-backtrace
xapi-backtrace.0.7
xapi-inventory
xapi-inventory.1.2.1
xapi-rrd
xapi-rrd.1.8.2
xapi-stdext-pervasives
xapi-stdext-pervasives.4.14.0
xapi-stdext-std
xapi-stdext-std.4.14.0
xapi-stdext-threads
xapi-stdext-threads.4.14.0
xapi-stdext-unix
xapi-stdext-unix.4.14.0
+19
packages/cdrom/cdrom.0.9.4/opam
···
+
opam-version: "2.0"
+
name: "cdrom"
+
version: "0.9.4"
+
synopsis: "Query the state and contents of CDROM devices under Linux"
+
maintainer: "xen-api@list.xen.org"
+
authors: "Dave Scott <dave@recoil.org>"
+
tags: "org:xapi-project"
+
homepage: "https://github.com/xapi-project/cdrom"
+
bug-reports: "https://github.com/xapi-project/cdrom/issues"
+
depends: [
+
"ocaml"
+
"dune" {>= "1.4"}
+
]
+
build: ["dune" "build" "-p" name "-j" jobs]
+
dev-repo: "git+https://github.com/xapi-project/cdrom.git"
+
url {
+
src: "https://github.com/xapi-project/cdrom/archive/v0.9.4.tar.gz"
+
checksum: "md5=a8dd8e015afc44e8b7d65a9ef62d8fcd"
+
}
+23
packages/crc/crc.2.1.0/opam
···
+
opam-version: "2.0"
+
name: "crc"
+
authors: [ "David Scott" "John Else" ]
+
homepage: "https://github.com/xapi-project/ocaml-crc"
+
bug-reports: "https://github.com/xapi-project/ocaml-crc/issues"
+
dev-repo: "git+https://github.com/xapi-project/ocaml-crc"
+
maintainer: "xen-api@lists.xen.org"
+
build: [[ "dune" "build" "-p" name ]]
+
run-test: [[ "dune" "runtest" "-p" name "-j" jobs ]]
+
depends: [
+
"dune" {>= "1.4"}
+
"ocaml" {>= "4.00.1"}
+
"cstruct" {>= "1.0.1"}
+
"ounit" {with-test}
+
"odoc" {with-doc}
+
"ppx_deriving_rpc"
+
"ppx_sexp_conv" {>= "v0.11.0"}
+
]
+
synopsis: "CRC implementation supporting strings and cstructs"
+
url {
+
src: "https://github.com/xapi-project/ocaml-crc/archive/2.1.0.tar.gz"
+
checksum: "md5=9161b48a164f6f3e15b3245b2123153c"
+
}
+40
packages/dlm/dlm.0.3.1/opam
···
+
opam-version: "2.0"
+
version: "0.3.1"
+
maintainer: "xen-api@list.xensource.com"
+
authors: ["Edwin Török"]
+
homepage: "https://github.com/xapi-project/ocaml-dlm/"
+
bug-reports: "https://github.com/xapi-project/ocaml-dlm/issues"
+
dev-repo: "git+https://github.com/xapi-project/ocaml-dlm.git"
+
doc: "https://xapi-project.github.io/ocaml-dlm/doc"
+
license: "LGPL-2.1 with OCaml linking exception"
+
build: [
+
["dune" "build" "-p" name "-j" jobs]
+
]
+
run-test: ["dune" "runtest" "-p" name "-j" jobs]
+
depends: [
+
"ocaml"
+
"dune" {>= "1.4"}
+
"ctypes" {>= "0.11.1"}
+
"lwt"
+
"unix-errno"
+
"ounit"
+
"uuidm" {>= "0.9.6"}
+
]
+
depexts: [
+
["libdlm-dev"] {os-distribution = "debian"}
+
["libdlm-dev"] {os-distribution = "ubuntu"}
+
["dlm-devel"] {os-distribution = "rhel"}
+
["dlm-devel"] {os-distribution = "centos"}
+
["dlm-devel"] {os-distribution = "fedora"}
+
["dlm-devel"] {os-distribution = "oraclelinux"}
+
["dlm-git"] {os-distribution = "archlinux"}
+
["libdlm-devel"] {os-distribution = "opensuse"}
+
]
+
available: [ os = "linux" ]
+
synopsis: "Libdlm bindings"
+
description: "Bindings to the Linux Distributed Lock Manager `libdlm(3)`."
+
url {
+
src:
+
"https://github.com/xapi-project/ocaml-dlm/archive/v0.3.1.tar.gz"
+
checksum: "md5=b9828082d6d4dbf9f2960f711e7e2e44"
+
}
+29
packages/ezxenstore/ezxenstore.0.4.1/opam
···
+
opam-version: "2.0"
+
maintainer: "jonathan.ludlam@citrix.com"
+
authors: ["xen-api@lists.xensource.com"]
+
license: "ISC"
+
homepage: "https://github.com/xapi-project/ezxenstore"
+
bug-reports: "https://github.com/xapi-project/ezxenstore/issues"
+
dev-repo: "git+https://github.com/xapi-project/ezxenstore.git"
+
build: [[ "dune" "build" "-p" name "-j" jobs ]]
+
depends: [
+
"ocaml"
+
"dune" {>= "1.4"}
+
"cmdliner"
+
"logs"
+
"uuidm"
+
"xenctrl"
+
"xenstore"
+
"xenstore_transport"
+
]
+
synopsis:
+
"An easy-to-use interface to xenstore"
+
description: """
+
An easy-to-use xenstore library with a simplified interface geared
+
towards use within a daemon that maintains a single connection to
+
xenstored."""
+
url {
+
src:
+
"https://github.com/xapi-project/ezxenstore/archive/v0.4.1.tar.gz"
+
checksum: "sha256=bb065e6335d594d02d0b6fe5274c31baa62a2bf4e74844cd91db1b981bad7c05"
+
}
+33
packages/fd-send-recv/fd-send-recv.2.0.1/opam
···
+
opam-version: "2.0"
+
maintainer: "xen-api@lists.xensource.com"
+
authors: [
+
"David Scott"
+
"David Sheets"
+
"Euan Harris"
+
"Vincent Bernardoff"
+
]
+
homepage: "https://github.com/xapi-project/ocaml-fd-send-recv"
+
bug-reports: "https://github.com/xapi-project/ocaml-fd-send-recv/issues"
+
dev-repo: "git+https://github.com/xapi-project/ocaml-fd-send-recv.git"
+
doc: "https://github.com/xapi-project/ocaml-fd-send-recv/blob/master/lib/fd_send_recv.mli"
+
tags: [
+
"org:mirage"
+
"org:xapi-project"
+
]
+
build: [
+
["dune" "build" "-p" name "-j" jobs]
+
["dune" "runtest" "-p" name "-j" jobs] {with-test}
+
["dune" "build" "@doc" "-p" name] {with-doc}
+
]
+
depends: [
+
"ocaml"
+
"dune" {>= "1.4"}
+
"odoc" {with-doc}
+
]
+
synopsis:
+
"Bindings for sendmsg/recvmsg that allow Unix.file_descrs to be sent and received over Unix domain sockets"
+
url {
+
src:
+
"https://github.com/xapi-project/ocaml-fd-send-recv/archive/v2.0.1.tar.gz"
+
checksum: "md5=b46b56f70b3f4e0ab453ba3b25b43784"
+
}
+40
packages/nbd/nbd.4.0.3/opam
···
+
opam-version: "2.0"
+
maintainer: "jonathan.ludlam@citrix.com"
+
authors: [ "Jonathan Ludlam" "David Scott" "Thomas Sanders" ]
+
license: "LGPL-2 with OCaml linking exception"
+
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]
+
+
depends: [
+
"ocaml" {>= "4.03.0"}
+
"dune" {>= "1.0"}
+
"alcotest" {with-test}
+
"alcotest-lwt" {with-test}
+
"io-page-unix" {with-test}
+
"cstruct" {>= "3.1.0"}
+
"io-page"
+
"mirage-block-lwt"
+
"mirage-types-lwt" {>= "3.0.0"}
+
"lwt" {>= "2.7.0"}
+
"lwt_log"
+
"result"
+
"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"
+
description: """
+
This library allows applications to export and consume block
+
devices using the NBD protocol (as used by Linux, qemu etc)"""
+
url {
+
src: "https://github.com/xapi-project/nbd/archive/v4.0.3.tar.gz"
+
checksum: "sha256=a86533562fc4fd2d284cb525318141f1d673cd9fcc5ad3d1707622e54cb55287"
+
}
+27
packages/netlink/netlink.0.3.4/opam
···
+
opam-version: "2.0"
+
authors: "rob.hoes@citrix.com"
+
maintainer: "rob.hoes@citrix.com"
+
homepage: "https://github.com/xapi-project/ocaml-netlink"
+
bug-reports: "https://github.com/xapi-project/ocaml-netlink/issues"
+
dev-repo: "git+https://github.com/xapi-project/ocaml-netlink.git"
+
build: ["dune" "build" "-p" name "-j" jobs]
+
depends: [
+
"ocaml"
+
"dune" {>= "1.4"}
+
"ctypes"
+
"ctypes-foreign"
+
]
+
depexts: [
+
["libnl-3-200" "libnl-route-3-200"] {os-distribution = "debian"}
+
["libnl-3-200" "libnl-route-3-200"] {os-distribution = "ubuntu"}
+
["libnl3"] {os-distribution = "centos"}
+
]
+
synopsis: "Bindings to the Netlink Protocol Library Suite (libnl)"
+
description: """
+
The Netlink Protocol Library Suite (libnl, see
+
http://www.infradead.org/~tgr/libnl/) provides APIs to the netlink
+
protocol, allowing you to interact with network devices in the Linux kernel."""
+
url {
+
src: "https://github.com/xapi-project/ocaml-netlink/archive/v0.3.4.tar.gz"
+
checksum: "md5=9dd8017c1682410781e2798c5348048c"
+
}
+26
packages/xapi-backtrace/xapi-backtrace.0.7/opam
···
+
opam-version: "2.0"
+
maintainer: "xen-api@lists.xen.org"
+
authors: "xen-api@lists.xen.org"
+
homepage: "https://github.com/xapi-project/backtrace"
+
bug-reports: "https://github.com/xapi-project/backtrace/issues"
+
dev-repo: "git://github.com/xapi-project/backtrace.git"
+
tags: [ "org:xapi-project" ]
+
+
build: ["dune" "build" "-p" name "-j" jobs]
+
+
depends: [
+
"ocaml"
+
"dune" {>= "1.4"}
+
"base-threads"
+
"ppx_deriving_rpc"
+
"ppx_sexp_conv" {>= "v0.11.0"}
+
"rpclib"
+
]
+
synopsis: "A simple library for recording and managing backtraces"
+
description: """
+
This allows backtraces from multiple processes to be combined together
+
and pretty-printed."""
+
url {
+
src: "https://github.com/xapi-project/backtrace/archive/v0.7.tar.gz"
+
checksum: "md5=0c62a615ae48504e4de2c5d62ab344b5"
+
}
+33
packages/xapi-inventory/xapi-inventory.1.2.1/opam
···
+
opam-version: "2.0"
+
name: "xapi-inventory"
+
maintainer: "xen-api@lists.xen.org"
+
authors: "xen-api@lists.xen.org"
+
homepage: "https://github.com/xapi-project/xcp-inventory"
+
bug-reports: "https://github.com/xapi-project/xcp-inventory/issues"
+
dev-repo: "git+http://github.com/xapi-project/xcp-inventory.git"
+
tags: [ "org:xapi-project" ]
+
build: [
+
["./configure" "--default_inventory=%{prefix}%/etc"]
+
["dune" "build" "-p" name "-j" jobs]
+
["dune" "runtest" "-p" name "-j" jobs] {with-test}
+
]
+
depends: [
+
"ocaml" {>= "4.08"}
+
"ocamlfind" {build}
+
"dune" {>= "1.4"}
+
"base-threads"
+
"astring"
+
"xapi-stdext-unix"
+
"xapi-stdext-threads"
+
"cmdliner"
+
"uuidm"
+
]
+
conflicts: "xcp-inventory" {!= "transition"}
+
synopsis: "Library for accessing the xapi toolstack inventory file"
+
description: """
+
The inventory file provides global host identify information
+
needed by multiple services."""
+
url {
+
src: "https://github.com/xapi-project/xcp-inventory/archive/v1.2.1.tar.gz"
+
checksum: "md5=15d24391dd45d4b318451a639c3beb46"
+
}
+35
packages/xapi-rrd/xapi-rrd.1.8.2/opam
···
+
opam-version: "2.0"
+
maintainer: "xen-api@lists.xen.org"
+
authors: ["Dave Scott" "Jon Ludlam" "John Else"]
+
homepage: "https://github.com/xapi-project/xcp-rrd"
+
bug-reports: "https://github.com/xapi-project/xcp-rrd/issues"
+
dev-repo: "git+https://github.com/xapi-project/xcp-rrd.git"
+
tags: [
+
"org:xapi-project"
+
]
+
build: [
+
["dune" "build" "-p" name "-j" jobs]
+
["dune" "runtest" "-p" name] {with-test}
+
]
+
depends: [
+
"ocaml" {>= "4.08"}
+
"dune" {>= "1.4"}
+
"base-bigarray"
+
"base-unix"
+
"ppx_deriving_rpc"
+
"rpclib"
+
"xmlm"
+
"uuidm"
+
"ezjsonm"
+
"alcotest" {with-test}
+
"crowbar" {with-test}
+
]
+
synopsis: "RRD library for use with xapi"
+
description: """
+
Round-Robin Databases (RRDs) are constant-space datastructures
+
used for archiving historical data where the older data is stored
+
at a lower resolution."""
+
url {
+
src: "https://github.com/xapi-project/xcp-rrd/archive/v1.8.2.tar.gz"
+
checksum: "sha256=9b61409e062aa4cade3ac51fbcfd22b1313876ce3f75972d6f23d4fdf60280be"
+
}
+27
packages/xapi-stdext-pervasives/xapi-stdext-pervasives.4.14.0/opam
···
+
opam-version: "2.0"
+
maintainer: "jonathan.ludlam@citrix.com"
+
authors: "xen-api@list.xen.org"
+
bug-reports: "https://github.com/xapi-project/stdext/issues"
+
dev-repo: "git://github.com/xapi-project/stdext.git"
+
homepage: "https://xapi-project.github.io/"
+
tags: [ "org:xapi-project" ]
+
+
build: [[ "dune" "build" "-p" name "-j" jobs ]]
+
+
depends: [
+
"ocaml"
+
"dune" {>= "1.11"}
+
"logs"
+
"xapi-backtrace"
+
]
+
synopsis:
+
"A deprecated collection of utility functions - Pervasives extension"
+
description: """
+
This library is provided for a transitionary period only.
+
No new code should use this library."""
+
url {
+
src:
+
"https://github.com/xapi-project/stdext/archive/v4.14.0.tar.gz"
+
checksum:
+
"sha256=ac1b58f3ab9760858365828212ecf265dc2cff83574096c140a6cdfafd73805d"
+
}
+26
packages/xapi-stdext-std/xapi-stdext-std.4.14.0/opam
···
+
opam-version: "2.0"
+
maintainer: "jonathan.ludlam@citrix.com"
+
authors: "xen-api@list.xen.org"
+
bug-reports: "https://github.com/xapi-project/stdext/issues"
+
dev-repo: "git://github.com/xapi-project/stdext.git"
+
homepage: "https://xapi-project.github.io/"
+
tags: [ "org:xapi-project" ]
+
+
build: [[ "dune" "build" "-p" name "-j" jobs ]]
+
+
depends: [
+
"ocaml" {>= "4.08"}
+
"dune" {>= "1.11"}
+
"uuidm"
+
]
+
synopsis:
+
"A deprecated collection of utility functions - Standard library extensions"
+
description: """
+
This library is provided for a transitionary period only.
+
No new code should use this library."""
+
url {
+
src:
+
"https://github.com/xapi-project/stdext/archive/v4.14.0.tar.gz"
+
checksum:
+
"sha256=ac1b58f3ab9760858365828212ecf265dc2cff83574096c140a6cdfafd73805d"
+
}
+28
packages/xapi-stdext-threads/xapi-stdext-threads.4.14.0/opam
···
+
opam-version: "2.0"
+
maintainer: "jonathan.ludlam@citrix.com"
+
authors: "xen-api@list.xen.org"
+
bug-reports: "https://github.com/xapi-project/stdext/issues"
+
dev-repo: "git://github.com/xapi-project/stdext.git"
+
homepage: "https://xapi-project.github.io/"
+
tags: [ "org:xapi-project" ]
+
+
build: [[ "dune" "build" "-p" name "-j" jobs ]]
+
+
depends: [
+
"ocaml"
+
"dune" {>= "1.11"}
+
"base-threads"
+
"base-unix"
+
"xapi-stdext-pervasives" {= version}
+
]
+
synopsis:
+
"A deprecated collection of utility functions - Threads extensions and Semaphore"
+
description: """
+
This library is provided for a transitionary period only.
+
No new code should use this library."""
+
url {
+
src:
+
"https://github.com/xapi-project/stdext/archive/v4.14.0.tar.gz"
+
checksum:
+
"sha256=ac1b58f3ab9760858365828212ecf265dc2cff83574096c140a6cdfafd73805d"
+
}
+33
packages/xapi-stdext-unix/xapi-stdext-unix.4.14.0/opam
···
+
opam-version: "2.0"
+
maintainer: "jonathan.ludlam@citrix.com"
+
authors: "xen-api@list.xen.org"
+
bug-reports: "https://github.com/xapi-project/stdext/issues"
+
dev-repo: "git://github.com/xapi-project/stdext.git"
+
homepage: "https://xapi-project.github.io/"
+
tags: [ "org:xapi-project" ]
+
+
build: [[ "dune" "build" "-p" name "-j" jobs ]]
+
+
depends: [
+
"ocaml" {>= "4.08"}
+
"dune" {>= "1.11"}
+
"base-unix"
+
"fd-send-recv" {>= "2.0.0"}
+
"xapi-stdext-pervasives" {= version}
+
"xapi-stdext-std" {= version}
+
]
+
depexts: [
+
["linux-headers"] {os-distribution = "alpine"}
+
]
+
available: [ os = "linux" ]
+
synopsis:
+
"A deprecated collection of utility functions - Unix module extensions"
+
description: """
+
This library is provided for a transitionary period only.
+
No new code should use this library."""
+
url {
+
src:
+
"https://github.com/xapi-project/stdext/archive/v4.14.0.tar.gz"
+
checksum:
+
"sha256=ac1b58f3ab9760858365828212ecf265dc2cff83574096c140a6cdfafd73805d"
+
}