Skip to content

Commit 9f59ecb

Browse files
authored
Merge pull request #26886 from raphael-proust/async_ssl_patch
Patch to fix async_ssl build
2 parents 3b7f991 + 2ed9c88 commit 9f59ecb

File tree

3 files changed

+132
-0
lines changed
  • packages/async_ssl
    • async_ssl.v0.16.0-1
    • async_ssl.v0.16.1-1
    • async_ssl.v0.17.0-1

3 files changed

+132
-0
lines changed
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
opam-version: "2.0"
2+
maintainer: "Jane Street developers"
3+
authors: ["Jane Street Group, LLC"]
4+
homepage: "https://github.com/janestreet/async_ssl"
5+
bug-reports: "https://github.com/janestreet/async_ssl/issues"
6+
dev-repo: "git+https://github.com/janestreet/async_ssl.git"
7+
doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/async_ssl/index.html"
8+
license: "MIT"
9+
patches: [ "no-incompatible-pointer-types-0160.patch" ]
10+
build: [
11+
["dune" "build" "-p" name "-j" jobs]
12+
]
13+
depends: [
14+
"ocaml" {>= "4.14.0"}
15+
"async" {>= "v0.16" & < "v0.17"}
16+
"base" {>= "v0.16" & < "v0.17"}
17+
"core" {>= "v0.16" & < "v0.17"}
18+
"ppx_jane" {>= "v0.16" & < "v0.17"}
19+
"ppx_optcomp" {>= "v0.16" & < "v0.17"}
20+
"stdio" {>= "v0.16" & < "v0.17"}
21+
"conf-libssl"
22+
"ctypes" {>= "0.18.0"}
23+
"ctypes-foreign" {>= "0.18.0"}
24+
"dune" {>= "2.0.0"}
25+
"dune-configurator"
26+
]
27+
synopsis: "An Async-pipe-based interface with OpenSSL"
28+
description: "
29+
This library allows you to create an SSL client and server, with
30+
encrypted communication between both.
31+
"
32+
url {
33+
src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/async_ssl-v0.16.0.tar.gz"
34+
checksum: "sha256=5c9f74ddc00228634c2f6c60c10f3a821dc664f873d80c427284588c3e01bedd"
35+
}
36+
extra-source "no-incompatible-pointer-types-0160.patch" {
37+
src:
38+
"https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/async_ssl/no-incompatible-pointer-types-0160.patch"
39+
checksum: [
40+
"sha256=cbac0da5e278c247e30f19dce943e7346e03aa7f7095d8ee46cf489b49ed110e"
41+
]
42+
}
Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
opam-version: "2.0"
2+
maintainer: "Jane Street developers"
3+
authors: ["Jane Street Group, LLC"]
4+
homepage: "https://github.com/janestreet/async_ssl"
5+
bug-reports: "https://github.com/janestreet/async_ssl/issues"
6+
dev-repo: "git+https://github.com/janestreet/async_ssl.git"
7+
doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/async_ssl/index.html"
8+
license: "MIT"
9+
patches: [ "no-incompatible-pointer-types-0161.patch" ]
10+
build: [
11+
["dune" "build" "-p" name "-j" jobs]
12+
]
13+
depends: [
14+
"ocaml" {>= "4.14.0"}
15+
"async" {>= "v0.16" & < "v0.17"}
16+
"base" {>= "v0.16" & < "v0.17"}
17+
"core" {>= "v0.16" & < "v0.17"}
18+
"ppx_jane" {>= "v0.16" & < "v0.17"}
19+
"ppx_optcomp" {>= "v0.16" & < "v0.17"}
20+
"stdio" {>= "v0.16" & < "v0.17"}
21+
"conf-libssl"
22+
"ctypes" {>= "0.18.0"}
23+
"ctypes-foreign" {>= "0.18.0"}
24+
"dune" {>= "2.0.0"}
25+
"dune-configurator"
26+
]
27+
available: arch != "arm32" & arch != "x86_32"
28+
synopsis: "An Async-pipe-based interface with OpenSSL"
29+
description: "
30+
This library allows you to create an SSL client and server, with
31+
encrypted communication between both.
32+
"
33+
url {
34+
src:
35+
"https://github.com/janestreet/async_ssl/archive/refs/tags/v0.16.1.tar.gz"
36+
checksum: [
37+
"md5=7e404ed41467b7ac0ef985f5ac6eccd8"
38+
"sha512=e4545e91d15d43f1a53ca8d05e8b7d39d11627671d0da2b2b02451b197387b396a310d51397decbd6448fc2bb13aa237b052685263dea4e2010f7884ad94371d"
39+
]
40+
}
41+
extra-source "no-incompatible-pointer-types-0161.patch" {
42+
src:
43+
"https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/async_ssl/no-incompatible-pointer-types-0161.patch"
44+
checksum: [
45+
"sha256=35c417f5e67dee469008e540b98811f0d9450f766b19b4ffd90a828d87fd5e7c"
46+
]
47+
}
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: "Jane Street developers"
3+
authors: ["Jane Street Group, LLC"]
4+
homepage: "https://github.com/janestreet/async_ssl"
5+
bug-reports: "https://github.com/janestreet/async_ssl/issues"
6+
dev-repo: "git+https://github.com/janestreet/async_ssl.git"
7+
doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/async_ssl/index.html"
8+
license: "MIT"
9+
patches: [ "no-incompatible-pointer-types-017.patch" ]
10+
build: [
11+
["dune" "build" "-p" name "-j" jobs]
12+
]
13+
depends: [
14+
"ocaml" {>= "5.1.0"}
15+
"async" {>= "v0.17" & < "v0.18"}
16+
"base" {>= "v0.17" & < "v0.18"}
17+
"core" {>= "v0.17" & < "v0.18"}
18+
"ppx_jane" {>= "v0.17" & < "v0.18"}
19+
"ppx_optcomp" {>= "v0.17" & < "v0.18"}
20+
"stdio" {>= "v0.17" & < "v0.18"}
21+
"conf-libssl"
22+
"ctypes" {>= "0.18.0"}
23+
"ctypes-foreign" {>= "0.18.0"}
24+
"dune" {>= "3.11.0"}
25+
"dune-configurator"
26+
]
27+
available: arch != "arm32" & arch != "x86_32"
28+
synopsis: "An Async-pipe-based interface with OpenSSL"
29+
description: "
30+
This library allows you to create an SSL client and server, with
31+
encrypted communication between both.
32+
"
33+
url {
34+
src: "https://github.com/janestreet/async_ssl/archive/refs/tags/v0.17.0.tar.gz"
35+
checksum: "sha256=d1f9ca883ce9154571b2812235171707b70cb8e65b24ed3aeaec1fbebc5be1ba"
36+
}
37+
extra-source "no-incompatible-pointer-types-017.patch" {
38+
src:
39+
"https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/async_ssl/no-incompatible-pointer-types-017.patch"
40+
checksum: [
41+
"sha256=6e97c88bdeff6f5848c2c173b26845019575c3c09d68cc57a22ef649c4983236"
42+
]
43+
}

0 commit comments

Comments
 (0)