forked from mirage/ocaml-dns
-
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.
Merge pull request mirage#160 from NathanReb/release-hacl-star-v0.4.5…
…+dune2 [new release] hacl-star and hacl-star-raw (0.4.5+dune2)
- Loading branch information
Showing
2 changed files
with
87 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,46 @@ | ||
opam-version: "2.0" | ||
synopsis: "Auto-generated low-level OCaml bindings for EverCrypt/HACL*" | ||
description: """ | ||
This package contains a snapshot of the EverCrypt crypto provider and | ||
the HACL* library, along with automatically generated Ctypes bindings. | ||
For a higher-level idiomatic API see the `hacl-star` package, of | ||
which `hacl-star-raw` is a dependency. | ||
""" | ||
maintainer: "Victor Dumitrescu <[email protected]>" | ||
authors: [ "Project Everest" ] | ||
license: "Apache-2.0" | ||
homepage: "http://github.com/dune-universe/hacl-star-dune" | ||
bug-reports: "https://github.com/project-everest/hacl-star/issues" | ||
depends: [ | ||
"dune" { >= "2.6" } | ||
"ocaml" { >= "4.08.0" } | ||
"ocamlfind" {build} | ||
"ctypes" { >= "0.18.0" } | ||
"conf-which" {build} | ||
] | ||
available: [ | ||
arch != "ppc64" & arch != "ppc32" & | ||
arch != "arm32" & arch != "x86_32" & | ||
arch != "arm64" & arch != "s390x" & | ||
(os = "freebsd" | os-family != "bsd") | ||
] | ||
x-ci-accept-failures: [ | ||
"centos-7" # Default C compiler is too old | ||
"oraclelinux-7" # Default C compiler is too old | ||
] | ||
build: [ | ||
[ | ||
"dune" "build" "-p" name "-j" jobs | ||
"@doc" {with-doc} | ||
] | ||
] | ||
dev-repo: "git+https://github.com/dune-universe/hacl-star-dune.git" | ||
url { | ||
src: | ||
"https://github.com/dune-universe/hacl-star-dune/releases/download/v0.4.5%2Bdune2/hacl-star-0.4.5.dune2.tbz" | ||
checksum: [ | ||
"sha256=a07266caf4f47ea163200816dd87d7a2b7c3a4476cc96a1d9bd3149c6ba1b15d" | ||
"sha512=029e11a119d517928cab8e7812184c2b8af29ce5de14b6a650f5b05b82dd1eb16b805333698de956dad03509714f139c4123448ab4ed5bddb267dfcdd7082ecf" | ||
] | ||
} | ||
x-commit-hash: "34e7e224fa9cf6e900d430f1e12621f541a66846" |
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,41 @@ | ||
opam-version: "2.0" | ||
synopsis: "OCaml API for EverCrypt/HACL*" | ||
description: """ | ||
Documentation for this library can be found | ||
[here](https://hacl-star.github.io/ocaml_doc/hacl-star/index.html). | ||
""" | ||
maintainer: "Victor Dumitrescu <[email protected]>" | ||
authors: [ "Project Everest" ] | ||
license: "Apache-2.0" | ||
homepage: "http://github.com/dune-universe/hacl-star-dune" | ||
bug-reports: "https://github.com/project-everest/hacl-star/issues" | ||
depends: [ | ||
"ocaml" { >= "4.08.0" } | ||
"dune" {>= "2.6"} | ||
"hacl-star-raw" {= version} | ||
"zarith" | ||
"cppo" {build} | ||
"odoc" {with-doc} | ||
] | ||
available: [ | ||
os = "freebsd" | os-family != "bsd" | ||
] | ||
build: [ | ||
[ | ||
"dune" "build" "-p" name "-j" jobs | ||
"@doc" {with-doc} | ||
] | ||
] | ||
run-test: [ | ||
["dune" "runtest" "-p" name "-j" jobs] | ||
] | ||
dev-repo: "git+https://github.com/dune-universe/hacl-star-dune.git" | ||
url { | ||
src: | ||
"https://github.com/dune-universe/hacl-star-dune/releases/download/v0.4.5%2Bdune2/hacl-star-0.4.5.dune2.tbz" | ||
checksum: [ | ||
"sha256=a07266caf4f47ea163200816dd87d7a2b7c3a4476cc96a1d9bd3149c6ba1b15d" | ||
"sha512=029e11a119d517928cab8e7812184c2b8af29ce5de14b6a650f5b05b82dd1eb16b805333698de956dad03509714f139c4123448ab4ed5bddb267dfcdd7082ecf" | ||
] | ||
} | ||
x-commit-hash: "34e7e224fa9cf6e900d430f1e12621f541a66846" |