summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authordarmac <xiaojun2@hisilicon.com>2020-08-31 23:48:34 +0800
committerGitHub <noreply@github.com>2020-08-31 10:48:34 -0500
commitb2e1036316f29e6d92f3c4a2fe5e225768a88f42 (patch)
tree1a95b5cbb374027c474197aff9e86873f8f415a7 /var
parent1d54eb3fee2e858dffae0db7dabd5d1e0d050f3e (diff)
downloadspack-b2e1036316f29e6d92f3c4a2fe5e225768a88f42.tar.gz
spack-b2e1036316f29e6d92f3c4a2fe5e225768a88f42.tar.bz2
spack-b2e1036316f29e6d92f3c4a2fe5e225768a88f42.tar.xz
spack-b2e1036316f29e6d92f3c4a2fe5e225768a88f42.zip
Add new package: fipscheck (#18412)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/fipscheck/package.py27
1 files changed, 27 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/fipscheck/package.py b/var/spack/repos/builtin/packages/fipscheck/package.py
new file mode 100644
index 0000000000..38678e04ff
--- /dev/null
+++ b/var/spack/repos/builtin/packages/fipscheck/package.py
@@ -0,0 +1,27 @@
+# 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 Fipscheck(AutotoolsPackage):
+ """The integrity check is only one of many requirements needed for
+ validation of a software cryptographic module."""
+
+ homepage = "https://github.com/LairdCP/fipscheck"
+ url = "https://github.com/LairdCP/fipscheck/archive/LRD-REL-7.0.0.398.tar.gz"
+
+ version('7.0.0.398', sha256='1b78c71b8b39d948926910644ad544719ce6f69672d3205bc36a5924a07f6e9b')
+ version('7.0.0.397', sha256='6bce42faabf372d08b6f8fadb4fa9e65671bebf6c0c91eab8c59ae96b1e7d600')
+ version('7.0.0.396', sha256='058aafac78f3c0c5b65107686538b09eeb52cbb9b7ede688f3502df7d69c1209')
+
+ depends_on('autoconf', type='build')
+ depends_on('automake', type='build')
+ depends_on('libtool', type='build')
+ depends_on('m4', type='build')
+
+ def autoreconf(self, spec, prefix):
+ bash = which('bash')
+ bash('./autogen.sh')