Skip to content

Commit 6ccea0f

Browse files
authored
Merge pull request ocaml#21034 from samoht/release-mirage-v4.0.0
[new release] mirage, mirage-runtime, functoria and functoria-runtime (4.0.0)
2 parents 8beae05 + a1f5b1a commit 6ccea0f

File tree

4 files changed

+192
-0
lines changed
  • packages
    • functoria-runtime/functoria-runtime.4.0.0
    • functoria/functoria.4.0.0
    • mirage-runtime/mirage-runtime.4.0.0
    • mirage/mirage.4.0.0

4 files changed

+192
-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.0.0/mirage-4.0.0.tbz"
35+
checksum: [
36+
"sha256=f804161872de6cf20699364f09d03370ed06aafffb12f1d586190832c73a194d"
37+
"sha512=75c1c1cac4c6f862c0055381c7ced123785193234b40da8a8e238cb289cba1a4494378587c4edf2ed872aee7fbfc756f84087941c1037ac19cbd1733ff6cca6a"
38+
]
39+
}
40+
x-commit-hash: "d61533a07cc054622b7d0c84650d208833b10237"
Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
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" | (with-test & >= "3.0.0")}
27+
"base-unix"
28+
"cmdliner" {>= "1.1.1"}
29+
"rresult" {>= "0.7.0"}
30+
"result" {>= "1.5"}
31+
"astring"
32+
"fmt" {>= "0.8.7"}
33+
"logs"
34+
"bos"
35+
"fpath"
36+
"emile" {>= "1.1"}
37+
"uri" {>= "4.2.0"}
38+
"alcotest" {with-test}
39+
"functoria-runtime" {= version & with-test}
40+
]
41+
synopsis: "A DSL to organize functor applications"
42+
description: """
43+
Functoria is a DSL to describe a set of modules and functors, their types and
44+
how to apply them in order to produce a complete application.
45+
46+
The main use case is mirage. See the [mirage](https://github.com/mirage/mirage)
47+
repository for details.
48+
"""
49+
url {
50+
src:
51+
"https://github.com/mirage/mirage/releases/download/v4.0.0/mirage-4.0.0.tbz"
52+
checksum: [
53+
"sha256=f804161872de6cf20699364f09d03370ed06aafffb12f1d586190832c73a194d"
54+
"sha512=75c1c1cac4c6f862c0055381c7ced123785193234b40da8a8e238cb289cba1a4494378587c4edf2ed872aee7fbfc756f84087941c1037ac19cbd1733ff6cca6a"
55+
]
56+
}
57+
x-commit-hash: "d61533a07cc054622b7d0c84650d208833b10237"
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
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+
synopsis: "The base MirageOS runtime library, part of every MirageOS unikernel"
30+
description: """
31+
A bundle of useful runtime functions for applications built with MirageOS
32+
"""
33+
url {
34+
src:
35+
"https://github.com/mirage/mirage/releases/download/v4.0.0/mirage-4.0.0.tbz"
36+
checksum: [
37+
"sha256=f804161872de6cf20699364f09d03370ed06aafffb12f1d586190832c73a194d"
38+
"sha512=75c1c1cac4c6f862c0055381c7ced123785193234b40da8a8e238cb289cba1a4494378587c4edf2ed872aee7fbfc756f84087941c1037ac19cbd1733ff6cca6a"
39+
]
40+
}
41+
x-commit-hash: "d61533a07cc054622b7d0c84650d208833b10237"

packages/mirage/mirage.4.0.0/opam

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

0 commit comments

Comments
 (0)