diff options
author | darmac <xiaojun2@hisilicon.com> | 2020-10-13 00:13:29 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-12 18:13:29 +0200 |
commit | 7083a542b66944e8adc50479c20ec054a8fb0c91 (patch) | |
tree | 743238e09ea3d8c2996993b8497c5de05f26aec6 | |
parent | bead81fab521ab6f77a5217ae9c03248350dc501 (diff) | |
download | spack-7083a542b66944e8adc50479c20ec054a8fb0c91.tar.gz spack-7083a542b66944e8adc50479c20ec054a8fb0c91.tar.bz2 spack-7083a542b66944e8adc50479c20ec054a8fb0c91.tar.xz spack-7083a542b66944e8adc50479c20ec054a8fb0c91.zip |
libnetfilter-conntrack: new package at v1.0.4 (#19012)
-rw-r--r-- | var/spack/repos/builtin/packages/libnetfilter-conntrack/package.py | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/libnetfilter-conntrack/package.py b/var/spack/repos/builtin/packages/libnetfilter-conntrack/package.py new file mode 100644 index 0000000000..3f6097cbd6 --- /dev/null +++ b/var/spack/repos/builtin/packages/libnetfilter-conntrack/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 LibnetfilterConntrack(AutotoolsPackage): + """libnetfilter_conntrack is a userspace library providing a programming + interface (API) to the in-kernel connection tracking state table.""" + + homepage = "http://netfilter.org" + url = "https://github.com/Distrotech/libnetfilter_conntrack/archive/libnetfilter_conntrack-1.0.4.tar.gz" + + version('1.0.4', sha256='68168697b9d6430b7797ddd579e13a2cef06ea15c154dfd14e18be64e035ea6e') + version('1.0.3', sha256='e2129d7c0346c7140355d643da8e3409cbd755689ea889bc0d6dbd557f1b5671') + version('1.0.2', sha256='97f641a2e47053bd87bc817292519d6661e8f84a22d3314724b83b9f5eaddbff') + + depends_on('autoconf', type='build') + depends_on('automake', type='build') + depends_on('libtool', type='build') + depends_on('m4', type='build') + depends_on('pkgconfig', type='build') + depends_on('libmnl@1.0.3:') + depends_on('libnfnetlink@1.0.0:') |