Skip to content

Commit 0aa4727

Browse files
committed
add happy-eyeballs 0.5.0
1 parent 17a20eb commit 0aa4727

File tree

3 files changed

+129
-0
lines changed
  • packages
    • happy-eyeballs-lwt/happy-eyeballs-lwt.0.5.0
    • happy-eyeballs-mirage/happy-eyeballs-mirage.0.5.0
    • happy-eyeballs/happy-eyeballs.0.5.0

3 files changed

+129
-0
lines changed
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
opam-version: "2.0"
2+
maintainer: "Robur <[email protected]>"
3+
authors: ["Robur <[email protected]>"]
4+
homepage: "https://github.com/roburio/happy-eyeballs"
5+
dev-repo: "git+https://github.com/roburio/happy-eyeballs.git"
6+
bug-reports: "https://github.com/roburio/happy-eyeballs/issues"
7+
doc: "https://roburio.github.io/happy-eyeballs/"
8+
license: "ISC"
9+
10+
depends: [
11+
"ocaml" {>= "4.08.0"}
12+
"dune" {>= "2.0.0"}
13+
"happy-eyeballs" {=version}
14+
"cmdliner" {>= "1.1.0"}
15+
"duration"
16+
"dns-client-lwt" {>= "7.0.0"}
17+
"domain-name"
18+
"ipaddr"
19+
"fmt"
20+
"logs"
21+
"lwt"
22+
"mtime" {>= "1.0.0"}
23+
]
24+
build: [
25+
["dune" "subst"] {dev}
26+
["dune" "build" "-p" name "-j" jobs]
27+
]
28+
29+
synopsis: "Connecting to a remote host via IP version 4 or 6 using Lwt_unix"
30+
description: """
31+
Happy eyeballs is an implementation of RFC 8305 which specifies how to connect
32+
to a remote host using either IP protocol version 4 or IP protocol version 6.
33+
This uses Lwt and Lwt_unix for side effects.
34+
"""
35+
url {
36+
src:
37+
"https://github.com/roburio/happy-eyeballs/releases/download/v0.5.0/happy-eyeballs-0.5.0.tbz"
38+
checksum: [
39+
"sha256=4f804e1654a3df17d41613fdbfc51a08782686f1ab3327aa35441fefd6dd061e"
40+
"sha512=06f74676c9369209ea445fa222da0b0d7d45a14adfc34c8869ebf1346ad52f53f404d6990ec9460723e01fb53337bd99c9d944fed919a7bdba4e78eb728df773"
41+
]
42+
}
43+
x-commit-hash: "732a23b12c8234f313285df489232c042338394a"
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
opam-version: "2.0"
2+
maintainer: "Robur <[email protected]>"
3+
authors: ["Robur <[email protected]>"]
4+
homepage: "https://github.com/roburio/happy-eyeballs"
5+
dev-repo: "git+https://github.com/roburio/happy-eyeballs.git"
6+
bug-reports: "https://github.com/roburio/happy-eyeballs/issues"
7+
doc: "https://roburio.github.io/happy-eyeballs/"
8+
license: "ISC"
9+
10+
depends: [
11+
"ocaml" {>= "4.08.0"}
12+
"dune" {>= "2.0.0"}
13+
"happy-eyeballs" {=version}
14+
"duration"
15+
"dns-client" {>= "7.0.0"}
16+
"dns-client-mirage" {>= "7.0.0"}
17+
"domain-name"
18+
"ipaddr"
19+
"fmt"
20+
"logs"
21+
"lwt"
22+
"mirage-clock" {>= "3.0.0"}
23+
"tcpip" {>= "7.0.0"}
24+
"mirage-random" {>= "2.0.0"}
25+
"mirage-time" {>= "2.0.0"}
26+
]
27+
build: [
28+
["dune" "subst"] {dev}
29+
["dune" "build" "-p" name "-j" jobs]
30+
]
31+
32+
synopsis: "Connecting to a remote host via IP version 4 or 6 using Mirage"
33+
description: """
34+
Happy eyeballs is an implementation of RFC 8305 which specifies how to connect
35+
to a remote host using either IP protocol version 4 or IP protocol version 6.
36+
This uses Lwt and Mirage for side effects.
37+
"""
38+
url {
39+
src:
40+
"https://github.com/roburio/happy-eyeballs/releases/download/v0.5.0/happy-eyeballs-0.5.0.tbz"
41+
checksum: [
42+
"sha256=4f804e1654a3df17d41613fdbfc51a08782686f1ab3327aa35441fefd6dd061e"
43+
"sha512=06f74676c9369209ea445fa222da0b0d7d45a14adfc34c8869ebf1346ad52f53f404d6990ec9460723e01fb53337bd99c9d944fed919a7bdba4e78eb728df773"
44+
]
45+
}
46+
x-commit-hash: "732a23b12c8234f313285df489232c042338394a"
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
opam-version: "2.0"
2+
maintainer: "Robur <[email protected]>"
3+
authors: ["Robur <[email protected]>"]
4+
homepage: "https://github.com/roburio/happy-eyeballs"
5+
dev-repo: "git+https://github.com/roburio/happy-eyeballs.git"
6+
bug-reports: "https://github.com/roburio/happy-eyeballs/issues"
7+
doc: "https://roburio.github.io/happy-eyeballs/"
8+
license: "ISC"
9+
10+
depends: [
11+
"ocaml" {>= "4.08.0"}
12+
"dune" {>= "2.0.0"}
13+
"duration"
14+
"domain-name" {>= "0.2.0"}
15+
"ipaddr" {>= "5.2.0"}
16+
"fmt" {>= "0.8.7"}
17+
"logs"
18+
]
19+
build: [
20+
["dune" "subst"] {dev}
21+
["dune" "build" "-p" name "-j" jobs]
22+
]
23+
24+
synopsis: "Connecting to a remote host via IP version 4 or 6"
25+
description: """
26+
Happy eyeballs is an implementation of
27+
[RFC 8305](https://datatracker.ietf.org/doc/html/rfc8305) which specifies how
28+
to connect to a remote host using either IP protocol version 4 or IP protocol
29+
version 6. This is the core of the algorithm in value passing style, with a
30+
slick dependency cone.
31+
"""
32+
url {
33+
src:
34+
"https://github.com/roburio/happy-eyeballs/releases/download/v0.5.0/happy-eyeballs-0.5.0.tbz"
35+
checksum: [
36+
"sha256=4f804e1654a3df17d41613fdbfc51a08782686f1ab3327aa35441fefd6dd061e"
37+
"sha512=06f74676c9369209ea445fa222da0b0d7d45a14adfc34c8869ebf1346ad52f53f404d6990ec9460723e01fb53337bd99c9d944fed919a7bdba4e78eb728df773"
38+
]
39+
}
40+
x-commit-hash: "732a23b12c8234f313285df489232c042338394a"

0 commit comments

Comments
 (0)