this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #26741 from hannesm/release-mirage-v4.8.1

[new release] mirage (2 packages) (4.8.1)

authored by

Calascibetta Romain and committed by
GitHub
178b6116 eeae27e7

+107
+44
packages/mirage-runtime/mirage-runtime.4.8.1/opam
··· 1 + opam-version: "2.0" 2 + maintainer: ["anil@recoil.org" "thomas@gazagnaire.org"] 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.13.0"} 22 + "dune" {>= "2.9.0"} 23 + "logs" {>= "0.7.0"} 24 + "lwt" {>= "4.0.0"} 25 + "ipaddr" {>= "5.5.0"} 26 + "cmdliner" {>= "1.2.0"} 27 + ] 28 + conflicts: [ 29 + "result" {< "1.5"} 30 + "ppxlib" {= "0.29.0"} #0.29.0 provides a vendored ppx_sexp_conv 31 + ] 32 + synopsis: "The base MirageOS runtime library, part of every MirageOS unikernel" 33 + description: """ 34 + A bundle of useful runtime functions for applications built with MirageOS 35 + """ 36 + url { 37 + src: 38 + "https://github.com/mirage/mirage/releases/download/v4.8.1/mirage-4.8.1.tbz" 39 + checksum: [ 40 + "sha256=c024c04ab11c5ad6a25d7a00d44734a3c18ffe5012cc999412d853ff70c89476" 41 + "sha512=8b2546975f7f23dcd39796a04818d1978bae593e3179c3d00afd25ec8f3d39525b6bea91ab62987795ced217a602f49abe26742fcfd044914f0a158bbbb8f676" 42 + ] 43 + } 44 + x-commit-hash: "070af6b65e50948e82d64e4998a8639a57f1178c"
+63
packages/mirage/mirage.4.8.1/opam
··· 1 + opam-version: "2.0" 2 + maintainer: ["anil@recoil.org" "thomas@gazagnaire.org"] 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.13.0"} 22 + "ocaml" {with-test & < "5"} 23 + "dune" {>= "2.9.0"} 24 + "astring" 25 + "cmdliner" {>= "1.2.0"} 26 + "cmdliner" {with-test & >= "1.3.0"} 27 + "emile" {>= "1.1"} 28 + "fmt" {>= "0.8.7"} 29 + "ipaddr" {>= "5.0.0"} 30 + "bos" 31 + "fpath" 32 + "rresult" {>= "0.7.0"} 33 + "uri" {>= "4.2.0"} 34 + "logs" {>= "0.7.0"} 35 + "opam-monorepo" {>= "0.4.0"} 36 + "alcotest" {with-test} 37 + "mirage-runtime" {with-test & = version} 38 + ] 39 + 40 + conflicts: [ "jbuilder" {with-test} ] 41 + 42 + synopsis: "The MirageOS library operating system" 43 + description: """ 44 + MirageOS is a library operating system that constructs unikernels for 45 + secure, high-performance network applications across a variety of 46 + cloud computing and mobile platforms. Code can be developed on a 47 + normal OS such as Linux or MacOS X, and then compiled into a 48 + fully-standalone, specialised unikernel that runs under the Xen 49 + hypervisor. 50 + 51 + Since Xen powers most public cloud computing infrastructure such as 52 + Amazon EC2 or Rackspace, this lets your servers run more cheaply, 53 + securely and with finer control than with a full software stack. 54 + """ 55 + url { 56 + src: 57 + "https://github.com/mirage/mirage/releases/download/v4.8.1/mirage-4.8.1.tbz" 58 + checksum: [ 59 + "sha256=c024c04ab11c5ad6a25d7a00d44734a3c18ffe5012cc999412d853ff70c89476" 60 + "sha512=8b2546975f7f23dcd39796a04818d1978bae593e3179c3d00afd25ec8f3d39525b6bea91ab62987795ced217a602f49abe26742fcfd044914f0a158bbbb8f676" 61 + ] 62 + } 63 + x-commit-hash: "070af6b65e50948e82d64e4998a8639a57f1178c"