Skip to content

Commit e41dcf1

Browse files
authored
Merge pull request #27400 from hannesm/release-tcpip-v9.0.0
[new release] tcpip (9.0.0)
2 parents 36f4d2d + 6609c71 commit e41dcf1

File tree

3 files changed

+78
-2
lines changed
  • packages
    • charrua-client/charrua-client.1.6.0
    • mirage-qubes-ipv4/mirage-qubes-ipv4.1.0.0
    • tcpip/tcpip.9.0.0

3 files changed

+78
-2
lines changed

packages/charrua-client/charrua-client.1.6.0/opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ depends: [
3434
"fmt"
3535
"ethernet" {>= "3.0.0"}
3636
"arp" {>= "3.0.0"}
37-
"tcpip" {>= "8.1.0"}
37+
"tcpip" {>= "8.1.0" & < "9.0.0"}
3838
"lwt" {>= "4.0.0"}
3939
]
4040
build: [

packages/mirage-qubes-ipv4/mirage-qubes-ipv4.1.0.0/opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ build: [
1515
depends: [
1616
"dune" {>= "1.0"}
1717
"mirage-qubes" {= version}
18-
"tcpip" { >= "8.2.0" }
18+
"tcpip" { >= "8.2.0" & < "9.0.0"}
1919
"ethernet" {>= "3.0.0"}
2020
"arp" {>= "3.0.0"}
2121
"ipaddr" { >= "3.0.0" }

packages/tcpip/tcpip.9.0.0/opam

Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
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+
x-maintenance-intent: [ "(latest)" ]
15+
16+
build: [
17+
["dune" "subst"] {dev}
18+
["dune" "build" "-p" name "-j" jobs]
19+
["dune" "runtest" "-p" name "-j" jobs] {with-test}
20+
]
21+
conflicts: [
22+
"mirage-xen" {< "6.0.0"}
23+
"ocaml-freestanding"
24+
"result" {< "1.5"}
25+
]
26+
depends: [
27+
"dune" {>= "2.7.0"}
28+
"bisect_ppx" {dev & >= "2.5.0"}
29+
"ocaml" {>= "4.08.0"}
30+
"cstruct" {>= "6.0.0"}
31+
"cstruct-lwt"
32+
"mirage-net" {>= "3.0.0"}
33+
"mirage-mtime" {>= "4.0.0"}
34+
"mirage-crypto-rng" {>= "1.2.0"}
35+
"mirage-sleep" {>= "4.0.0"}
36+
"ipaddr" {>= "5.6.0"}
37+
"macaddr" {>="4.0.0"}
38+
"macaddr-cstruct"
39+
"fmt" {>= "0.8.7"}
40+
"lwt" {>= "4.0.0"}
41+
"lwt-dllist"
42+
"logs" {>= "0.6.0"}
43+
"duration"
44+
"randomconv" {>= "0.2.0"}
45+
"ethernet" {>= "3.0.0"}
46+
"arp" {>= "4.0.0"}
47+
"mirage-flow" {>= "4.0.0"}
48+
"mirage-vnetif" {with-test & >= "0.6.2"}
49+
"alcotest" {with-test & >="1.5.0"}
50+
"pcap-format" {with-test}
51+
"ipaddr-cstruct"
52+
"macaddr-cstruct"
53+
"lru" {>= "0.3.0"}
54+
"metrics"
55+
"cmdliner" {>= "1.1.0"}
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/v9.0.0/tcpip-9.0.0.tbz"
71+
checksum: [
72+
"sha256=59377ed359080d8da94aec91474a533bad955c12be79827bec853ccb496d659a"
73+
"sha512=3f2ed5cbd5bdcd9a664e9ee0b7dbfc65b0a698e6c4bb77ee6a85a139b18cdee24415d76fb821466a9aff2e390318a8657b83871768c259557f25684ab6ccf83b"
74+
]
75+
}
76+
x-commit-hash: "6766a3f0b34695e19797a1264697d3dd1343c73e"

0 commit comments

Comments
 (0)