forked from ocaml/opam-repository
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[new release] letsencrypt, letsencrypt-dns and letsencrypt-app (0.4.0)
CHANGES: * support EC (P-256, P-384, P-521) account keys (@reynir @hannesm) (reported in robur-coop/ocaml-letsencrypt#24 by @dinosaure) * allow key_type to be passed into the alpn_solver (@hannesm) * add RFC 7520 test cases (@reynir @hannesm) * remove astring dependency (@hannesm) * bugfix: "orders" field in account is Uri.t option, not a list (@hannesm) (reported in robur-coop/ocaml-letsencrypt#27 by @torinnd)
- Loading branch information
1 parent
bf04be3
commit 68440dc
Showing
3 changed files
with
122 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
opam-version: "2.0" | ||
synopsis: "ACME implementation in OCaml" | ||
description: "An ACME client implementation of the ACME protocol (RFC 8555) for OCaml" | ||
maintainer: "Michele Mu <maker@tumbolandia.net>" | ||
authors: | ||
"Michele Mu <maker@tumbolandia.net>, Hannes Mehnert <hannes@mehnert.org>" | ||
license: "BSD-2-clause" | ||
homepage: "https://github.com/mmaker/ocaml-letsencrypt" | ||
bug-reports: "https://github.com/mmaker/ocaml-letsencrypt/issues" | ||
doc: "https://mmaker.github.io/ocaml-letsencrypt" | ||
depends: [ | ||
"ocaml" {>= "4.08.0"} | ||
"dune" {>= "1.2.0"} | ||
"letsencrypt" {= version} | ||
"letsencrypt-dns" {= version} | ||
"cmdliner" | ||
"cohttp-lwt-unix" {>= "1.0.0"} | ||
"logs" | ||
"fmt" | ||
"lwt" {>= "2.6.0"} | ||
"mirage-crypto-rng" | ||
"ptime" | ||
"bos" | ||
"fpath" | ||
"randomconv" | ||
"cstruct" {>= "6.0.0"} | ||
] | ||
build: [ | ||
["dune" "subst"] {dev} | ||
["dune" "build" "-p" name "-j" jobs] | ||
["dune" "runtest" "-p" name "-j" jobs] {with-test} | ||
] | ||
dev-repo: "git+https://github.com/mmaker/ocaml-letsencrypt.git" | ||
url { | ||
src: | ||
"https://github.com/mmaker/ocaml-letsencrypt/releases/download/v0.4.0/letsencrypt-v0.4.0.tbz" | ||
checksum: [ | ||
"sha256=bdcc186ebe3e38ecfe38de495637b09c987f7b540a5a975a5982f2ffff0f720a" | ||
"sha512=ca15cdf853b5460340f7ee448dc4ef70e1f10b5775e2ca6f7e869c5b0ad7e5b1ecf20c1647705a6662746b2a5805a28255f84f8fe2d0801b956dd82f0064f710" | ||
] | ||
} | ||
x-commit-hash: "5f1579db6335744a8e9f39165e7db499cf42d50b" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
opam-version: "2.0" | ||
synopsis: "DNS solver for ACME implementation in OCaml" | ||
description: "A DNS solver for the ACME implementation in OCaml." | ||
maintainer: "Michele Mu <maker@tumbolandia.net>" | ||
authors: | ||
"Michele Mu <maker@tumbolandia.net>, Hannes Mehnert <hannes@mehnert.org>" | ||
license: "BSD-2-clause" | ||
homepage: "https://github.com/mmaker/ocaml-letsencrypt" | ||
bug-reports: "https://github.com/mmaker/ocaml-letsencrypt/issues" | ||
doc: "https://mmaker.github.io/ocaml-letsencrypt" | ||
depends: [ | ||
"ocaml" {>= "4.08.0"} | ||
"dune" {>= "1.2.0"} | ||
"letsencrypt" {= version} | ||
"logs" | ||
"fmt" | ||
"lwt" {>= "2.6.0"} | ||
"dns" | ||
"dns-tsig" | ||
"domain-name" {>= "0.2.0"} | ||
] | ||
build: [ | ||
["dune" "subst"] {dev} | ||
["dune" "build" "-p" name "-j" jobs] | ||
["dune" "runtest" "-p" name "-j" jobs] {with-test} | ||
] | ||
dev-repo: "git+https://github.com/mmaker/ocaml-letsencrypt.git" | ||
url { | ||
src: | ||
"https://github.com/mmaker/ocaml-letsencrypt/releases/download/v0.4.0/letsencrypt-v0.4.0.tbz" | ||
checksum: [ | ||
"sha256=bdcc186ebe3e38ecfe38de495637b09c987f7b540a5a975a5982f2ffff0f720a" | ||
"sha512=ca15cdf853b5460340f7ee448dc4ef70e1f10b5775e2ca6f7e869c5b0ad7e5b1ecf20c1647705a6662746b2a5805a28255f84f8fe2d0801b956dd82f0064f710" | ||
] | ||
} | ||
x-commit-hash: "5f1579db6335744a8e9f39165e7db499cf42d50b" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
opam-version: "2.0" | ||
synopsis: "ACME implementation in OCaml" | ||
description: "An implementation of the ACME protocol (RFC 8555) for OCaml" | ||
maintainer: "Michele Mu <maker@tumbolandia.net>" | ||
authors: | ||
"Michele Mu <maker@tumbolandia.net>, Hannes Mehnert <hannes@mehnert.org>" | ||
license: "BSD-2-clause" | ||
homepage: "https://github.com/mmaker/ocaml-letsencrypt" | ||
bug-reports: "https://github.com/mmaker/ocaml-letsencrypt/issues" | ||
doc: "https://mmaker.github.io/ocaml-letsencrypt" | ||
depends: [ | ||
"ocaml" {>= "4.08.0"} | ||
"dune" {>= "1.2.0"} | ||
"rresult" | ||
"base64" {>= "3.1.0"} | ||
"logs" | ||
"fmt" | ||
"uri" | ||
"lwt" {>= "2.6.0"} | ||
"mirage-crypto" | ||
"mirage-crypto-ec" | ||
"mirage-crypto-pk" | ||
"mirage-crypto-pk" {with-test & >= "0.8.9"} | ||
"x509" {>= "0.13.0"} | ||
"yojson" {>= "1.6.0"} | ||
"ounit" {with-test} | ||
"ptime" | ||
"domain-name" {>= "0.2.0"} | ||
] | ||
build: [ | ||
["dune" "subst"] {dev} | ||
["dune" "build" "-p" name "-j" jobs] | ||
["dune" "runtest" "-p" name "-j" jobs] {with-test} | ||
] | ||
dev-repo: "git+https://github.com/mmaker/ocaml-letsencrypt.git" | ||
url { | ||
src: | ||
"https://github.com/mmaker/ocaml-letsencrypt/releases/download/v0.4.0/letsencrypt-v0.4.0.tbz" | ||
checksum: [ | ||
"sha256=bdcc186ebe3e38ecfe38de495637b09c987f7b540a5a975a5982f2ffff0f720a" | ||
"sha512=ca15cdf853b5460340f7ee448dc4ef70e1f10b5775e2ca6f7e869c5b0ad7e5b1ecf20c1647705a6662746b2a5805a28255f84f8fe2d0801b956dd82f0064f710" | ||
] | ||
} | ||
x-commit-hash: "5f1579db6335744a8e9f39165e7db499cf42d50b" |