summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authordarmac <xiaojun2@hisilicon.com>2020-09-24 09:46:28 +0800
committerGitHub <noreply@github.com>2020-09-23 20:46:28 -0500
commitb69643de7f9ec207949e0054d2b1e98dbb81d898 (patch)
tree3db7355092bfe1f8d8bc5c668a3245e67e769a0b /var
parent527ea798c590418c37bc25f6422a577e925dff8d (diff)
downloadspack-b69643de7f9ec207949e0054d2b1e98dbb81d898.tar.gz
spack-b69643de7f9ec207949e0054d2b1e98dbb81d898.tar.bz2
spack-b69643de7f9ec207949e0054d2b1e98dbb81d898.tar.xz
spack-b69643de7f9ec207949e0054d2b1e98dbb81d898.zip
Add new package: librelp (#18779)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/librelp/package.py26
1 files changed, 26 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/librelp/package.py b/var/spack/repos/builtin/packages/librelp/package.py
new file mode 100644
index 0000000000..b22ca5e0f3
--- /dev/null
+++ b/var/spack/repos/builtin/packages/librelp/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 Librelp(AutotoolsPackage):
+ """Librelp is an easy to use library for the RELP protocol. RELP
+ (stands for Reliable Event Logging Protocol) is a general-purpose,
+ extensible logging protocol."""
+
+ homepage = "http://www.rsyslog.com/librelp/"
+ url = "https://github.com/rsyslog/librelp/archive/v1.7.0.tar.gz"
+
+ version('1.7.0', sha256='ff46bdd74798934663d1388d010270325dc6a6ed6d44358ca69b280a8304b1e9')
+ version('1.6.0', sha256='acaaa6b8e295ecd8e9d9b70c1c3c8fb3cc3c95a9ed5ce1689688510d0eecb37e')
+ version('1.5.0', sha256='ce7f463944417ba77d7b586590e41e276f7b107d3e35a77ce768cf3889b5e1a6')
+
+ depends_on('autoconf', type='build')
+ depends_on('automake', type='build')
+ depends_on('libtool', type='build')
+ depends_on('m4', type='build')
+ depends_on('openssl')
+ depends_on('gnutls@2.0.0:')