Skip to content

Commit

Permalink
[new release] mirage-vnetif (2 packages) (0.6.1)
Browse files Browse the repository at this point in the history
CHANGES:

- support newer tcp releases (mirage/mirage-vnetif#35, @hannesm)
- remove mirage-profile and result dependency (mirage/mirage-vnetif#35, @hannesm)
- use mirage-crypto-rng instead of mirage-random-test (mirage/mirage-vnetif#35, @hannesm)
- adapt lower bounds (mirage/mirage-vnetif#35, @hannesm)
  • Loading branch information
hannesm authored and RyanGibb committed May 15, 2024
1 parent 5ce6d8a commit f34ebcb
Show file tree
Hide file tree
Showing 2 changed files with 98 additions and 0 deletions.
55 changes: 55 additions & 0 deletions packages/mirage-vnetif-stack/mirage-vnetif-stack.0.6.1/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
opam-version: "2.0"
maintainer: "Magnus Skjegstad <magnus@skjegstad.com>"
authors: "Magnus Skjegstad <magnus@skjegstad.com>"
homepage: "https://github.com/mirage/mirage-vnetif"
bug-reports: "https://github.com/mirage/mirage-vnetif/issues/"
dev-repo: "git+https://github.com/mirage/mirage-vnetif.git"
doc: "https://mirage.github.io/mirage-vnetif/"
license: "ISC"

build: [
["dune" "subst"] {dev}
["dune" "build" "-p" name "-j" jobs]
["dune" "build" "@test/vnetif-stack/runtest" "-p" name "-j" jobs] {with-test}
]

depends: [
"ocaml" {>= "4.08.0"}
"dune" {>= "1.9"}
"lwt"
"mirage-time" {>= "3.0.0"}
"mirage-clock" {>= "4.0.0"}
"mirage-net" {>= "3.0.0"}
"mirage-random"
"mirage-vnetif" {= version}
"tcpip" {>= "8.0.0"}
"ethernet"
"cstruct" {>="6.0.0"}
"ipaddr" {>= "5.0.0"}
"macaddr"
"arp" {>= "3.0.0"}
"duration"
"logs"
"mirage-time-unix" {with-test}
"mirage-clock-unix" {with-test & >= "4.0.0"}
"mirage-crypto-rng" {with-test & >= "0.11.0"}
"alcotest" {>= "1.5.0" & with-test}
"alcotest-lwt" {>= "1.5.0" & with-test}
]
conflicts: [ "result" {< "1.5"} ]
tags: ["org:mirage"]
synopsis: "Vnetif implementation of mirage-stack for Mirage TCP/IP"
description: """
Provides Vnetif_stack, a mirage-stack implementation using Vnetif and the
Mirage TCP/IP stack. The virtual stack can be used to test and record Mirage
TCP/IP connections over a virtual network interface, as a process or VM.
"""
url {
src:
"https://github.com/mirage/mirage-vnetif/releases/download/v0.6.1/mirage-vnetif-0.6.1.tbz"
checksum: [
"sha256=a6ae3c5298b82316007174c2ba92b8f935a2f15be9d6e023e32bfde716b8dab6"
"sha512=022e7c847c75cb550367cc91772d5e3b1a970192a9983ba8a3ba12ca2ec3594fe25ebcddcff60c57452f00157de31f32dec3d4e9feee6020aaf25a39fa5a17e2"
]
}
x-commit-hash: "9ad448d6dca9ea76c9eac9abfb90899c5c95bbcc"
43 changes: 43 additions & 0 deletions packages/mirage-vnetif/mirage-vnetif.0.6.1/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
opam-version: "2.0"
maintainer: "Magnus Skjegstad <magnus@skjegstad.com>"
authors: "Magnus Skjegstad <magnus@skjegstad.com>"
homepage: "https://github.com/mirage/mirage-vnetif"
bug-reports: "https://github.com/mirage/mirage-vnetif/issues/"
dev-repo: "git+https://github.com/mirage/mirage-vnetif.git"
doc: "https://mirage.github.io/mirage-vnetif/"
license: "ISC"

build: [
["dune" "subst"] {dev}
["dune" "build" "-p" name "-j" jobs]
]

depends: [
"ocaml" {>= "4.08.0"}
"dune" {>= "1.9"}
"lwt"
"mirage-net" {>= "3.0.0"}
"cstruct" {>="6.0.0"}
"ipaddr" {>= "3.0.0"}
"macaddr"
"duration"
"logs"
]
conflicts: [ "result" {< "1.5"} ]
tags: ["org:mirage"]
synopsis: "Virtual network interface and software switch for Mirage"
description: """
Provides the module `Vnetif` which can be used as a replacement for the regular
`Netif` implementation in Xen and Unix. Stacks built using `Vnetif` are
connected to a software switch that allows the stacks to communicate as if they
were connected to the same LAN.
"""
url {
src:
"https://github.com/mirage/mirage-vnetif/releases/download/v0.6.1/mirage-vnetif-0.6.1.tbz"
checksum: [
"sha256=a6ae3c5298b82316007174c2ba92b8f935a2f15be9d6e023e32bfde716b8dab6"
"sha512=022e7c847c75cb550367cc91772d5e3b1a970192a9983ba8a3ba12ca2ec3594fe25ebcddcff60c57452f00157de31f32dec3d4e9feee6020aaf25a39fa5a17e2"
]
}
x-commit-hash: "9ad448d6dca9ea76c9eac9abfb90899c5c95bbcc"

0 comments on commit f34ebcb

Please sign in to comment.