Skip to content

Commit 2d9dbd6

Browse files
committed
[new release] letsencrypt, letsencrypt-mirage, letsencrypt-dns and letsencrypt-app (0.5.1)
CHANGES: * letsencrypt-mirage: allow alpn protocols to be specified (robur-coop/ocaml-letsencrypt#33 @dinosaure)
1 parent be6f749 commit 2d9dbd6

File tree

4 files changed

+160
-0
lines changed
  • packages
    • letsencrypt-app/letsencrypt-app.0.5.1
    • letsencrypt-dns/letsencrypt-dns.0.5.1
    • letsencrypt-mirage/letsencrypt-mirage.0.5.1
    • letsencrypt/letsencrypt.0.5.1

4 files changed

+160
-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+
synopsis: "ACME implementation in OCaml"
3+
description: "An ACME client implementation of the ACME protocol (RFC 8555) for OCaml"
4+
maintainer: "Michele Mu <[email protected]>"
5+
authors:
6+
"Michele Mu <[email protected]>, Hannes Mehnert <[email protected]>"
7+
license: "BSD-2-clause"
8+
homepage: "https://github.com/mmaker/ocaml-letsencrypt"
9+
bug-reports: "https://github.com/mmaker/ocaml-letsencrypt/issues"
10+
doc: "https://mmaker.github.io/ocaml-letsencrypt"
11+
depends: [
12+
"ocaml" {>= "4.08.0"}
13+
"dune" {>= "1.2.0"}
14+
"letsencrypt" {= version}
15+
"letsencrypt-dns" {= version}
16+
"cmdliner" {>= "1.1.0"}
17+
"cohttp-lwt-unix" {>= "1.0.0"}
18+
"logs"
19+
"fmt" {>= "0.8.7"}
20+
"lwt" {>= "2.6.0"}
21+
"mirage-crypto-rng" {>= "0.11.0"}
22+
"ptime"
23+
"bos"
24+
"fpath"
25+
"randomconv"
26+
"cstruct" {>= "6.0.0"}
27+
]
28+
build: [
29+
["dune" "subst"] {dev}
30+
["dune" "build" "-p" name "-j" jobs]
31+
["dune" "runtest" "-p" name "-j" jobs] {with-test}
32+
]
33+
dev-repo: "git+https://github.com/mmaker/ocaml-letsencrypt.git"
34+
url {
35+
src:
36+
"https://github.com/mmaker/ocaml-letsencrypt/releases/download/v0.5.1/letsencrypt-0.5.1.tbz"
37+
checksum: [
38+
"sha256=b90387a5dc8f839926b3e9de831a503317e1a30e9ab99d22a6de64b285d8a35c"
39+
"sha512=cc2fb7aeba6469d8a3ae20d5bb6857c4035300059149d53ddaee802f125e99dd3078ef699e34a052105533622797194ff80ee9f6b84a7aae5fef0e5866cfada7"
40+
]
41+
}
42+
x-commit-hash: "56a10de7baf223382856796d5dc2f75555a74efd"
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
opam-version: "2.0"
2+
synopsis: "DNS solver for ACME implementation in OCaml"
3+
description: "A DNS solver for the ACME implementation in OCaml."
4+
maintainer: "Michele Mu <[email protected]>"
5+
authors:
6+
"Michele Mu <[email protected]>, Hannes Mehnert <[email protected]>"
7+
license: "BSD-2-clause"
8+
homepage: "https://github.com/mmaker/ocaml-letsencrypt"
9+
bug-reports: "https://github.com/mmaker/ocaml-letsencrypt/issues"
10+
doc: "https://mmaker.github.io/ocaml-letsencrypt"
11+
depends: [
12+
"ocaml" {>= "4.08.0"}
13+
"dune" {>= "1.2.0"}
14+
"letsencrypt" {= version}
15+
"logs"
16+
"fmt" {>= "0.8.7"}
17+
"lwt" {>= "2.6.0"}
18+
"dns"
19+
"dns-tsig"
20+
"domain-name" {>= "0.2.0"}
21+
]
22+
build: [
23+
["dune" "subst"] {dev}
24+
["dune" "build" "-p" name "-j" jobs]
25+
["dune" "runtest" "-p" name "-j" jobs] {with-test}
26+
]
27+
dev-repo: "git+https://github.com/mmaker/ocaml-letsencrypt.git"
28+
url {
29+
src:
30+
"https://github.com/mmaker/ocaml-letsencrypt/releases/download/v0.5.1/letsencrypt-0.5.1.tbz"
31+
checksum: [
32+
"sha256=b90387a5dc8f839926b3e9de831a503317e1a30e9ab99d22a6de64b285d8a35c"
33+
"sha512=cc2fb7aeba6469d8a3ae20d5bb6857c4035300059149d53ddaee802f125e99dd3078ef699e34a052105533622797194ff80ee9f6b84a7aae5fef0e5866cfada7"
34+
]
35+
}
36+
x-commit-hash: "56a10de7baf223382856796d5dc2f75555a74efd"
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
opam-version: "2.0"
2+
synopsis: "ACME implementation in OCaml for MirageOS"
3+
description: "An ACME client implementation of the ACME protocol (RFC 8555) for OCaml & MirageOS"
4+
maintainer: "Michele Mu <[email protected]>"
5+
authors:
6+
"Michele Mu <[email protected]>, Hannes Mehnert <[email protected]>"
7+
license: "BSD-2-clause"
8+
homepage: "https://github.com/mmaker/ocaml-letsencrypt"
9+
bug-reports: "https://github.com/mmaker/ocaml-letsencrypt/issues"
10+
doc: "https://mmaker.github.io/ocaml-letsencrypt"
11+
depends: [
12+
"ocaml" {>= "4.08.0"}
13+
"dune" {>= "1.2.0"}
14+
"letsencrypt" {= version}
15+
"http-mirage-client"
16+
"tcpip" {>= "7.0.0"}
17+
"mirage-time" {>= "3.0.0"}
18+
"duration"
19+
"emile" {>= "1.1"}
20+
"paf" {>= "0.4.0"}
21+
]
22+
build: [
23+
["dune" "subst"] {dev}
24+
["dune" "build" "-p" name "-j" jobs]
25+
["dune" "runtest" "-p" name "-j" jobs] {with-test}
26+
]
27+
dev-repo: "git+https://github.com/mmaker/ocaml-letsencrypt.git"
28+
url {
29+
src:
30+
"https://github.com/mmaker/ocaml-letsencrypt/releases/download/v0.5.1/letsencrypt-0.5.1.tbz"
31+
checksum: [
32+
"sha256=b90387a5dc8f839926b3e9de831a503317e1a30e9ab99d22a6de64b285d8a35c"
33+
"sha512=cc2fb7aeba6469d8a3ae20d5bb6857c4035300059149d53ddaee802f125e99dd3078ef699e34a052105533622797194ff80ee9f6b84a7aae5fef0e5866cfada7"
34+
]
35+
}
36+
x-commit-hash: "56a10de7baf223382856796d5dc2f75555a74efd"
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
opam-version: "2.0"
2+
synopsis: "ACME implementation in OCaml"
3+
description: "An implementation of the ACME protocol (RFC 8555) for OCaml"
4+
maintainer: "Michele Mu <[email protected]>"
5+
authors:
6+
"Michele Mu <[email protected]>, Hannes Mehnert <[email protected]>"
7+
license: "BSD-2-clause"
8+
homepage: "https://github.com/mmaker/ocaml-letsencrypt"
9+
bug-reports: "https://github.com/mmaker/ocaml-letsencrypt/issues"
10+
doc: "https://mmaker.github.io/ocaml-letsencrypt"
11+
depends: [
12+
"ocaml" {>= "4.08.0"}
13+
"dune" {>= "1.2.0"}
14+
"base64" {>= "3.3.0"}
15+
"logs"
16+
"fmt" {>= "0.8.7"}
17+
"uri"
18+
"lwt" {>= "2.6.0"}
19+
"mirage-crypto"
20+
"mirage-crypto-ec"
21+
"mirage-crypto-pk"
22+
"mirage-crypto-pk" {with-test & >= "0.8.9"}
23+
"mirage-crypto-rng" {with-test & >= "0.11.0"}
24+
"x509" {>= "0.13.0"}
25+
"yojson" {>= "1.6.0"}
26+
"ounit" {with-test}
27+
"ptime"
28+
"domain-name" {>= "0.2.0"}
29+
"cstruct" {>= "6.0.0"}
30+
]
31+
conflicts: [ "result" {< "1.5"} ]
32+
build: [
33+
["dune" "subst"] {dev}
34+
["dune" "build" "-p" name "-j" jobs]
35+
["dune" "runtest" "-p" name "-j" jobs] {with-test}
36+
]
37+
dev-repo: "git+https://github.com/mmaker/ocaml-letsencrypt.git"
38+
url {
39+
src:
40+
"https://github.com/mmaker/ocaml-letsencrypt/releases/download/v0.5.1/letsencrypt-0.5.1.tbz"
41+
checksum: [
42+
"sha256=b90387a5dc8f839926b3e9de831a503317e1a30e9ab99d22a6de64b285d8a35c"
43+
"sha512=cc2fb7aeba6469d8a3ae20d5bb6857c4035300059149d53ddaee802f125e99dd3078ef699e34a052105533622797194ff80ee9f6b84a7aae5fef0e5866cfada7"
44+
]
45+
}
46+
x-commit-hash: "56a10de7baf223382856796d5dc2f75555a74efd"

0 commit comments

Comments
 (0)