Compare commits
10 Commits
08447b4aa1
...
a9e538034c
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a9e538034c | ||
|
|
04b5b7d625 | ||
|
|
84793be6dd | ||
|
|
1fd80a6673 | ||
|
|
15f6b4369e | ||
|
|
3994b9f622 | ||
|
|
07f3cf8615 | ||
|
|
6f861074dd | ||
|
|
51e2db2a5f | ||
|
|
609ce4b791 |
BIN
libnetfilter_cthelper-1.0.1.tar.bz2
Normal file
BIN
libnetfilter_cthelper-1.0.1.tar.bz2
Normal file
Binary file not shown.
76
libnetfilter_cthelper.spec
Normal file
76
libnetfilter_cthelper.spec
Normal file
@ -0,0 +1,76 @@
|
||||
Name: libnetfilter_cthelper
|
||||
Version: 1.0.1
|
||||
Release: 1
|
||||
Summary: Library providing programming interface to the user-space helper infrastructure.
|
||||
License: GPLv2
|
||||
URL: http://www.netfilter.org/projects/libnetfilter_cthelper/index.html
|
||||
Source0: http://www.netfilter.org/projects/libnetfilter_cthelper/files/libnetfilter_cthelper-%{version}.tar.bz2
|
||||
BuildRequires: gcc libmnl-devel >= 1.0.0, pkgconfig, kernel-headers
|
||||
BuildRequires: make
|
||||
|
||||
%description
|
||||
libnetfilter_cthelper is the userspace library that provides the programming interface to \
|
||||
the user-space helper infrastructure available since Linux kernel 3.6. With this library, \
|
||||
you register, configure, enable and disable user-space helpers.
|
||||
|
||||
%package devel
|
||||
Summary: Development files for %{name}
|
||||
Requires: %{name} = %{version}-%{release} libmnl-devel >= 1.0.0 kernel-headers
|
||||
|
||||
%description devel
|
||||
This package contains libraries and header files for developing applications that use %{name}.
|
||||
|
||||
%package help
|
||||
Summary: Usage help documentation for %{name}
|
||||
|
||||
%description help
|
||||
Connection tracking helpers allows you to filter multi-flow protocols that usually \
|
||||
separate control and data traffic into different flows. This is the case of \
|
||||
application protocols like FTP, SIP and H.323 that are already supported by \
|
||||
Netfilter. These helpers are implemented in kernel-space.
|
||||
|
||||
%prep
|
||||
%autosetup -p1
|
||||
|
||||
%build
|
||||
%configure --disable-static
|
||||
%make_build
|
||||
|
||||
%install
|
||||
%make_install
|
||||
%delete_la
|
||||
|
||||
%post
|
||||
/sbin/ldconfig
|
||||
|
||||
%postun
|
||||
/sbin/ldconfig
|
||||
|
||||
%files
|
||||
%doc COPYING
|
||||
%{_libdir}/*.so.*
|
||||
%{_libdir}/*.so
|
||||
|
||||
%files devel
|
||||
%doc examples
|
||||
%{_libdir}/pkgconfig/*.pc
|
||||
%dir %{_includedir}/libnetfilter_cthelper
|
||||
%{_includedir}/libnetfilter_cthelper/*.h
|
||||
|
||||
%files help
|
||||
%doc README
|
||||
|
||||
|
||||
%changelog
|
||||
* Tue Feb 07 2023 xingwei <xingwei14@h-partners.com> - 1.0.1-1
|
||||
- Type:requirements
|
||||
- ID:NA
|
||||
- SUG:NA
|
||||
- DESC:update libnetfilter_cthelper to 1.0.1
|
||||
|
||||
* Sat Oct 22 2022 gaihuiying <eaglegai@163.com> - 1.0.0-16
|
||||
- add make as BuildRequires for rpmbuild
|
||||
|
||||
* Tue Dec 31 2019 Senlin Xia <xiasenlin1@huawei.com> - 1.0.0-15
|
||||
- Package Init
|
||||
|
||||
4
libnetfilter_cthelper.yaml
Normal file
4
libnetfilter_cthelper.yaml
Normal file
@ -0,0 +1,4 @@
|
||||
version_control: github
|
||||
src_repo: Distrotech/libnetfilter_cthelper
|
||||
tag_prefix: libnetfilter_cthelper-
|
||||
seperator: .
|
||||
Binary file not shown.
@ -1,53 +0,0 @@
|
||||
Name: libnetfilter_cttimeout
|
||||
Version: 1.0.0
|
||||
Release: 13
|
||||
Summary: Netfilter/conntrack Timeout policy tuning
|
||||
License: GPLv2+
|
||||
URL: http://netfilter.org
|
||||
Source0: http://netfilter.org/projects/%{name}/files/%{name}-%{version}.tar.bz2
|
||||
BuildRequires: libmnl-devel >= 1.0.0 pkgconfig kernel-headers
|
||||
|
||||
%description
|
||||
libnetfilter_cttimeout is the userspace library that provides the programming
|
||||
interface to the fine-grain connection tracking timeout infrastructure. With
|
||||
this library, you can create, update and delete timeout policies that can be
|
||||
attached to traffic flows. This library is used by conntrack-tools
|
||||
|
||||
%package devel
|
||||
Summary: Development files for the libnetfilter_cttimeout library
|
||||
Requires: %{name} = %{version}-%{release} libmnl-devel >= 1.0.0 kernel-headers
|
||||
|
||||
%description devel
|
||||
The libnetfilter_cttimeout-devel package includes header files and libraries necessary
|
||||
for the libnetfilter_cttimeout library.
|
||||
|
||||
%prep
|
||||
%autosetup -n %{name}-%{version} -p1
|
||||
|
||||
%build
|
||||
%configure
|
||||
%make_build
|
||||
|
||||
%install
|
||||
%make_install
|
||||
%delete_la
|
||||
|
||||
%post
|
||||
/sbin/ldconfig
|
||||
|
||||
%postun
|
||||
/sbin/ldconfig
|
||||
|
||||
%files
|
||||
%doc COPYING README
|
||||
%{_libdir}/*.so.*
|
||||
|
||||
%files devel
|
||||
%{_libdir}/*.so
|
||||
%{_libdir}/pkgconfig/*.pc
|
||||
%dir %{_includedir}/libnetfilter_cttimeout
|
||||
%{_includedir}/libnetfilter_cttimeout/*.h
|
||||
|
||||
%changelog
|
||||
* Tue Dec 31 2019 gulining<gulining1@huawei.com> - 1.0.0-13
|
||||
- Pakcage init
|
||||
Loading…
x
Reference in New Issue
Block a user