Skip to content

Commit 6402460

Browse files
authored
Merge pull request #13378 from avsm/release-tcpip-3.7.0
[new release] tcpip (3.7.0)
2 parents 51f6393 + 576bcaf commit 6402460

File tree

4 files changed

+77
-4
lines changed
  • packages
    • arp/arp.0.2.3
    • charrua-core/charrua-core.0.11.1
    • mirage-nat/mirage-nat.1.0.0
    • tcpip/tcpip.3.7.0

4 files changed

+77
-4
lines changed

packages/arp/arp.0.2.3/opam

+2-1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ depopts: [
3131
]
3232
conflicts: [
3333
"tcpip" {<"2.8.0"}
34+
"tcpip" {>="3.7.0"}
3435
"mirage-types-lwt" {<"3.0.0"}
3536
]
3637
build: [
@@ -53,4 +54,4 @@ Motivation for this implementation is [written up](https://hannes.nqsb.io/Posts/
5354
url {
5455
archive: "https://github.com/mirage/arp/releases/download/0.2.3/arp-0.2.3.tbz"
5556
checksum: "7e9c65c187e3e1f0939cbc031ae68967"
56-
}
57+
}

packages/charrua-core/charrua-core.0.11.1/opam

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ depends: [
2323
"sexplib" {< "v0.12"}
2424
"ipaddr" {>= "3.0.0"}
2525
"macaddr"
26-
"tcpip" {>= "3.6.0"}
26+
"tcpip" {>= "3.6.0" & <"3.7.0"}
2727
"rresult"
2828
"io-page-unix" {with-test}
2929
"cstruct-unix" {with-test}
@@ -59,4 +59,4 @@ southern South America.
5959
url {
6060
archive: "https://github.com/mirage/charrua-core/releases/download/v0.11.1/charrua-core-0.11.1.tbz"
6161
checksum: "c9f82c844f78643cb05650a397acfb1c"
62-
}
62+
}

packages/mirage-nat/mirage-nat.1.0.0/opam

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ depends: [
2323
"lru"
2424
"ppx_deriving" {>= "4.2"}
2525
"jbuilder" {build}
26-
"tcpip" {>= "3.0.0"}
26+
"tcpip" {>= "3.0.0" & <"3.7.0"}
2727
"alcotest" {with-test}
2828
"mirage-clock-unix" {with-test}
2929
]

packages/tcpip/tcpip.3.7.0/opam

+72
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
opam-version: "2.0"
2+
maintainer: "[email protected]"
3+
homepage: "https://github.com/mirage/mirage-tcpip"
4+
dev-repo: "git+https://github.com/mirage/mirage-tcpip.git"
5+
bug-reports: "https://github.com/mirage/mirage-tcpip/issues"
6+
doc: "https://mirage.github.io/mirage-tcpip/"
7+
authors: [
8+
"Anil Madhavapeddy" "Balraj Singh" "Richard Mortier" "Nicolas Ojeda Bar"
9+
"Thomas Gazagnaire" "Vincent Bernardoff" "Magnus Skjegstad" "Mindy Preston"
10+
"Thomas Leonard" "David Scott" "Gabor Pali" "Hannes Mehnert" "Haris Rotsos"
11+
"Kia" "Luke Dunstan" "Pablo Polvorin" "Tim Cuthbertson" "lnmx" "pqwy" ]
12+
license: "ISC"
13+
tags: ["org:mirage"]
14+
15+
build: [
16+
["dune" "subst"] {pinned}
17+
["dune" "build" "-p" name "-j" jobs]
18+
["dune" "runtest" "-p" name "-j" jobs] {with-test}
19+
]
20+
21+
depends: [
22+
"dune" {build & >= "1.0"}
23+
"configurator" {build}
24+
"ocaml" {>= "4.03.0"}
25+
"rresult" {>= "0.5.0"}
26+
"cstruct" {>= "3.0.2"}
27+
"cstruct-lwt"
28+
"mirage-net" {>= "1.0.0"}
29+
"mirage-net-lwt" {>= "1.0.0"}
30+
"mirage-clock" {>= "1.2.0"}
31+
"mirage-random" {>= "1.0.0"}
32+
"mirage-clock-lwt" {>= "1.2.0"}
33+
"mirage-stack-lwt" {>= "1.3.0"}
34+
"mirage-protocols" {>= "1.4.0"}
35+
"mirage-protocols-lwt" {>= "1.4.0"}
36+
"mirage-time-lwt" {>= "1.0.0"}
37+
"ipaddr" {>= "3.0.0"}
38+
"macaddr"
39+
"mirage-profile" {>= "0.5"}
40+
"fmt"
41+
"lwt" {>= "3.0.0"}
42+
"lwt-dllist"
43+
"logs" {>= "0.6.0"}
44+
"duration"
45+
"io-page-unix"
46+
"randomconv"
47+
"ethernet"
48+
"mirage-flow" {with-test & >= "1.2.0"}
49+
"mirage-vnetif" {with-test & >= "0.4.0"}
50+
"alcotest" {with-test & >="0.7.0"}
51+
"pcap-format" {with-test}
52+
"mirage-clock-unix" {with-test & >= "1.2.0"}
53+
"mirage-random-test" {with-test}
54+
"arp-mirage" {with-test}
55+
"lru"
56+
]
57+
synopsis: "OCaml TCP/IP networking stack, used in MirageOS"
58+
description: """
59+
`mirage-tcpip` provides a networking stack for the [Mirage operating
60+
system](https://mirage.io). It provides implementations for the following module types
61+
(which correspond with the similarly-named protocols):
62+
63+
* IP (via the IPv4 and IPv6 modules)
64+
* ICMP
65+
* UDP
66+
* TCP
67+
"""
68+
url {
69+
src:
70+
"https://github.com/mirage/mirage-tcpip/releases/download/v3.7.0/tcpip-v3.7.0.tbz"
71+
checksum: "md5=21ec267e2d1f4a30c45c4f052159b03d"
72+
}

0 commit comments

Comments
 (0)