Skip to content

Commit de25768

Browse files
committed
[new release] mirage (2 packages) (4.6.0)
CHANGES: - BREAKING adapt to happy-eyeballs and dns-client devices where dependencies got reversed (mirage/mirage#1543 @dinosaure @hannesm) Adapting unikernels requires to notice that the generic_dns_client now takes a happy_eyeballs, and happy_eyeballs does no longer take a dns_client: -let dns_client = generic_dns_client ~nameservers stackv4v6 -let happy_eyeballs = generic_happy_eyeballs stackv4v6 dns_client +let happy_eyeballs = generic_happy_eyeballs stackv4v6 +let dns_client = generic_dns_client ~nameservers stackv4v6 happy_eyeballs - allow mirage-qubes 0.10 series (mirage/mirage#1548 @dinosaure) - revise "job without arguments" to take runtime arguments into consideration (mirage/mirage#1544 @hannesm) - provide Mirage.ethif (alias to Mirage.etif - which is now deprecated) (mirage/mirage#1546 @reynir @hannesm) - update tests for cmdliner 1.3.0 (mirage/mirage#1545 @hannesm) - allow paf 0.6.0 (mirage/mirage#1542 @hannesm)
1 parent 795f80f commit de25768

File tree

2 files changed

+105
-0
lines changed
  • packages
    • mirage-runtime/mirage-runtime.4.6.0
    • mirage/mirage.4.6.0

2 files changed

+105
-0
lines changed
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
opam-version: "2.0"
2+
3+
authors: ["Thomas Gazagnaire" "Anil Madhavapeddy" "Gabriel Radanne"
4+
"Mindy Preston" "Thomas Leonard" "Nicolas Ojeda Bar"
5+
"Dave Scott" "David Kaloper" "Hannes Mehnert" "Richard Mortier"]
6+
homepage: "https://github.com/mirage/mirage"
7+
bug-reports: "https://github.com/mirage/mirage/issues/"
8+
dev-repo: "git+https://github.com/mirage/mirage.git"
9+
license: "ISC"
10+
tags: ["org:mirage" "org:xapi-project"]
11+
doc: "https://mirage.github.io/mirage/"
12+
13+
build: [
14+
["dune" "subst"] {dev}
15+
["dune" "build" "-p" name "-j" jobs]
16+
["dune" "runtest" "-p" name "-j" jobs] {with-test}
17+
]
18+
19+
depends: [
20+
"ocaml" {>= "4.08.0"}
21+
"dune" {>= "2.9.0"}
22+
"logs" {>= "0.7.0"}
23+
"lwt" {>= "4.0.0"}
24+
"ipaddr" {>= "5.5.0"}
25+
"cmdliner" {>= "1.2.0"}
26+
]
27+
conflicts: [
28+
"result" {< "1.5"}
29+
"ppxlib" {= "0.29.0"} #0.29.0 provides a vendored ppx_sexp_conv
30+
]
31+
synopsis: "The base MirageOS runtime library, part of every MirageOS unikernel"
32+
description: """
33+
A bundle of useful runtime functions for applications built with MirageOS
34+
"""
35+
url {
36+
src:
37+
"https://github.com/mirage/mirage/releases/download/v4.6.0/mirage-4.6.0.tbz"
38+
checksum: [
39+
"sha256=6cc3f6427bee658e75958974ee638f87ca4dd2214a5857e82719043f981b8bdf"
40+
"sha512=7008a67d9fcf3929ace179c95ace8c95653edb7d630e3cc703f30019a8091baaf6575fbb7dedd90b908f8390ea8589e460afdec2e82f4c72edfa602e60cbf9b8"
41+
]
42+
}
43+
x-commit-hash: "481a2e75e2473f10a3d2fb18bc18c647086343f7"

packages/mirage/mirage.4.6.0/opam

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
opam-version: "2.0"
2+
3+
authors: ["Thomas Gazagnaire" "Anil Madhavapeddy" "Gabriel Radanne"
4+
"Mindy Preston" "Thomas Leonard" "Nicolas Ojeda Bar"
5+
"Dave Scott" "David Kaloper" "Hannes Mehnert" "Richard Mortier"]
6+
homepage: "https://github.com/mirage/mirage"
7+
bug-reports: "https://github.com/mirage/mirage/issues/"
8+
dev-repo: "git+https://github.com/mirage/mirage.git"
9+
license: "ISC"
10+
tags: ["org:mirage" "org:xapi-project"]
11+
doc: "https://mirage.github.io/mirage/"
12+
available: opam-version >= "2.1.0"
13+
14+
build: [
15+
["dune" "subst"] {dev}
16+
["dune" "build" "-p" name "-j" jobs]
17+
["dune" "runtest" "-p" name "-j" jobs] {with-test}
18+
]
19+
20+
depends: [
21+
"ocaml" {>= "4.08.0"}
22+
"dune" {>= "2.9.0"}
23+
"astring"
24+
"cmdliner" {>= "1.2.0"}
25+
"cmdliner" {with-test & >= "1.3.0"}
26+
"emile" {>= "1.1"}
27+
"fmt" {>= "0.8.7"}
28+
"ipaddr" {>= "5.0.0"}
29+
"bos"
30+
"fpath"
31+
"rresult" {>= "0.7.0"}
32+
"uri" {>= "4.2.0"}
33+
"logs" {>= "0.7.0"}
34+
"opam-monorepo" {>= "0.3.2"}
35+
"alcotest" {with-test}
36+
"mirage-runtime" {with-test & = version}
37+
]
38+
39+
conflicts: [ "jbuilder" {with-test} ]
40+
41+
synopsis: "The MirageOS library operating system"
42+
description: """
43+
MirageOS is a library operating system that constructs unikernels for
44+
secure, high-performance network applications across a variety of
45+
cloud computing and mobile platforms. Code can be developed on a
46+
normal OS such as Linux or MacOS X, and then compiled into a
47+
fully-standalone, specialised unikernel that runs under the Xen
48+
hypervisor.
49+
50+
Since Xen powers most public cloud computing infrastructure such as
51+
Amazon EC2 or Rackspace, this lets your servers run more cheaply,
52+
securely and with finer control than with a full software stack.
53+
"""
54+
url {
55+
src:
56+
"https://github.com/mirage/mirage/releases/download/v4.6.0/mirage-4.6.0.tbz"
57+
checksum: [
58+
"sha256=6cc3f6427bee658e75958974ee638f87ca4dd2214a5857e82719043f981b8bdf"
59+
"sha512=7008a67d9fcf3929ace179c95ace8c95653edb7d630e3cc703f30019a8091baaf6575fbb7dedd90b908f8390ea8589e460afdec2e82f4c72edfa602e60cbf9b8"
60+
]
61+
}
62+
x-commit-hash: "481a2e75e2473f10a3d2fb18bc18c647086343f7"

0 commit comments

Comments
 (0)