Skip to content

Commit 53dbe3e

Browse files
authored
Merge pull request #23333 from hannesm/release-awa-v0.1.2
[new release] awa, awa-mirage and awa-lwt (0.1.2)
2 parents 89fb026 + dbcf8b3 commit 53dbe3e

File tree

3 files changed

+124
-0
lines changed
  • packages
    • awa/awa.0.1.2
    • awa-lwt/awa-lwt.0.1.2
    • awa-mirage/awa-mirage.0.1.2

3 files changed

+124
-0
lines changed

packages/awa-lwt/awa-lwt.0.1.2/opam

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
opam-version: "2.0"
2+
maintainer: "Christiano F. Haesbaert <[email protected]>"
3+
authors: "Christiano F. Haesbaert <[email protected]>"
4+
license: "ISC"
5+
homepage: "https://github.com/mirage/awa-ssh"
6+
bug-reports: "https://github.com/mirage/awa-ssh/issues"
7+
dev-repo: "git+https://github.com/mirage/awa-ssh.git"
8+
doc: "https://mirage.github.io/awa-ssh/api"
9+
10+
build: [
11+
["dune" "subst"] {dev}
12+
["dune" "build" "-p" name "-j" jobs]
13+
["dune" "runtest" "-p" name "-j" jobs] {with-test}
14+
]
15+
16+
depends: [
17+
"ocaml" {>= "4.08.0"}
18+
"dune" {>= "2.7"}
19+
"awa" {= version}
20+
"cstruct" {>= "6.0.0"}
21+
"mtime" {>= "1.0.0"}
22+
"lwt"
23+
"cstruct-unix"
24+
"mirage-crypto-rng"
25+
]
26+
synopsis: "SSH implementation in OCaml"
27+
description: """The OpenSSH protocol implemented in OCaml."""
28+
url {
29+
src:
30+
"https://github.com/mirage/awa-ssh/releases/download/v0.1.2/awa-0.1.2.tbz"
31+
checksum: [
32+
"sha256=1df22abe6be6762ccf49f487b618f6b32b335595d5863bbbb48f323447ad737f"
33+
"sha512=0e3b210c131f3d095e49108caf26a64283b4bb95947d2c01bbbac728b611eb9f943c6737bbf3d7dc1e0da0e2dc15c17c5c2dee3185899cf6d68bcbb83a6e0272"
34+
]
35+
}
36+
x-commit-hash: "7c65292939ae4dff25170b1dbad6e3bc48d177a4"
+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
opam-version: "2.0"
2+
maintainer: [ "Christiano F. Haesbaert <[email protected]>" "Hannes Mehnert <[email protected]>" ]
3+
authors: "Hannes Mehnert <[email protected]>"
4+
license: "ISC"
5+
homepage: "https://github.com/mirage/awa-ssh"
6+
bug-reports: "https://github.com/mirage/awa-ssh/issues"
7+
dev-repo: "git+https://github.com/mirage/awa-ssh.git"
8+
doc: "https://mirage.github.io/awa-ssh/api"
9+
10+
build: [
11+
["dune" "subst"] {dev}
12+
["dune" "build" "-p" name "-j" jobs]
13+
["dune" "runtest" "-p" name "-j" jobs] {with-test}
14+
]
15+
16+
depends: [
17+
"ocaml" {>= "4.08.0"}
18+
"dune" {>= "2.7"}
19+
"awa" {= version}
20+
"cstruct" {>= "6.0.0"}
21+
"mtime" {>= "1.0.0"}
22+
"lwt"
23+
"mirage-time" {>= "2.0.0"}
24+
"duration" {>= "0.2.0"}
25+
"mirage-flow" {>= "2.0.0"}
26+
"mirage-clock" {>= "3.0.0"}
27+
"logs"
28+
]
29+
synopsis: "SSH implementation in OCaml"
30+
description: """The OpenSSH protocol implemented in OCaml."""
31+
url {
32+
src:
33+
"https://github.com/mirage/awa-ssh/releases/download/v0.1.2/awa-0.1.2.tbz"
34+
checksum: [
35+
"sha256=1df22abe6be6762ccf49f487b618f6b32b335595d5863bbbb48f323447ad737f"
36+
"sha512=0e3b210c131f3d095e49108caf26a64283b4bb95947d2c01bbbac728b611eb9f943c6737bbf3d7dc1e0da0e2dc15c17c5c2dee3185899cf6d68bcbb83a6e0272"
37+
]
38+
}
39+
x-commit-hash: "7c65292939ae4dff25170b1dbad6e3bc48d177a4"

packages/awa/awa.0.1.2/opam

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
opam-version: "2.0"
2+
maintainer: [ "Christiano F. Haesbaert <[email protected]>" "Hannes Mehnert <[email protected]>" ]
3+
authors: [ "Christiano F. Haesbaert <[email protected]>" "Hannes Mehnert <[email protected]>" ]
4+
license: "ISC"
5+
homepage: "https://github.com/mirage/awa-ssh"
6+
bug-reports: "https://github.com/mirage/awa-ssh/issues"
7+
dev-repo: "git+https://github.com/mirage/awa-ssh.git"
8+
doc: "https://mirage.github.io/awa-ssh/api"
9+
10+
build: [
11+
["dune" "subst"] {dev}
12+
["dune" "build" "-p" name "-j" jobs]
13+
["dune" "runtest" "-p" name "-j" jobs] {with-test}
14+
]
15+
16+
depends: [
17+
"ocaml" {>= "4.08.0"}
18+
"dune" {>= "2.7"}
19+
"ppx_sexp_conv"
20+
"ppx_cstruct"
21+
"mirage-crypto" {>= "0.8.1"}
22+
"mirage-crypto-rng" {>= "0.11.0"}
23+
"mirage-crypto-pk"
24+
"mirage-crypto-ec" {>= "0.10.0"}
25+
"x509" {>= "0.15.2"}
26+
"cstruct" {>= "6.0.0"}
27+
"cstruct-unix"
28+
"cstruct-sexp"
29+
"sexplib"
30+
"mtime" {>= "1.0.0"}
31+
"logs"
32+
"fmt"
33+
"cmdliner" {>= "1.1.0"}
34+
"base64" {>= "3.0.0"}
35+
"zarith"
36+
"eqaf" {>= "0.8"}
37+
]
38+
conflicts: [ "result" {< "1.5"} ]
39+
synopsis: "SSH implementation in OCaml"
40+
description: """The OpenSSH protocol implemented in OCaml."""
41+
url {
42+
src:
43+
"https://github.com/mirage/awa-ssh/releases/download/v0.1.2/awa-0.1.2.tbz"
44+
checksum: [
45+
"sha256=1df22abe6be6762ccf49f487b618f6b32b335595d5863bbbb48f323447ad737f"
46+
"sha512=0e3b210c131f3d095e49108caf26a64283b4bb95947d2c01bbbac728b611eb9f943c6737bbf3d7dc1e0da0e2dc15c17c5c2dee3185899cf6d68bcbb83a6e0272"
47+
]
48+
}
49+
x-commit-hash: "7c65292939ae4dff25170b1dbad6e3bc48d177a4"

0 commit comments

Comments
 (0)