rng-tools: added new package at v6.10 (#19011)

This commit is contained in:
darmac 2020-10-12 22:23:35 +08:00 committed by GitHub
parent c2517a31bf
commit 99278d9863
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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')