Accepting request 33704 from security:netfilter

Copy from security:netfilter/libnetfilter_conntrack based on submit request 33704 from user jengelh

OBS-URL: https://build.opensuse.org/request/show/33704
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libnetfilter_conntrack?expand=0&rev=1
This commit is contained in:
OBS User autobuild 2010-03-15 10:24:41 +00:00 committed by Git OBS Bridge
commit 7dd9bb3090
7 changed files with 139 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@ -0,0 +1,23 @@
## Default LFS
*.7z filter=lfs diff=lfs merge=lfs -text
*.bsp filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.gem filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text
*.lz filter=lfs diff=lfs merge=lfs -text
*.lzma filter=lfs diff=lfs merge=lfs -text
*.obscpio filter=lfs diff=lfs merge=lfs -text
*.oxt filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.rpm filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.tbz2 filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.osc

1
baselibs.conf Normal file
View File

@ -0,0 +1 @@
libnetfilter_conntrack3

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9d2919df3794e1e8f2311ad31949698103061206379b75094cb2bf7851378ab2
size 287919

View File

@ -0,0 +1,15 @@
-------------------------------------------------------------------
Tue Feb 23 22:12:24 UTC 2010 - jengelh@medozas.de
- new upstream release: 0.0.101
- add baselibs.conf
- use %_smp_mflags
- remove unnecessary PreReq: glibc
- secure the *.la delete call
- wrap description at col 70
-------------------------------------------------------------------
Sun Sep 20 16:54:49 UTC 2009 - bitshuffler #suse@irc.freenode.org
- Updated to 0.0.100

View File

@ -0,0 +1,96 @@
#
# spec file for package libnetfilter_conntrack (Version 0.0.101)
#
# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
# norootforbuild
%define soname 3
Name: libnetfilter_conntrack
Version: 0.0.101
Release: 1
License: GNU GPL v2
Group: Productivity/Networking/Security
Url: http://netfilter.org/projects/libnetfilter_conntrack/
Source: http://netfilter.org/projects/libnetfilter_conntrack/files/%{name}-%{version}.tar.bz2
Source2: baselibs.conf
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: libnfnetlink-devel linux-kernel-headers >= 2.6.14 pkg-config
Summary: Userspace library for the in-kernel connection tracking state table
%description
libnetfilter_conntrack is a userspace library providing a programming
interface (API) to the in-kernel connection tracking state table. The
library libnetfilter_conntrack has been previously known as
libnfnetlink_conntrack and libctnetlink. This library is currently
used by conntrack-tools among many other applications.
%define debug_package_requires %{name}%{soname} = %{version}-%{release}
%package -n %{name}%{soname}
Group: System/Libraries
Summary: Userspace library for the in-kernel connection tracking state table
%description -n %{name}%{soname}
libnetfilter_conntrack is a userspace library providing a programming
interface (API) to the in-kernel connection tracking state table. The
library libnetfilter_conntrack has been previously known as
libnfnetlink_conntrack and libctnetlink. This library is currently
used by conntrack-tools among many other applications.
%package -n %{name}-devel
Group: Development/Libraries/C and C++
Requires: %{name}%{soname} = %{version}
Summary: Userspace library for the in-kernel connection tracking state table
%description -n %{name}-devel
libnetfilter_conntrack is a userspace library providing a programming
interface (API) to the in-kernel connection tracking state table. The
library libnetfilter_conntrack has been previously known as
libnfnetlink_conntrack and libctnetlink. This library is currently
used by conntrack-tools among many other applications.
%prep
%setup -q
%build
%configure --disable-static
%__make %{?_smp_mflags}
%install
%makeinstall
find %{buildroot} -name "*.la" -delete
%post -n %{name}%{soname} -p /sbin/ldconfig
%postun -n %{name}%{soname} -p /sbin/ldconfig
%clean
test "%{buildroot}" != "/" && %__rm -rf %{buildroot}
%files -n %{name}%{soname}
%defattr(-,root,root)
%{_libdir}/libnetfilter_conntrack.so.%{soname}*
%files -n %{name}-devel
%defattr(-,root,root)
%{_includedir}/libnetfilter_conntrack
%{_libdir}/libnetfilter_conntrack.so
%{_libdir}/pkgconfig/libnetfilter_conntrack.pc
%changelog

0
ready Normal file
View File