summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authordarmac <xiaojun2@hisilicon.com>2020-09-24 09:01:22 +0800
committerGitHub <noreply@github.com>2020-09-23 20:01:22 -0500
commitd796566605a3674ce0498fe3a3b5524010422be8 (patch)
tree07649385e13d07df3f4dda271908ca7b90a8b707 /var
parent6539d45ad65231bdaca1d8de50f4bf528f0186e3 (diff)
downloadspack-d796566605a3674ce0498fe3a3b5524010422be8.tar.gz
spack-d796566605a3674ce0498fe3a3b5524010422be8.tar.bz2
spack-d796566605a3674ce0498fe3a3b5524010422be8.tar.xz
spack-d796566605a3674ce0498fe3a3b5524010422be8.zip
Add new package: libnfnetlink (#18835)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/libnfnetlink/package.py25
1 files changed, 25 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/libnfnetlink/package.py b/var/spack/repos/builtin/packages/libnfnetlink/package.py
new file mode 100644
index 0000000000..d46de4dace
--- /dev/null
+++ b/var/spack/repos/builtin/packages/libnfnetlink/package.py
@@ -0,0 +1,25 @@
+# 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 Libnfnetlink(AutotoolsPackage):
+ """libnfnetlink is a userspace library that provides some low-level
+ nfnetlink handling functions. It is used as a foundation for other,
+ netfilter subsystem specific libraries such as libnfnetlink_conntrack,
+ libnfnetlink_log and libnfnetlink_queue."""
+
+ homepage = "http://netfilter.org"
+ url = "https://github.com/Distrotech/libnfnetlink/archive/libnfnetlink-1.0.1.tar.gz"
+
+ version('1.0.1', sha256='11dd8a1045b03d47c878535eeb6b9eb34db295d21903a4dfd2c2cc63f45e675b')
+ version('1.0.0', sha256='1d43456e51d5ff2e8bc84b68d8acad3bb15603cfaa806ba9693eea4f2aa1abeb')
+ version('0.0.41', sha256='84381ad3aec4fc4884c020c7774a241160d92ed50c9f93a2660db94e212cbb72')
+
+ depends_on('autoconf', type='build')
+ depends_on('automake', type='build')
+ depends_on('libtool', type='build')
+ depends_on('m4', type='build')