summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authordarmac <xiaojun2@hisilicon.com>2020-10-12 22:23:35 +0800
committerGitHub <noreply@github.com>2020-10-12 16:23:35 +0200
commit99278d986304eab9dc10905c172fd579c4a04d02 (patch)
treedc0b3efb68204a4a70926bb0e2c315af31da6245 /var
parentc2517a31bfa6d847f0b4eb591372d94cac1ed54e (diff)
downloadspack-99278d986304eab9dc10905c172fd579c4a04d02.tar.gz
spack-99278d986304eab9dc10905c172fd579c4a04d02.tar.bz2
spack-99278d986304eab9dc10905c172fd579c4a04d02.tar.xz
spack-99278d986304eab9dc10905c172fd579c4a04d02.zip
rng-tools: added new package at v6.10 (#19011)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/rng-tools/package.py31
1 files changed, 31 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/rng-tools/package.py b/var/spack/repos/builtin/packages/rng-tools/package.py
new file mode 100644
index 0000000000..c2a3a41bf3
--- /dev/null
+++ b/var/spack/repos/builtin/packages/rng-tools/package.py
@@ -0,0 +1,31 @@
+# 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 RngTools(AutotoolsPackage):
+ """This is a random number generator daemon.
+ It monitors a set of entropy sources, and supplies
+ entropy from them to the system kernel's /dev/random
+ machinery."""
+
+ homepage = "https://github.com/nhorman/rng-tools/"
+ url = "https://github.com/nhorman/rng-tools/archive/v6.10.tar.gz"
+
+ version('6.10', sha256='2e462821aaa7d6dc24646aa0d2239d97cb8b07b3e60715159a9edcaa9189f8ef')
+ version('6.9', sha256='a57a7f51a2e3c0faa8afb979709a4c0cbea36d0b52fd835b104f8fb4fd1fa610')
+ version('6.8', sha256='93e548d4aaf2a1897d4b677f41d8473db1c7f57648adeca18cafa1907e410bb3')
+
+ depends_on('autoconf', type='build')
+ depends_on('automake', type='build')
+ depends_on('libtool', type='build')
+ depends_on('m4', type='build')
+ depends_on('gettext')
+ depends_on('curl')
+ depends_on('jansson')
+ depends_on('libp11')
+ depends_on('librtlsdr')
+ depends_on('sysfsutils')