this repo has no description

[new release] mirage, mirage-runtime, functoria and functoria-runtime (4.3.4)

CHANGES:

#### Fixed

- Add -f <config> to Makefile output (mirage/mirage#1394 @hannesm)

#### Added

- Add tar_kv_ro and tar_kv_rw (mirage/mirage#1389 @reynir)

#### Changed

- Improved documentation of mirage.mli (mirage/mirage#1390 mirage/mirage#1391 @reynir)
- Deprecate Mirage.archive (use tar_kv_ro, mirage/mirage#1389 @reynir)
- Removed deprecated device git_happy_eyeballs (mirage/mirage#1388 @TaeminHa)
- Adapt bounds: mirage-crypto 0.11.0 (mirage/mirage#1392 @hannesm) git-mirage 2.13.0
(mirage/mirage#1396 @hannesm) dns 7.0.0 tls 0.16.0 (mirage/mirage#1399 @hannesm)
mirage-block-ccm (mirage/mirage#1400 @hannesm)
- mirage-runtime: conflict with ppxlib 0.29 (mirage/mirage#1397 @hannesm)
- add upper bound to dune 3.7 until a release of chamelon with fixes lands (see
https://github.com/mirage/mirage/pull/1401#issuecomment-1440762994)

Changed files
+198
packages
functoria
functoria.4.3.4
functoria-runtime
functoria-runtime.4.3.4
mirage
mirage.4.3.4
mirage-runtime
mirage-runtime.4.3.4
+40
packages/functoria-runtime/functoria-runtime.4.3.4/opam
···
+
opam-version: "2.0"
+
maintainer: "Gabriel Radanne <drupyog@zoho.com>"
+
authors: [ "Thomas Gazagnaire"
+
"Anil Madhavapeddy"
+
"Dave Scott"
+
"Thomas Leonard"
+
"Gabriel Radanne" ]
+
homepage: "https://github.com/mirage/mirage"
+
bug-reports: "https://github.com/mirage/mirage/issues"
+
dev-repo: "git+https://github.com/mirage/mirage.git"
+
doc: "https://mirage.github.io/mirage/"
+
license: "ISC"
+
tags: ["org:mirage"]
+
+
build: [
+
["dune" "subst"] {dev}
+
["dune" "build" "-p" name "-j" jobs]
+
["dune" "runtest" "-p" name "-j" jobs] {with-test}
+
]
+
+
depends: [
+
"ocaml" {>= "4.08.0"}
+
"dune" {>= "2.9.0"}
+
"cmdliner" {>= "1.1.0"}
+
"fmt" {>= "0.8.7"}
+
]
+
+
synopsis: "Runtime support library for functoria-generated code"
+
description: """
+
This is the runtime support library for code generated by functoria.
+
"""
+
url {
+
src:
+
"https://github.com/mirage/mirage/releases/download/v4.3.4/mirage-4.3.4.tbz"
+
checksum: [
+
"sha256=64df0b6b6f8dd7dc15a3fbc151f223d7b254e854a9d235fb8769c3a08a51d576"
+
"sha512=9410cc17ad2fda7ffea67eec405f4797f2f27d78ee7aacaae8cdc48793f31da9fed830471edbbcbd12a7550a9dffa21f1b6f9a5507c3177bb696e1e39858a061"
+
]
+
}
+
x-commit-hash: "5644d066c29c0be28fd1ade39047690be6372059"
+58
packages/functoria/functoria.4.3.4/opam
···
+
opam-version: "2.0"
+
maintainer: "Gabriel Radanne <drupyog@zoho.com>"
+
authors: [ "Thomas Gazagnaire"
+
"Anil Madhavapeddy"
+
"Dave Scott"
+
"Thomas Leonard"
+
"Gabriel Radanne" ]
+
homepage: "https://github.com/mirage/mirage"
+
bug-reports: "https://github.com/mirage/mirage/issues"
+
dev-repo: "git+https://github.com/mirage/mirage.git"
+
doc: "https://mirage.github.io/mirage/"
+
license: "ISC"
+
tags: ["org:mirage"]
+
available: opam-version >= "2.1.0"
+
+
build: [
+
["dune" "subst"] {dev}
+
["dune" "build" "-p" name "-j" jobs]
+
["dune" "runtest" "-p" name "-j" jobs] {with-test}
+
["env" "INSIDE_FUNCTORIA_TESTS=1" "dune" "exec" "-p" name "-j" jobs "--"
+
"test/functoria/e2e/test.exe"] {with-test}
+
]
+
+
depends: [
+
"ocaml" {>= "4.08.0"}
+
"dune" {>= "2.9.0"}
+
"dune" {with-test & >= "3.0.0"}
+
"base-unix"
+
"cmdliner" {>= "1.1.1"}
+
"rresult" {>= "0.7.0"}
+
"result" {>= "1.5"}
+
"astring"
+
"fmt" {>= "0.8.7"}
+
"logs"
+
"bos"
+
"fpath"
+
"emile" {>= "1.1"}
+
"uri" {>= "4.2.0"}
+
"alcotest" {with-test}
+
"functoria-runtime" {= version & with-test}
+
]
+
synopsis: "A DSL to organize functor applications"
+
description: """
+
Functoria is a DSL to describe a set of modules and functors, their types and
+
how to apply them in order to produce a complete application.
+
+
The main use case is mirage. See the [mirage](https://github.com/mirage/mirage)
+
repository for details.
+
"""
+
url {
+
src:
+
"https://github.com/mirage/mirage/releases/download/v4.3.4/mirage-4.3.4.tbz"
+
checksum: [
+
"sha256=64df0b6b6f8dd7dc15a3fbc151f223d7b254e854a9d235fb8769c3a08a51d576"
+
"sha512=9410cc17ad2fda7ffea67eec405f4797f2f27d78ee7aacaae8cdc48793f31da9fed830471edbbcbd12a7550a9dffa21f1b6f9a5507c3177bb696e1e39858a061"
+
]
+
}
+
x-commit-hash: "5644d066c29c0be28fd1ade39047690be6372059"
+45
packages/mirage-runtime/mirage-runtime.4.3.4/opam
···
+
opam-version: "2.0"
+
maintainer: ["anil@recoil.org" "thomas@gazagnaire.org"]
+
authors: ["Thomas Gazagnaire" "Anil Madhavapeddy" "Gabriel Radanne"
+
"Mindy Preston" "Thomas Leonard" "Nicolas Ojeda Bar"
+
"Dave Scott" "David Kaloper" "Hannes Mehnert" "Richard Mortier"]
+
homepage: "https://github.com/mirage/mirage"
+
bug-reports: "https://github.com/mirage/mirage/issues/"
+
dev-repo: "git+https://github.com/mirage/mirage.git"
+
license: "ISC"
+
tags: ["org:mirage" "org:xapi-project"]
+
doc: "https://mirage.github.io/mirage/"
+
+
build: [
+
["dune" "subst"] {dev}
+
["dune" "build" "-p" name "-j" jobs]
+
["dune" "runtest" "-p" name "-j" jobs] {with-test}
+
]
+
+
depends: [
+
"ocaml" {>= "4.08.0"}
+
"dune" {>= "2.9.0"}
+
"ipaddr" {>= "5.0.0"}
+
"functoria-runtime" {= version}
+
"fmt" {>= "0.8.4"}
+
"logs"
+
"lwt" {>= "4.0.0"}
+
"alcotest" {with-test}
+
]
+
conflicts: [
+
"result" {< "1.5"}
+
"ppxlib" {= "0.29.0"} #0.29.0 provides a vendored ppx_sexp_conv
+
]
+
synopsis: "The base MirageOS runtime library, part of every MirageOS unikernel"
+
description: """
+
A bundle of useful runtime functions for applications built with MirageOS
+
"""
+
url {
+
src:
+
"https://github.com/mirage/mirage/releases/download/v4.3.4/mirage-4.3.4.tbz"
+
checksum: [
+
"sha256=64df0b6b6f8dd7dc15a3fbc151f223d7b254e854a9d235fb8769c3a08a51d576"
+
"sha512=9410cc17ad2fda7ffea67eec405f4797f2f27d78ee7aacaae8cdc48793f31da9fed830471edbbcbd12a7550a9dffa21f1b6f9a5507c3177bb696e1e39858a061"
+
]
+
}
+
x-commit-hash: "5644d066c29c0be28fd1ade39047690be6372059"
+55
packages/mirage/mirage.4.3.4/opam
···
+
opam-version: "2.0"
+
maintainer: ["anil@recoil.org" "thomas@gazagnaire.org"]
+
authors: ["Thomas Gazagnaire" "Anil Madhavapeddy" "Gabriel Radanne"
+
"Mindy Preston" "Thomas Leonard" "Nicolas Ojeda Bar"
+
"Dave Scott" "David Kaloper" "Hannes Mehnert" "Richard Mortier"]
+
homepage: "https://github.com/mirage/mirage"
+
bug-reports: "https://github.com/mirage/mirage/issues/"
+
dev-repo: "git+https://github.com/mirage/mirage.git"
+
license: "ISC"
+
tags: ["org:mirage" "org:xapi-project"]
+
doc: "https://mirage.github.io/mirage/"
+
available: opam-version >= "2.1.0"
+
+
build: [
+
["dune" "subst"] {dev}
+
["dune" "build" "-p" name "-j" jobs]
+
["dune" "runtest" "-p" name "-j" jobs] {with-test & os != "macos"}
+
]
+
+
depends: [
+
"ocaml" {>= "4.08.0"}
+
"dune" {>= "2.9.0" & < "3.7.0"}
+
"dune" {with-test & >= "3.0.0"}
+
"ipaddr" {>= "5.0.0"}
+
"functoria" {= version}
+
"bos"
+
"astring"
+
"logs"
+
"mirage-runtime" {= version}
+
"opam-monorepo" {>= "0.3.2"}
+
"alcotest" {with-test}
+
"fmt" {>= "0.8.7" & with-test}
+
]
+
synopsis: "The MirageOS library operating system"
+
description: """
+
MirageOS is a library operating system that constructs unikernels for
+
secure, high-performance network applications across a variety of
+
cloud computing and mobile platforms. Code can be developed on a
+
normal OS such as Linux or MacOS X, and then compiled into a
+
fully-standalone, specialised unikernel that runs under the Xen
+
hypervisor.
+
+
Since Xen powers most public cloud computing infrastructure such as
+
Amazon EC2 or Rackspace, this lets your servers run more cheaply,
+
securely and with finer control than with a full software stack.
+
"""
+
url {
+
src:
+
"https://github.com/mirage/mirage/releases/download/v4.3.4/mirage-4.3.4.tbz"
+
checksum: [
+
"sha256=64df0b6b6f8dd7dc15a3fbc151f223d7b254e854a9d235fb8769c3a08a51d576"
+
"sha512=9410cc17ad2fda7ffea67eec405f4797f2f27d78ee7aacaae8cdc48793f31da9fed830471edbbcbd12a7550a9dffa21f1b6f9a5507c3177bb696e1e39858a061"
+
]
+
}
+
x-commit-hash: "5644d066c29c0be28fd1ade39047690be6372059"