diff options
author | darmac <xiaojun2@hisilicon.com> | 2020-10-15 22:47:06 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-15 16:47:06 +0200 |
commit | 9240058c0d98ed42e2d8030aa90b746a55dca3f5 (patch) | |
tree | 28ee88f021b1fc9b8367c7302099bcc26c8a7db1 | |
parent | a9d25ea01b3836b74a56b7df75dd9573c5f52bf9 (diff) | |
download | spack-9240058c0d98ed42e2d8030aa90b746a55dca3f5.tar.gz spack-9240058c0d98ed42e2d8030aa90b746a55dca3f5.tar.bz2 spack-9240058c0d98ed42e2d8030aa90b746a55dca3f5.tar.xz spack-9240058c0d98ed42e2d8030aa90b746a55dca3f5.zip |
Add new package: bdii (#18732)
* Add new package: bdii
* bdii: refine dependents
-rw-r--r-- | var/spack/repos/builtin/packages/bdii/package.py | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/bdii/package.py b/var/spack/repos/builtin/packages/bdii/package.py new file mode 100644 index 0000000000..69bc06ccac --- /dev/null +++ b/var/spack/repos/builtin/packages/bdii/package.py @@ -0,0 +1,26 @@ +# 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 Bdii(MakefilePackage): + """The Berkeley Database Information Index (BDII) consists of a + standard LDAP database which is updated by an external process. + The update process obtains LDIF from a number of sources and merges + them. It then compares this to the contents of the database and + creates an LDIF file of the differences. This is then used to + update the database.""" + + homepage = "https://github.com/EGI-Foundation/bdii" + url = "https://github.com/EGI-Foundation/bdii/archive/v5.2.25.tar.gz" + + version('5.2.25', sha256='6abc3ed872538a12dc470a1d30bf4ae1ca4d6302eb6b50370413940f9e9259ca') + version('5.2.24', sha256='5d09ed06b8b09ce372b3489fab93e25302f68ca80d8fcc600c2535648c861a3a') + + depends_on('openldap', type='run') + + def install(self, spec, prefix): + make('prefix={0}'.format(prefix), 'install') |