Skip to content

Commit 110500e

Browse files
Merge pull request #27392 from hannesm/release-happy-eyeballs-v2.0.0
[new release] happy-eyeballs (4 packages) (2.0.0)
2 parents 42f133b + 5fd97ce commit 110500e

File tree

13 files changed

+181
-0
lines changed
  • packages
    • conduit-mirage
      • conduit-mirage.6.2.3
      • conduit-mirage.7.0.0
      • conduit-mirage.7.1.0
    • dns-stub
    • happy-eyeballs-lwt/happy-eyeballs-lwt.2.0.0
    • happy-eyeballs-miou-unix/happy-eyeballs-miou-unix.2.0.0
    • happy-eyeballs-mirage/happy-eyeballs-mirage.2.0.0
    • happy-eyeballs/happy-eyeballs.2.0.0
    • http-mirage-client
      • http-mirage-client.0.0.6
      • http-mirage-client.0.0.7
      • http-mirage-client.0.0.8

13 files changed

+181
-0
lines changed

packages/conduit-mirage/conduit-mirage.6.2.3/opam

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ depends: [
2828
"ipaddr-sexp"
2929
"tcpip" {>= "7.0.0"}
3030
"fmt" {>= "0.8.7"}
31+
"happy-eyeballs-mirage" {< "2.0.0"}
3132
]
3233
conflicts: [
3334
"mirage-conduit"

packages/conduit-mirage/conduit-mirage.7.0.0/opam

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ depends: [
2828
"ipaddr-sexp"
2929
"tcpip" {>= "7.0.0"}
3030
"fmt" {>= "0.8.7"}
31+
"happy-eyeballs-mirage" {< "2.0.0"}
3132
]
3233
conflicts: [
3334
"mirage-conduit"

packages/conduit-mirage/conduit-mirage.7.1.0/opam

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ depends: [
2828
"ipaddr-sexp"
2929
"tcpip" {>= "7.0.0"}
3030
"fmt" {>= "0.8.7"}
31+
"happy-eyeballs-mirage" {< "2.0.0"}
3132
]
3233
conflicts: [
3334
"mirage-conduit"

packages/dns-stub/dns-stub.8.0.0/opam

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ depends: [
2525
"mirage-random" {>= "2.0.0"}
2626
"tcpip" {>= "7.0.0"}
2727
"metrics"
28+
"happy-eyeballs-mirage" {< "2.0.0"}
2829
]
2930

3031
build: [

packages/dns-stub/dns-stub.9.0.0/opam

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ depends: [
2525
"tcpip" {>= "8.2.0"}
2626
"metrics"
2727
"mirage-crypto-rng-mirage" {>= "1.0.0"}
28+
"happy-eyeballs-mirage" {< "2.0.0"}
2829
]
2930

3031
build: [

packages/dns-stub/dns-stub.9.1.0/opam

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ depends: [
2525
"tcpip" {>= "8.2.0"}
2626
"metrics"
2727
"mirage-crypto-rng-mirage" {>= "1.0.0"}
28+
"happy-eyeballs-mirage" {< "2.0.0"}
2829
]
2930

3031
build: [
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
opam-version: "2.0"
2+
maintainer: "Robur <[email protected]>"
3+
authors: ["Robur <[email protected]>"]
4+
homepage: "https://github.com/robur-coop/happy-eyeballs"
5+
dev-repo: "git+https://github.com/robur-coop/happy-eyeballs.git"
6+
bug-reports: "https://github.com/robur-coop/happy-eyeballs/issues"
7+
doc: "https://robur-coop.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" {>= "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+
x-maintenance-intent: [ "(latest)" ]
36+
url {
37+
src:
38+
"https://github.com/robur-coop/happy-eyeballs/releases/download/v2.0.0/happy-eyeballs-2.0.0.tbz"
39+
checksum: [
40+
"sha256=a4d0135c87dbeb214d675831e9c4d98a4718bb61c3b86e94aa6f884f80fd9d0f"
41+
"sha512=13dcca220f861ac4535d1256f6ab363a51418ccad2fa0c36cbc879c3acdca3d64eb38cb847bab93d39c0525ad76e2db3f965def6eb2c726ad0388f385393b757"
42+
]
43+
}
44+
x-commit-hash: "545d1ee750d0453d743e90aa3400710fcf902634"
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/robur-coop/happy-eyeballs"
5+
dev-repo: "git+https://github.com/robur-coop/happy-eyeballs.git"
6+
bug-reports: "https://github.com/robur-coop/happy-eyeballs/issues"
7+
doc: "https://robur-coop.github.io/happy-eyeballs/"
8+
license: "ISC"
9+
10+
depends: [
11+
"ocaml" {>= "5.0.0"}
12+
"dune" {>= "2.0.0"}
13+
"happy-eyeballs" {= version}
14+
"miou" {>= "0.2.0"}
15+
"mtime" {>= "2.0.0"}
16+
"duration"
17+
"domain-name"
18+
"ipaddr" {>= "5.6.0"}
19+
"fmt"
20+
"logs" {>= "0.7.0"}
21+
"cmdliner" {>= "1.3.0"}
22+
]
23+
build: [
24+
["dune" "subst"] {dev}
25+
["dune" "build" "-p" name "-j" jobs]
26+
]
27+
28+
synopsis: "Connecting to a remote host via IP version 4 or 6 using Miou"
29+
description: """
30+
Happy eyeballs is an implementation of RFC 8305 which specifies how to connect
31+
to a remote host using either IP protocol version 4 or IP protocol version 6.
32+
This uses Miou for side effects.
33+
"""
34+
x-maintenance-intent: [ "(latest)" ]
35+
url {
36+
src:
37+
"https://github.com/robur-coop/happy-eyeballs/releases/download/v2.0.0/happy-eyeballs-2.0.0.tbz"
38+
checksum: [
39+
"sha256=a4d0135c87dbeb214d675831e9c4d98a4718bb61c3b86e94aa6f884f80fd9d0f"
40+
"sha512=13dcca220f861ac4535d1256f6ab363a51418ccad2fa0c36cbc879c3acdca3d64eb38cb847bab93d39c0525ad76e2db3f965def6eb2c726ad0388f385393b757"
41+
]
42+
}
43+
x-commit-hash: "545d1ee750d0453d743e90aa3400710fcf902634"
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
opam-version: "2.0"
2+
maintainer: "Robur <[email protected]>"
3+
authors: ["Robur <[email protected]>"]
4+
homepage: "https://github.com/robur-coop/happy-eyeballs"
5+
dev-repo: "git+https://github.com/robur-coop/happy-eyeballs.git"
6+
bug-reports: "https://github.com/robur-coop/happy-eyeballs/issues"
7+
doc: "https://robur-coop.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+
"domain-name"
16+
"ipaddr"
17+
"fmt"
18+
"logs"
19+
"lwt"
20+
"mirage-mtime" {>= "4.0.0"}
21+
"tcpip" {>= "7.0.0"}
22+
"mirage-sleep" {>= "4.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 Mirage"
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 Mirage for side effects.
34+
"""
35+
x-maintenance-intent: [ "(latest)" ]
36+
url {
37+
src:
38+
"https://github.com/robur-coop/happy-eyeballs/releases/download/v2.0.0/happy-eyeballs-2.0.0.tbz"
39+
checksum: [
40+
"sha256=a4d0135c87dbeb214d675831e9c4d98a4718bb61c3b86e94aa6f884f80fd9d0f"
41+
"sha512=13dcca220f861ac4535d1256f6ab363a51418ccad2fa0c36cbc879c3acdca3d64eb38cb847bab93d39c0525ad76e2db3f965def6eb2c726ad0388f385393b757"
42+
]
43+
}
44+
x-commit-hash: "545d1ee750d0453d743e90aa3400710fcf902634"
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
opam-version: "2.0"
2+
maintainer: "Robur <[email protected]>"
3+
authors: ["Robur <[email protected]>"]
4+
homepage: "https://github.com/robur-coop/happy-eyeballs"
5+
dev-repo: "git+https://github.com/robur-coop/happy-eyeballs.git"
6+
bug-reports: "https://github.com/robur-coop/happy-eyeballs/issues"
7+
doc: "https://robur-coop.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+
x-maintenance-intent: [ "(latest)" ]
33+
url {
34+
src:
35+
"https://github.com/robur-coop/happy-eyeballs/releases/download/v2.0.0/happy-eyeballs-2.0.0.tbz"
36+
checksum: [
37+
"sha256=a4d0135c87dbeb214d675831e9c4d98a4718bb61c3b86e94aa6f884f80fd9d0f"
38+
"sha512=13dcca220f861ac4535d1256f6ab363a51418ccad2fa0c36cbc879c3acdca3d64eb38cb847bab93d39c0525ad76e2db3f965def6eb2c726ad0388f385393b757"
39+
]
40+
}
41+
x-commit-hash: "545d1ee750d0453d743e90aa3400710fcf902634"

0 commit comments

Comments
 (0)