Skip to content

Commit 069b279

Browse files
committed
[new release] xenstore (2.4.0)
CHANGES: * minor performance fixes (mirage/ocaml-xenstore#53 by freddy77) * use dune 2.0 (mirage/ocaml-xenstore#54 by lindig) * require OCaml 4.13 (mirage/ocaml-xenstore#56 by last-genius) * Add support `XS_DIRECTORY_PART` to the client (mirage/ocaml-xenstore#55 by last-genius) * Add x-maintenance-intent to opam metadata (mirage/ocaml-xenstore#57 by hannesm)
1 parent 11859fd commit 069b279

File tree

1 file changed

+58
-0
lines changed
  • packages/xenstore/xenstore.2.4.0

1 file changed

+58
-0
lines changed
Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
opam-version: "2.0"
2+
synopsis: "Xenstore protocol in pure OCam"
3+
description: """
4+
This repo contains:
5+
6+
1. a xenstore client library, a merge of the Mirage and XCP ones
7+
8+
2. a xenstore server library
9+
10+
3. a xenstore server instance which runs under Unix with libxc
11+
12+
4. a xenstore server instance which runs on mirage.
13+
14+
15+
The client and the server libraries have sets of unit-tests.
16+
"""
17+
maintainer: ["Hannes Mehnert <[email protected]>"]
18+
authors: [
19+
"Vincent Hanquez"
20+
"Thomas Gazagnaire"
21+
"Dave Scott"
22+
"Anil Madhavapeddy"
23+
"Vincent Bernardoff"
24+
]
25+
license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception"
26+
homepage: "https://github.com/mirage/ocaml-xenstore"
27+
bug-reports: "https://github.com/mirage/ocaml-xenstore/issues"
28+
depends: [
29+
"dune" {>= "2.0"}
30+
"ocaml" {>= "4.13.0"}
31+
"ounit2" {>= "2.2.2"}
32+
"lwt" {>= "4.5.0"}
33+
]
34+
build: [
35+
["dune" "subst"] {dev}
36+
[
37+
"dune"
38+
"build"
39+
"-p"
40+
name
41+
"-j"
42+
jobs
43+
"@install"
44+
"@runtest" {with-test}
45+
"@doc" {with-doc}
46+
]
47+
]
48+
dev-repo: "git+https://github.com/mirage/ocaml-xenstore.git"
49+
x-maintenance-intent: [ "(latest)" ]
50+
url {
51+
src:
52+
"https://github.com/mirage/ocaml-xenstore/releases/download/2.4.0/xenstore-2.4.0.tbz"
53+
checksum: [
54+
"sha256=11b63bb2a5a8bc487d36f36ecb195b2a2135aa13ab401cbc73da67505c08faa4"
55+
"sha512=b921aa4265503677f4984007efee6865461a18031dc49583be040781307cc6cbfcd84bc11e9ebc0a23e9b0cf281bd94528c475624bc30471ad8ff70607e0732f"
56+
]
57+
}
58+
x-commit-hash: "0dc6db269b6176160f945376bb91c342ba39f00d"

0 commit comments

Comments
 (0)