Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[new release] tcpip (3.7.0) #13378

Merged
merged 4 commits into from
Feb 4, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion packages/arp/arp.0.2.3/opam
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ depopts: [
]
conflicts: [
"tcpip" {<"2.8.0"}
"tcpip" {>="3.7.0"}
"mirage-types-lwt" {<"3.0.0"}
]
build: [
Expand All @@ -53,4 +54,4 @@ Motivation for this implementation is [written up](https://hannes.nqsb.io/Posts/
url {
archive: "https://github.com/mirage/arp/releases/download/0.2.3/arp-0.2.3.tbz"
checksum: "7e9c65c187e3e1f0939cbc031ae68967"
}
}
4 changes: 2 additions & 2 deletions packages/charrua-core/charrua-core.0.11.1/opam
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ depends: [
"sexplib" {< "v0.12"}
"ipaddr" {>= "3.0.0"}
"macaddr"
"tcpip" {>= "3.6.0"}
"tcpip" {>= "3.6.0" & <"3.7.0"}
"rresult"
"io-page-unix" {with-test}
"cstruct-unix" {with-test}
Expand Down Expand Up @@ -59,4 +59,4 @@ southern South America.
url {
archive: "https://github.com/mirage/charrua-core/releases/download/v0.11.1/charrua-core-0.11.1.tbz"
checksum: "c9f82c844f78643cb05650a397acfb1c"
}
}
2 changes: 1 addition & 1 deletion packages/mirage-nat/mirage-nat.1.0.0/opam
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ depends: [
"lru"
"ppx_deriving" {>= "4.2"}
"jbuilder" {build}
"tcpip" {>= "3.0.0"}
"tcpip" {>= "3.0.0" & <"3.7.0"}
"alcotest" {with-test}
"mirage-clock-unix" {with-test}
]
Expand Down
72 changes: 72 additions & 0 deletions packages/tcpip/tcpip.3.7.0/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
opam-version: "2.0"
maintainer: "[email protected]"
homepage: "https://github.com/mirage/mirage-tcpip"
dev-repo: "git+https://github.com/mirage/mirage-tcpip.git"
bug-reports: "https://github.com/mirage/mirage-tcpip/issues"
doc: "https://mirage.github.io/mirage-tcpip/"
authors: [
"Anil Madhavapeddy" "Balraj Singh" "Richard Mortier" "Nicolas Ojeda Bar"
"Thomas Gazagnaire" "Vincent Bernardoff" "Magnus Skjegstad" "Mindy Preston"
"Thomas Leonard" "David Scott" "Gabor Pali" "Hannes Mehnert" "Haris Rotsos"
"Kia" "Luke Dunstan" "Pablo Polvorin" "Tim Cuthbertson" "lnmx" "pqwy" ]
license: "ISC"
tags: ["org:mirage"]

build: [
["dune" "subst"] {pinned}
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-j" jobs] {with-test}
]

depends: [
"dune" {build & >= "1.0"}
"configurator" {build}
"ocaml" {>= "4.03.0"}
"rresult" {>= "0.5.0"}
"cstruct" {>= "3.0.2"}
"cstruct-lwt"
"mirage-net" {>= "1.0.0"}
"mirage-net-lwt" {>= "1.0.0"}
"mirage-clock" {>= "1.2.0"}
"mirage-random" {>= "1.0.0"}
"mirage-clock-lwt" {>= "1.2.0"}
"mirage-stack-lwt" {>= "1.3.0"}
"mirage-protocols" {>= "1.4.0"}
"mirage-protocols-lwt" {>= "1.4.0"}
"mirage-time-lwt" {>= "1.0.0"}
"ipaddr" {>= "3.0.0"}
"macaddr"
"mirage-profile" {>= "0.5"}
"fmt"
"lwt" {>= "3.0.0"}
"lwt-dllist"
"logs" {>= "0.6.0"}
"duration"
"io-page-unix"
"randomconv"
"ethernet"
"mirage-flow" {with-test & >= "1.2.0"}
"mirage-vnetif" {with-test & >= "0.4.0"}
"alcotest" {with-test & >="0.7.0"}
"pcap-format" {with-test}
"mirage-clock-unix" {with-test & >= "1.2.0"}
"mirage-random-test" {with-test}
"arp-mirage" {with-test}
"lru"
]
synopsis: "OCaml TCP/IP networking stack, used in MirageOS"
description: """
`mirage-tcpip` provides a networking stack for the [Mirage operating
system](https://mirage.io). It provides implementations for the following module types
(which correspond with the similarly-named protocols):

* IP (via the IPv4 and IPv6 modules)
* ICMP
* UDP
* TCP
"""
url {
src:
"https://github.com/mirage/mirage-tcpip/releases/download/v3.7.0/tcpip-v3.7.0.tbz"
checksum: "md5=21ec267e2d1f4a30c45c4f052159b03d"
}