this repo has no description
0
fork

Configure Feed

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

Merge pull request #27400 from hannesm/release-tcpip-v9.0.0

[new release] tcpip (9.0.0)

authored by

Shon Feder and committed by
GitHub
e41dcf13 36f4d2d5

+78 -2
+1 -1
packages/charrua-client/charrua-client.1.6.0/opam
··· 34 34 "fmt" 35 35 "ethernet" {>= "3.0.0"} 36 36 "arp" {>= "3.0.0"} 37 - "tcpip" {>= "8.1.0"} 37 + "tcpip" {>= "8.1.0" & < "9.0.0"} 38 38 "lwt" {>= "4.0.0"} 39 39 ] 40 40 build: [
+1 -1
packages/mirage-qubes-ipv4/mirage-qubes-ipv4.1.0.0/opam
··· 15 15 depends: [ 16 16 "dune" {>= "1.0"} 17 17 "mirage-qubes" {= version} 18 - "tcpip" { >= "8.2.0" } 18 + "tcpip" { >= "8.2.0" & < "9.0.0"} 19 19 "ethernet" {>= "3.0.0"} 20 20 "arp" {>= "3.0.0"} 21 21 "ipaddr" { >= "3.0.0" }
+76
packages/tcpip/tcpip.9.0.0/opam
··· 1 + opam-version: "2.0" 2 + maintainer: "anil@recoil.org" 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"