1
0

Accepting request 33705 from security:netfilter

Copy from security:netfilter/libnetfilter_log based on submit request 33705 from user jengelh

OBS-URL: https://build.opensuse.org/request/show/33705
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libnetfilter_log?expand=0&rev=1
This commit is contained in:
OBS User autobuild 2010-03-15 10:25:02 +00:00 committed by Git OBS Bridge
commit 3fa7d35504
7 changed files with 133 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_log1

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:40eaa57964c9cc8672abb2429e653776fb3bc44be815ee1ed07d4f4ee249477a
size 232025

9
libnetfilter_log.changes Normal file
View File

@ -0,0 +1,9 @@
-------------------------------------------------------------------
Tue Feb 23 22:16:17 UTC 2010 - jengelh@medozas.de
- add baselibs.conf
- use %_smp_mflags
- remove unnecessary PreReq: glibc
- secure the *.la delete call
- wrap description at col 70
- merge extra libnetfilter_log_libipulog package back into main

96
libnetfilter_log.spec Normal file
View File

@ -0,0 +1,96 @@
#
# spec file for package libnetfilter_log (Version 0.0.16)
#
# 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 1
Name: libnetfilter_log
Version: 0.0.16
Release: 1
License: GNU GPL v2
Group: Productivity/Networking/Security
Url: http://netfilter.org/projects/libnetfilter_log/
Source: http://netfilter.org/projects/libnetfilter_log/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 accessing logged packets
%description
libnetfilter_log is a userspace library providing interface to
packets that have been logged by the kernel packet filter. It is is
part of a system that deprecates the old syslog/dmesg based packet
logging. This library has been previously known as libnfnetlink_log.
%define debug_package_requires %{name}%{soname} = %{version}-%{release}
%package -n %{name}%{soname}
Group: System/Libraries
PreReq: glibc
Summary: Userspace library for accessing logged packets
%description -n %{name}%{soname}
libnetfilter_log is a userspace library providing interface to
packets that have been logged by the kernel packet filter. It is is
part of a system that deprecates the old syslog/dmesg based packet
logging. This library has been previously known as libnfnetlink_log.
%package -n %{name}-devel
Group: Development/Libraries/C and C++
Requires: %{name}%{soname} = %{version} libnfnetlink-devel
Summary: Userspace library for accessing logged packets
%description -n %{name}-devel
libnetfilter_log is a userspace library providing interface to
packets that have been logged by the kernel packet filter. It is is
part of a system that deprecates the old syslog/dmesg based packet
logging. This library has been previously known as libnfnetlink_log.
%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_log.so.%{soname}*
%{_libdir}/libnetfilter_log_libipulog.so.%{soname}*
%files -n %{name}-devel
%defattr(-,root,root)
%{_includedir}/libnetfilter_log
%{_libdir}/libnetfilter_log.so
%{_libdir}/libnetfilter_log_libipulog.so
%{_libdir}/pkgconfig/libnetfilter_log.pc
%changelog

0
ready Normal file
View File