Skip to content

Commit ad69387

Browse files
authored
Merge pull request #26509 from vbmithr/release-websocket-2.17
[new release] websocket (3 packages) (2.17)
2 parents e430cc1 + 6c4982b commit ad69387

File tree

3 files changed

+179
-0
lines changed
  • packages
    • websocket/websocket.2.17
    • websocket-async/websocket-async.2.17
    • websocket-lwt-unix/websocket-lwt-unix.2.17

3 files changed

+179
-0
lines changed
Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
opam-version: "2.0"
2+
synopsis: "Websocket library (Async)"
3+
description: """
4+
The WebSocket Protocol enables two-way communication between a client
5+
running untrusted code in a controlled environment to a remote host
6+
that has opted-in to communications from that code.
7+
8+
The security model used for this is the origin-based security model
9+
commonly used by web browsers. The protocol consists of an opening
10+
handshake followed by basic message framing, layered over TCP.
11+
12+
The goal of this technology is to provide a mechanism for
13+
browser-based applications that need two-way communication with
14+
servers that does not rely on opening multiple HTTP connections (e.g.,
15+
using XMLHttpRequest or <iframe>s and long polling).
16+
"""
17+
maintainer: ["Vincent Bernardoff <[email protected]>"]
18+
authors: ["Vincent Bernardoff <[email protected]>"]
19+
license: "ISC"
20+
tags: ["org:mirage" "org:xapi-project"]
21+
homepage: "https://github.com/vbmithr/ocaml-websocket"
22+
doc: "https://vbmithr.github.io/ocaml-websocket/doc"
23+
bug-reports: "https://github.com/vbmithr/ocaml-websocket/issues"
24+
depends: [
25+
"dune" {>= "2.9"}
26+
"ocaml" {>= "4.06.0"}
27+
"websocket" {= version}
28+
"core" {>= "v0.15.0"}
29+
"core_unix" {>= "v0.15.0"}
30+
"async" {>= "v0.17.0"}
31+
"cohttp-async" {>= "5.0.0"}
32+
"logs-async" {>= "1.1"}
33+
"logs-async-reporter" {>= "1.0"}
34+
"odoc" {with-doc}
35+
]
36+
build: [
37+
["dune" "subst"] {dev}
38+
[
39+
"dune"
40+
"build"
41+
"-p"
42+
name
43+
"-j"
44+
jobs
45+
"--promote-install-files=false"
46+
"@install"
47+
"@runtest" {with-test}
48+
"@doc" {with-doc}
49+
]
50+
["dune" "install" "-p" name "--create-install-files" name]
51+
]
52+
dev-repo: "git+https://github.com/vbmithr/ocaml-websocket.git"
53+
url {
54+
src:
55+
"https://github.com/vbmithr/ocaml-websocket/releases/download/2.17/websocket-2.17.tbz"
56+
checksum: [
57+
"sha256=39af5eb5534b2df5b65ccf700b0a620438be5f09864a8e80b48ab60ee67a7a9c"
58+
"sha512=a8cd168236acfa1156fac5a007fe6875a35f8fb03eee30a94eb712a2dc981a967bb8fb74fdd7aa7892d148176070333d49311ea9600f5a210e56be8da32197c8"
59+
]
60+
}
61+
x-commit-hash: "926ed9c4cc90244d0a12bc27d46076edd2eb2f56"
Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
opam-version: "2.0"
2+
synopsis: "Websocket library (Lwt)"
3+
description: """
4+
The WebSocket Protocol enables two-way communication between a client
5+
running untrusted code in a controlled environment to a remote host
6+
that has opted-in to communications from that code.
7+
8+
The security model used for this is the origin-based security model
9+
commonly used by web browsers. The protocol consists of an opening
10+
handshake followed by basic message framing, layered over TCP.
11+
12+
The goal of this technology is to provide a mechanism for
13+
browser-based applications that need two-way communication with
14+
servers that does not rely on opening multiple HTTP connections (e.g.,
15+
using XMLHttpRequest or <iframe>s and long polling).
16+
"""
17+
maintainer: ["Vincent Bernardoff <[email protected]>"]
18+
authors: ["Vincent Bernardoff <[email protected]>"]
19+
license: "ISC"
20+
tags: ["org:mirage" "org:xapi-project"]
21+
homepage: "https://github.com/vbmithr/ocaml-websocket"
22+
doc: "https://vbmithr.github.io/ocaml-websocket/doc"
23+
bug-reports: "https://github.com/vbmithr/ocaml-websocket/issues"
24+
depends: [
25+
"dune" {>= "2.9"}
26+
"ocaml" {>= "4.06.0"}
27+
"websocket" {= version}
28+
"lwt_log" {>= "1.1.1"}
29+
"cohttp-lwt-unix" {>= "5.0.0" & < "6.0.0~"}
30+
"sexplib"
31+
"odoc" {with-doc}
32+
]
33+
build: [
34+
["dune" "subst"] {dev}
35+
[
36+
"dune"
37+
"build"
38+
"-p"
39+
name
40+
"-j"
41+
jobs
42+
"--promote-install-files=false"
43+
"@install"
44+
"@runtest" {with-test}
45+
"@doc" {with-doc}
46+
]
47+
["dune" "install" "-p" name "--create-install-files" name]
48+
]
49+
dev-repo: "git+https://github.com/vbmithr/ocaml-websocket.git"
50+
url {
51+
src:
52+
"https://github.com/vbmithr/ocaml-websocket/releases/download/2.17/websocket-2.17.tbz"
53+
checksum: [
54+
"sha256=39af5eb5534b2df5b65ccf700b0a620438be5f09864a8e80b48ab60ee67a7a9c"
55+
"sha512=a8cd168236acfa1156fac5a007fe6875a35f8fb03eee30a94eb712a2dc981a967bb8fb74fdd7aa7892d148176070333d49311ea9600f5a210e56be8da32197c8"
56+
]
57+
}
58+
x-commit-hash: "926ed9c4cc90244d0a12bc27d46076edd2eb2f56"
Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
opam-version: "2.0"
2+
synopsis: "Websocket library"
3+
description: """
4+
The WebSocket Protocol enables two-way communication between a client
5+
running untrusted code in a controlled environment to a remote host
6+
that has opted-in to communications from that code.
7+
8+
The security model used for this is the origin-based security model
9+
commonly used by web browsers. The protocol consists of an opening
10+
handshake followed by basic message framing, layered over TCP.
11+
12+
The goal of this technology is to provide a mechanism for
13+
browser-based applications that need two-way communication with
14+
servers that does not rely on opening multiple HTTP connections (e.g.,
15+
using XMLHttpRequest or <iframe>s and long polling).
16+
"""
17+
maintainer: ["Vincent Bernardoff <[email protected]>"]
18+
authors: ["Vincent Bernardoff <[email protected]>"]
19+
license: "ISC"
20+
tags: ["org:mirage" "org:xapi-project"]
21+
homepage: "https://github.com/vbmithr/ocaml-websocket"
22+
doc: "https://vbmithr.github.io/ocaml-websocket/doc"
23+
bug-reports: "https://github.com/vbmithr/ocaml-websocket/issues"
24+
depends: [
25+
"dune" {>= "2.9"}
26+
"ocaml" {>= "4.06.0"}
27+
"base64" {>= "3.3.0"}
28+
"conduit" {>= "5.1.0"}
29+
"cohttp" {>= "5.0.0"}
30+
"ocplib-endian" {>= "1.0"}
31+
"astring" {>= "0.8.3"}
32+
"mirage-crypto-rng" {>= "1.0.0"}
33+
"odoc" {with-doc}
34+
]
35+
build: [
36+
["dune" "subst"] {dev}
37+
[
38+
"dune"
39+
"build"
40+
"-p"
41+
name
42+
"-j"
43+
jobs
44+
"--promote-install-files=false"
45+
"@install"
46+
"@runtest" {with-test}
47+
"@doc" {with-doc}
48+
]
49+
["dune" "install" "-p" name "--create-install-files" name]
50+
]
51+
dev-repo: "git+https://github.com/vbmithr/ocaml-websocket.git"
52+
url {
53+
src:
54+
"https://github.com/vbmithr/ocaml-websocket/releases/download/2.17/websocket-2.17.tbz"
55+
checksum: [
56+
"sha256=39af5eb5534b2df5b65ccf700b0a620438be5f09864a8e80b48ab60ee67a7a9c"
57+
"sha512=a8cd168236acfa1156fac5a007fe6875a35f8fb03eee30a94eb712a2dc981a967bb8fb74fdd7aa7892d148176070333d49311ea9600f5a210e56be8da32197c8"
58+
]
59+
}
60+
x-commit-hash: "926ed9c4cc90244d0a12bc27d46076edd2eb2f56"

0 commit comments

Comments
 (0)