diff options
author | darmac <xiaojun2@hisilicon.com> | 2020-03-12 08:29:31 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-11 19:29:31 -0500 |
commit | a9a59ea3b41cac6e8ed638e0cd23700c7e94a232 (patch) | |
tree | ffe8fbcb2795fdc40c1d291d40edfee18ddb4803 /var | |
parent | 6af8e19b2d96700ae9699f0e0568037f51b0d9e9 (diff) | |
download | spack-a9a59ea3b41cac6e8ed638e0cd23700c7e94a232.tar.gz spack-a9a59ea3b41cac6e8ed638e0cd23700c7e94a232.tar.bz2 spack-a9a59ea3b41cac6e8ed638e0cd23700c7e94a232.tar.xz spack-a9a59ea3b41cac6e8ed638e0cd23700c7e94a232.zip |
add new package: keyutils (#15433)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/keyutils/package.py | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/keyutils/package.py b/var/spack/repos/builtin/packages/keyutils/package.py new file mode 100644 index 0000000000..049dbb1c22 --- /dev/null +++ b/var/spack/repos/builtin/packages/keyutils/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 * +import glob + + +class Keyutils(MakefilePackage): + """These tools are used to control the key management system built + into the Linux kernel.""" + + homepage = "https://git.kernel.org/pub/scm/linux/kernel/git/dhowells/keyutils.git/" + url = "https://git.kernel.org/pub/scm/linux/kernel/git/dhowells/keyutils.git/snapshot/keyutils-1.6.1.tar.gz" + + version('1.6.1', sha256='3c71dcfc6900d07b02f4e061d8fb218a4ae6519c1d283d6a57b8e27718e2f557') + version('1.6', sha256='c6a27b4e3d0122d921f3dcea4b1f02a8616ca844535960d6af76ef67d015b5cf') + version('1.5.10', sha256='e1fdbde234c786b65609a4cf080a2c5fbdb57f049249c139160c85fc3dfa7da9') + version('1.5.9', sha256='2dc0bdb099ab8331e02e5dbbce320359bef76eda0a4ddbd2ba1d1b9d3a8cdff8') + + def install(self, spec, prefix): + install_tree('.', prefix) + mkdirp(prefix.include) + headers = glob.glob(join_path(prefix, '*.h')) + for h in headers: + install(h, prefix.include) |