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.
Merge pull request ocaml#11221 from emillon/opam-publish-pkcs11.0.14.0
Package pkcs11.0.14.0
- Loading branch information
Showing
3 changed files
with
53 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,6 @@ | ||
Bindings to the PKCS#11 cryptographic API | ||
|
||
This library contains ctypes bindings to the PKCS#11 API. | ||
|
||
This API is used by smartcards and Hardware Security Modules to perform | ||
cryptographic operations such as signature or encryption. |
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,45 @@ | ||
opam-version: "1.2" | ||
maintainer: "Etienne Millon <[email protected]>" | ||
authors: "Etienne Millon <[email protected]>" | ||
homepage: "https://github.com/cryptosense/pkcs11" | ||
bug-reports: "https://github.com/cryptosense/pkcs11/issues" | ||
license: "BSD-2" | ||
dev-repo: "https://github.com/cryptosense/pkcs11.git" | ||
doc: "https://cryptosense.github.io/pkcs11/doc" | ||
build: [ | ||
[ "ocaml" "pkg/pkg.ml" "build" | ||
"--pinned" "%{pinned}%" | ||
"--with-cmdliner" "%{cmdliner:installed}%" | ||
"--with-driver" "%{ctypes:installed}%" | ||
] | ||
] | ||
build-test: [ | ||
[ "ocaml" "pkg/pkg.ml" "build" | ||
"--pinned" "%{pinned}%" | ||
"--tests" "true" | ||
"--with-cmdliner" "%{cmdliner:installed}%" | ||
"--with-driver" "%{ctypes:installed}%" | ||
] | ||
[ "ocaml" "pkg/pkg.ml" "test" ] | ||
] | ||
depends: [ | ||
"hex" { >= "1.0.0" } | ||
"integers" | ||
"ppx_deriving" { >= "4.0" } | ||
"ppx_deriving_yojson" { >= "3.0" } | ||
"zarith" | ||
"ocamlbuild" {build} | ||
"ocamlfind" {build} | ||
"topkg" {build} | ||
"ounit" {test} | ||
] | ||
depopts: [ | ||
"cmdliner" | ||
"ctypes" | ||
"ctypes-foreign" | ||
] | ||
conflicts: [ | ||
"ctypes" { < "0.12.0" } | ||
] | ||
tags: ["org:cryptosense"] | ||
available: [ocaml-version >= "4.03.0" & os != "darwin"] |
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,2 @@ | ||
archive: "https://github.com/cryptosense/pkcs11/releases/download/v0.14.0/pkcs11-0.14.0.tbz" | ||
checksum: "d6d18b0852925320e5b0ceaf1c433c5a" |