summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authordarmac <xiaojun2@hisilicon.com>2020-06-16 12:00:53 +0800
committerGitHub <noreply@github.com>2020-06-16 06:00:53 +0200
commitd1aa54115c2af1e86cecc558806ae4a3127122e3 (patch)
treeee809cb7a1b573756f9b7af90687b596e37f5e7c /var
parent70be1038fdc70c36ee0b92e8580d0768eb9e177e (diff)
downloadspack-d1aa54115c2af1e86cecc558806ae4a3127122e3.tar.gz
spack-d1aa54115c2af1e86cecc558806ae4a3127122e3.tar.bz2
spack-d1aa54115c2af1e86cecc558806ae4a3127122e3.tar.xz
spack-d1aa54115c2af1e86cecc558806ae4a3127122e3.zip
cyrus-sasl: added new package at 2.1.27 (#17096)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/cyrus-sasl/package.py26
1 files changed, 26 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/cyrus-sasl/package.py b/var/spack/repos/builtin/packages/cyrus-sasl/package.py
new file mode 100644
index 0000000000..98848ccff9
--- /dev/null
+++ b/var/spack/repos/builtin/packages/cyrus-sasl/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 CyrusSasl(AutotoolsPackage):
+ """This is the Cyrus SASL API implementation. It can be used on the
+ client or server side to provide authentication and authorization
+ services."""
+
+ homepage = "https://github.com/cyrusimap/cyrus-sasl"
+ url = "https://github.com/cyrusimap/cyrus-sasl/archive/cyrus-sasl-2.1.27.tar.gz"
+
+ version('2.1.27', sha256='b564d773803dc4cff42d2bdc04c80f2b105897a724c247817d4e4a99dd6b9976')
+ version('2.1.26', sha256='7c14d1b5bd1434adf2dd79f70538617e6aa2a7bde447454b90b84ac5c4d034ba')
+ version('2.1.25', sha256='8bfd4fa4def54c760e5061f2a74c278384c3b9807f02c4b07dab68b5894cc7c1')
+ version('2.1.24', sha256='1df15c492f7ecb90be49531a347b3df21b041c2e0325dcc4fc5a6e98384c40dd')
+ version('2.1.23', sha256='b1ec43f62d68446a6a5879925c63d94e26089c5a46cd83e061dd685d014c7d1f')
+
+ depends_on('m4', type='build')
+ depends_on('autoconf', type='build')
+ depends_on('automake', type='build')
+ depends_on('libtool', type='build')