summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordarmac <xiaojun2@hisilicon.com>2020-09-24 09:37:36 +0800
committerGitHub <noreply@github.com>2020-09-23 20:37:36 -0500
commitd1d5ee395d8b77b458bcd96ef2098f247cf860f8 (patch)
tree4fcddefaa0e4ef350c95fc204d8d53f84f418a56
parent6970e0da699fd11c10220b94dc0f6d1723eee9df (diff)
downloadspack-d1d5ee395d8b77b458bcd96ef2098f247cf860f8.tar.gz
spack-d1d5ee395d8b77b458bcd96ef2098f247cf860f8.tar.bz2
spack-d1d5ee395d8b77b458bcd96ef2098f247cf860f8.tar.xz
spack-d1d5ee395d8b77b458bcd96ef2098f247cf860f8.zip
Add new package: p11-kit (#18793)
-rw-r--r--var/spack/repos/builtin/packages/p11-kit/package.py30
1 files changed, 30 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/p11-kit/package.py b/var/spack/repos/builtin/packages/p11-kit/package.py
new file mode 100644
index 0000000000..4b6a110498
--- /dev/null
+++ b/var/spack/repos/builtin/packages/p11-kit/package.py
@@ -0,0 +1,30 @@
+# Copyright 2013-2020 Lawrence Livermore National Security, LLC and other
+# Spack Project Developers. See the top-level COPYRIGHT file for details.
+#
+# SPDX-License-Identifier: (Apache-2.0 OR MIT)
+
+from spack import *
+
+
+class P11Kit(AutotoolsPackage):
+ """p11-kit aims to solve problems with coordinating the use
+ of PKCS #11 by different components or libraries living
+ in the same process, by providing a way to load and enumerate
+ PKCS #11 modules, as well as a standard configuration setup
+ for installing PKCS #11 modules in such a way that they're
+ discoverable."""
+
+ homepage = "https://p11-glue.github.io/p11-glue/p11-kit.html"
+ url = "https://github.com/p11-glue/p11-kit/archive/0.23.21.tar.gz"
+
+ version('0.23.21', sha256='0361bcc55858618625a8e99e7fe9069f81514849b7b51ade51f8117d3ad31d88')
+ version('0.23.20', sha256='8f6116f34735f6902e9db461c5dbe3e7e25b5cb8c38f42ea2a5aede1cf693749')
+ version('0.23.19', sha256='c27921404e82244d97b27f46bae654e5814b5963e0ce3c75ad37007ded46f700')
+
+ depends_on('autoconf', type='build')
+ depends_on('automake', type='build')
+ depends_on('libtool', type='build')
+ depends_on('m4', type='build')
+ depends_on('gettext', type='build')
+ depends_on('libtasn1')
+ depends_on('libffi')