this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #26484 from hannesm/release-letsencrypt-v1.0.0

[new release] letsencrypt (4 packages) (1.0.0)

authored by

Anil Madhavapeddy and committed by
GitHub
d8f3196a 71e4d6b5

+158
+41
packages/letsencrypt-app/letsencrypt-app.1.0.0/opam
··· 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 <maker@tumbolandia.net>" 5 + authors: 6 + "Michele Mu <maker@tumbolandia.net>, Hannes Mehnert <hannes@mehnert.org>" 7 + license: "BSD-2-clause" 8 + homepage: "https://github.com/robur-coop/ocaml-letsencrypt" 9 + bug-reports: "https://github.com/robur-coop/ocaml-letsencrypt/issues" 10 + doc: "https://robur-coop.github.io/ocaml-letsencrypt" 11 + depends: [ 12 + "ocaml" {>= "4.13.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" {>= "1.0.0"} 22 + "ptime" 23 + "bos" 24 + "fpath" 25 + "randomconv" {>= "0.2.0"} 26 + ] 27 + build: [ 28 + ["dune" "subst"] {dev} 29 + ["dune" "build" "-p" name "-j" jobs] 30 + ["dune" "runtest" "-p" name "-j" jobs] {with-test} 31 + ] 32 + dev-repo: "git+https://github.com/robur-coop/ocaml-letsencrypt.git" 33 + url { 34 + src: 35 + "https://github.com/robur-coop/ocaml-letsencrypt/releases/download/v1.0.0/letsencrypt-1.0.0.tbz" 36 + checksum: [ 37 + "sha256=928346d7d6a82d8dbc1dbec6cae3ee254cab080139f67daf8db1f8cf4ca41af0" 38 + "sha512=bcb394200ac4a9d4bc4ed45cc60d6c6af0827d81b68b79d0fcc5e80700a33eb6792cb3fd76ebb2309fe50a61c4ad71def3f8f10a508d7c50c38a4b30dccba906" 39 + ] 40 + } 41 + x-commit-hash: "baf1fd86199920eeaa8cb8af4ca08ab296070742"
+36
packages/letsencrypt-dns/letsencrypt-dns.1.0.0/opam
··· 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 <maker@tumbolandia.net>" 5 + authors: 6 + "Michele Mu <maker@tumbolandia.net>, Hannes Mehnert <hannes@mehnert.org>" 7 + license: "BSD-2-clause" 8 + homepage: "https://github.com/robur-coop/ocaml-letsencrypt" 9 + bug-reports: "https://github.com/robur-coop/ocaml-letsencrypt/issues" 10 + doc: "https://robur-coop.github.io/ocaml-letsencrypt" 11 + depends: [ 12 + "ocaml" {>= "4.13.0"} 13 + "dune" {>= "1.2.0"} 14 + "letsencrypt" {= version} 15 + "logs" 16 + "fmt" {>= "0.8.7"} 17 + "lwt" {>= "2.6.0"} 18 + "dns" {>= "9.0.0"} 19 + "dns-tsig" {>= "9.0.0"} 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/robur-coop/ocaml-letsencrypt.git" 28 + url { 29 + src: 30 + "https://github.com/robur-coop/ocaml-letsencrypt/releases/download/v1.0.0/letsencrypt-1.0.0.tbz" 31 + checksum: [ 32 + "sha256=928346d7d6a82d8dbc1dbec6cae3ee254cab080139f67daf8db1f8cf4ca41af0" 33 + "sha512=bcb394200ac4a9d4bc4ed45cc60d6c6af0827d81b68b79d0fcc5e80700a33eb6792cb3fd76ebb2309fe50a61c4ad71def3f8f10a508d7c50c38a4b30dccba906" 34 + ] 35 + } 36 + x-commit-hash: "baf1fd86199920eeaa8cb8af4ca08ab296070742"
+36
packages/letsencrypt-mirage/letsencrypt-mirage.1.0.0/opam
··· 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 <maker@tumbolandia.net>" 5 + authors: 6 + "Michele Mu <maker@tumbolandia.net>, Hannes Mehnert <hannes@mehnert.org>" 7 + license: "BSD-2-clause" 8 + homepage: "https://github.com/robur-coop/ocaml-letsencrypt" 9 + bug-reports: "https://github.com/robur-coop/ocaml-letsencrypt/issues" 10 + doc: "https://robur-coop.github.io/ocaml-letsencrypt" 11 + depends: [ 12 + "ocaml" {>= "4.13.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/robur-coop/ocaml-letsencrypt.git" 28 + url { 29 + src: 30 + "https://github.com/robur-coop/ocaml-letsencrypt/releases/download/v1.0.0/letsencrypt-1.0.0.tbz" 31 + checksum: [ 32 + "sha256=928346d7d6a82d8dbc1dbec6cae3ee254cab080139f67daf8db1f8cf4ca41af0" 33 + "sha512=bcb394200ac4a9d4bc4ed45cc60d6c6af0827d81b68b79d0fcc5e80700a33eb6792cb3fd76ebb2309fe50a61c4ad71def3f8f10a508d7c50c38a4b30dccba906" 34 + ] 35 + } 36 + x-commit-hash: "baf1fd86199920eeaa8cb8af4ca08ab296070742"
+45
packages/letsencrypt/letsencrypt.1.0.0/opam
··· 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 <maker@tumbolandia.net>" 5 + authors: 6 + "Michele Mu <maker@tumbolandia.net>, Hannes Mehnert <hannes@mehnert.org>" 7 + license: "BSD-2-clause" 8 + homepage: "https://github.com/robur-coop/ocaml-letsencrypt" 9 + bug-reports: "https://github.com/robur-coop/ocaml-letsencrypt/issues" 10 + doc: "https://robur-coop.github.io/ocaml-letsencrypt" 11 + depends: [ 12 + "ocaml" {>= "4.13.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" {>= "1.0.0"} 20 + "mirage-crypto-ec" {>= "1.0.0"} 21 + "mirage-crypto-pk" {>= "1.0.0"} 22 + "mirage-crypto-rng" {with-test & >= "1.0.0"} 23 + "digestif" {>= "1.2.0"} 24 + "x509" {>= "1.0.0"} 25 + "yojson" {>= "1.6.0"} 26 + "ounit2" {with-test} 27 + "ptime" 28 + "domain-name" {>= "0.2.0"} 29 + ] 30 + conflicts: [ "result" {< "1.5"} ] 31 + build: [ 32 + ["dune" "subst"] {dev} 33 + ["dune" "build" "-p" name "-j" jobs] 34 + ["dune" "runtest" "-p" name "-j" jobs] {with-test} 35 + ] 36 + dev-repo: "git+https://github.com/robur-coop/ocaml-letsencrypt.git" 37 + url { 38 + src: 39 + "https://github.com/robur-coop/ocaml-letsencrypt/releases/download/v1.0.0/letsencrypt-1.0.0.tbz" 40 + checksum: [ 41 + "sha256=928346d7d6a82d8dbc1dbec6cae3ee254cab080139f67daf8db1f8cf4ca41af0" 42 + "sha512=bcb394200ac4a9d4bc4ed45cc60d6c6af0827d81b68b79d0fcc5e80700a33eb6792cb3fd76ebb2309fe50a61c4ad71def3f8f10a508d7c50c38a4b30dccba906" 43 + ] 44 + } 45 + x-commit-hash: "baf1fd86199920eeaa8cb8af4ca08ab296070742"