diff options
author | darmac <xiaojun2@hisilicon.com> | 2020-09-24 09:02:56 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-23 20:02:56 -0500 |
commit | 3b9ba5a9aba583ed1e886a3a87527c19086dc42d (patch) | |
tree | 0b159ef3e1a8e092eb3d191b81bec4c70200ddf3 | |
parent | d72c73cd60dfac630cc4763f1af8ae4ec2129472 (diff) | |
download | spack-3b9ba5a9aba583ed1e886a3a87527c19086dc42d.tar.gz spack-3b9ba5a9aba583ed1e886a3a87527c19086dc42d.tar.bz2 spack-3b9ba5a9aba583ed1e886a3a87527c19086dc42d.tar.xz spack-3b9ba5a9aba583ed1e886a3a87527c19086dc42d.zip |
Add new package: authselect (#18832)
-rw-r--r-- | var/spack/repos/builtin/packages/authselect/package.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/authselect/package.py b/var/spack/repos/builtin/packages/authselect/package.py new file mode 100644 index 0000000000..3cc20e583e --- /dev/null +++ b/var/spack/repos/builtin/packages/authselect/package.py @@ -0,0 +1,23 @@ +# 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 Authselect(AutotoolsPackage): + """Select authentication and indentity profile to use on the system.""" + + homepage = "https://github.com/authselect/authselect" + url = "https://github.com/authselect/authselect/archive/1.2.1.tar.gz" + + version('1.2.1', sha256='6f58c36d8b405da836dc9d1f44c1a22660c60f9e7ece327138d1b2492cb57749') + version('1.2', sha256='c354c87a0115612cb51b09b5157f151569e16384cdd69f32b8515209036531b4') + version('1.1', sha256='39b888575980c1ecac7022dfe5a5452eef59cef850b8544ed5f928e2e8a335dd') + + depends_on('autoconf', type='build') + depends_on('automake', type='build') + depends_on('libtool', type='build') + depends_on('m4', type='build') + depends_on('popt') |