Skip to content

Commit f89ed54

Browse files
authored
Merge pull request ocaml#23397 from hannesm/release-mirage-v4.3.4
[new release] mirage, mirage-runtime, functoria and functoria-runtime (4.3.4)
2 parents 3f793b1 + a0e93e1 commit f89ed54

File tree

4 files changed

+198
-0
lines changed
  • packages
    • functoria-runtime/functoria-runtime.4.3.4
    • functoria/functoria.4.3.4
    • mirage-runtime/mirage-runtime.4.3.4
    • mirage/mirage.4.3.4

4 files changed

+198
-0
lines changed
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
opam-version: "2.0"
2+
maintainer: "Gabriel Radanne <[email protected]>"
3+
authors: [ "Thomas Gazagnaire"
4+
"Anil Madhavapeddy"
5+
"Dave Scott"
6+
"Thomas Leonard"
7+
"Gabriel Radanne" ]
8+
homepage: "https://github.com/mirage/mirage"
9+
bug-reports: "https://github.com/mirage/mirage/issues"
10+
dev-repo: "git+https://github.com/mirage/mirage.git"
11+
doc: "https://mirage.github.io/mirage/"
12+
license: "ISC"
13+
tags: ["org:mirage"]
14+
15+
build: [
16+
["dune" "subst"] {dev}
17+
["dune" "build" "-p" name "-j" jobs]
18+
["dune" "runtest" "-p" name "-j" jobs] {with-test}
19+
]
20+
21+
depends: [
22+
"ocaml" {>= "4.08.0"}
23+
"dune" {>= "2.9.0"}
24+
"cmdliner" {>= "1.1.0"}
25+
"fmt" {>= "0.8.7"}
26+
]
27+
28+
synopsis: "Runtime support library for functoria-generated code"
29+
description: """
30+
This is the runtime support library for code generated by functoria.
31+
"""
32+
url {
33+
src:
34+
"https://github.com/mirage/mirage/releases/download/v4.3.4/mirage-4.3.4.tbz"
35+
checksum: [
36+
"sha256=64df0b6b6f8dd7dc15a3fbc151f223d7b254e854a9d235fb8769c3a08a51d576"
37+
"sha512=9410cc17ad2fda7ffea67eec405f4797f2f27d78ee7aacaae8cdc48793f31da9fed830471edbbcbd12a7550a9dffa21f1b6f9a5507c3177bb696e1e39858a061"
38+
]
39+
}
40+
x-commit-hash: "5644d066c29c0be28fd1ade39047690be6372059"
Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
opam-version: "2.0"
2+
maintainer: "Gabriel Radanne <[email protected]>"
3+
authors: [ "Thomas Gazagnaire"
4+
"Anil Madhavapeddy"
5+
"Dave Scott"
6+
"Thomas Leonard"
7+
"Gabriel Radanne" ]
8+
homepage: "https://github.com/mirage/mirage"
9+
bug-reports: "https://github.com/mirage/mirage/issues"
10+
dev-repo: "git+https://github.com/mirage/mirage.git"
11+
doc: "https://mirage.github.io/mirage/"
12+
license: "ISC"
13+
tags: ["org:mirage"]
14+
available: opam-version >= "2.1.0"
15+
16+
build: [
17+
["dune" "subst"] {dev}
18+
["dune" "build" "-p" name "-j" jobs]
19+
["dune" "runtest" "-p" name "-j" jobs] {with-test}
20+
["env" "INSIDE_FUNCTORIA_TESTS=1" "dune" "exec" "-p" name "-j" jobs "--"
21+
"test/functoria/e2e/test.exe"] {with-test}
22+
]
23+
24+
depends: [
25+
"ocaml" {>= "4.08.0"}
26+
"dune" {>= "2.9.0"}
27+
"dune" {with-test & >= "3.0.0"}
28+
"base-unix"
29+
"cmdliner" {>= "1.1.1"}
30+
"rresult" {>= "0.7.0"}
31+
"result" {>= "1.5"}
32+
"astring"
33+
"fmt" {>= "0.8.7"}
34+
"logs"
35+
"bos"
36+
"fpath"
37+
"emile" {>= "1.1"}
38+
"uri" {>= "4.2.0"}
39+
"alcotest" {with-test}
40+
"functoria-runtime" {= version & with-test}
41+
]
42+
synopsis: "A DSL to organize functor applications"
43+
description: """
44+
Functoria is a DSL to describe a set of modules and functors, their types and
45+
how to apply them in order to produce a complete application.
46+
47+
The main use case is mirage. See the [mirage](https://github.com/mirage/mirage)
48+
repository for details.
49+
"""
50+
url {
51+
src:
52+
"https://github.com/mirage/mirage/releases/download/v4.3.4/mirage-4.3.4.tbz"
53+
checksum: [
54+
"sha256=64df0b6b6f8dd7dc15a3fbc151f223d7b254e854a9d235fb8769c3a08a51d576"
55+
"sha512=9410cc17ad2fda7ffea67eec405f4797f2f27d78ee7aacaae8cdc48793f31da9fed830471edbbcbd12a7550a9dffa21f1b6f9a5507c3177bb696e1e39858a061"
56+
]
57+
}
58+
x-commit-hash: "5644d066c29c0be28fd1ade39047690be6372059"
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
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+
"ipaddr" {>= "5.0.0"}
23+
"functoria-runtime" {= version}
24+
"fmt" {>= "0.8.4"}
25+
"logs"
26+
"lwt" {>= "4.0.0"}
27+
"alcotest" {with-test}
28+
]
29+
conflicts: [
30+
"result" {< "1.5"}
31+
"ppxlib" {= "0.29.0"} #0.29.0 provides a vendored ppx_sexp_conv
32+
]
33+
synopsis: "The base MirageOS runtime library, part of every MirageOS unikernel"
34+
description: """
35+
A bundle of useful runtime functions for applications built with MirageOS
36+
"""
37+
url {
38+
src:
39+
"https://github.com/mirage/mirage/releases/download/v4.3.4/mirage-4.3.4.tbz"
40+
checksum: [
41+
"sha256=64df0b6b6f8dd7dc15a3fbc151f223d7b254e854a9d235fb8769c3a08a51d576"
42+
"sha512=9410cc17ad2fda7ffea67eec405f4797f2f27d78ee7aacaae8cdc48793f31da9fed830471edbbcbd12a7550a9dffa21f1b6f9a5507c3177bb696e1e39858a061"
43+
]
44+
}
45+
x-commit-hash: "5644d066c29c0be28fd1ade39047690be6372059"

packages/mirage/mirage.4.3.4/opam

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
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 & os != "macos"}
18+
]
19+
20+
depends: [
21+
"ocaml" {>= "4.08.0"}
22+
"dune" {>= "2.9.0" & < "3.7.0"}
23+
"dune" {with-test & >= "3.0.0"}
24+
"ipaddr" {>= "5.0.0"}
25+
"functoria" {= version}
26+
"bos"
27+
"astring"
28+
"logs"
29+
"mirage-runtime" {= version}
30+
"opam-monorepo" {>= "0.3.2"}
31+
"alcotest" {with-test}
32+
"fmt" {>= "0.8.7" & with-test}
33+
]
34+
synopsis: "The MirageOS library operating system"
35+
description: """
36+
MirageOS is a library operating system that constructs unikernels for
37+
secure, high-performance network applications across a variety of
38+
cloud computing and mobile platforms. Code can be developed on a
39+
normal OS such as Linux or MacOS X, and then compiled into a
40+
fully-standalone, specialised unikernel that runs under the Xen
41+
hypervisor.
42+
43+
Since Xen powers most public cloud computing infrastructure such as
44+
Amazon EC2 or Rackspace, this lets your servers run more cheaply,
45+
securely and with finer control than with a full software stack.
46+
"""
47+
url {
48+
src:
49+
"https://github.com/mirage/mirage/releases/download/v4.3.4/mirage-4.3.4.tbz"
50+
checksum: [
51+
"sha256=64df0b6b6f8dd7dc15a3fbc151f223d7b254e854a9d235fb8769c3a08a51d576"
52+
"sha512=9410cc17ad2fda7ffea67eec405f4797f2f27d78ee7aacaae8cdc48793f31da9fed830471edbbcbd12a7550a9dffa21f1b6f9a5507c3177bb696e1e39858a061"
53+
]
54+
}
55+
x-commit-hash: "5644d066c29c0be28fd1ade39047690be6372059"

0 commit comments

Comments
 (0)