Hello community,

here is the log from the commit of package libnetfilter_conntrack for 
openSUSE:Factory checked in at 2012-01-05 13:48:27
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/libnetfilter_conntrack (Old)
 and      /work/SRC/openSUSE:Factory/.libnetfilter_conntrack.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "libnetfilter_conntrack", Maintainer is "[email protected]"

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/libnetfilter_conntrack/libnetfilter_conntrack.changes
    2011-09-23 02:09:01.000000000 +0200
+++ 
/work/SRC/openSUSE:Factory/.libnetfilter_conntrack.new/libnetfilter_conntrack.changes
       2012-01-05 13:48:29.000000000 +0100
@@ -1,0 +2,21 @@
+Wed Jan  4 18:28:21 UTC 2012 - [email protected]
+
+- Update to new upstream release 1.0.0
+* build and compilation updates
+* expect: fix missing parsing of master tuple
+* expect: nfexp_snprintf prints expectation timeout if present
+* expect: nfexp_snprintf displays mask and master tuple information
+* expect: add nfexp_send()
+* expect: support CTA_EXPECT_HELP_NAME
+* src: clarify licensing terms of library (GPLv2+)
+* conntrack: fix size of CTA_PROTOINFO_TCP_FLAGS_ORIGINAL in ARM
+* conntrack: fix set operation for master IPv6 src and dst
+* expect: add nfexp_cmp
+
+-------------------------------------------------------------------
+Thu Dec 29 21:17:48 UTC 2011 - [email protected]
+
+- SPDX format for License: tag
+- Use separate include directory to catch compile errors
+
+-------------------------------------------------------------------

Old:
----
  libnetfilter_conntrack-0.9.1.tar.bz2
  libnetfilter_conntrack-0.9.1.tar.bz2.sig

New:
----
  libnetfilter_conntrack-1.0.0.tar.bz2
  libnetfilter_conntrack-1.0.0.tar.bz2.sig

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ libnetfilter_conntrack.spec ++++++
--- /var/tmp/diff_new_pack.Z13v1Y/_old  2012-01-05 13:48:30.000000000 +0100
+++ /var/tmp/diff_new_pack.Z13v1Y/_new  2012-01-05 13:48:30.000000000 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libnetfilter_conntrack
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 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
@@ -15,22 +15,26 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
 
-%define soname 3
 
 Name:           libnetfilter_conntrack
-Version:        0.9.1
-Release:        1
-License:        GNU GPL v2
+%define lname  %{name}3
+Version:        1.0.0
+Release:        0
+License:        GPL-2.0+
 Group:          Productivity/Networking/Security
 Url:            http://netfilter.org/projects/libnetfilter_conntrack/
-Source:         
http://netfilter.org/projects/%name/files/%name-%version.tar.bz2
-Source2:        
http://netfilter.org/projects/%name/files/%name-%version.tar.bz2.sig
+
+#Git-Clone:    git://git.netfilter.org/libnetfilter_conntrack
+%define git_snapshot 0
+Source:         
ftp://ftp.netfilter.org/pub/libnetfilter_conntrack/%name-%version.tar.bz2
+Source2:        
ftp://ftp.netfilter.org/pub/libnetfilter_conntrack/%name-%version.tar.bz2.sig
 Source3:        baselibs.conf
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  libnfnetlink-devel >= 1.0.0
-BuildRequires:  linux-kernel-headers >= 2.6.18 pkg-config
+%if %git_snapshot
+BuildRequires:  autoconf automake >= 1.6 libtool
+%endif
+BuildRequires:  pkgconfig >= 0.23 pkgconfig(libnfnetlink) >= 1.0.0
 Summary:        Userspace library for the in-kernel connection tracking state 
table
 
 %description
@@ -40,29 +44,23 @@
 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}
-
-
+%package -n %lname
 Group:          System/Libraries
 Summary:        Userspace library for the in-kernel connection tracking state 
table
 
-%description -n %{name}%{soname}
+%description -n %lname
 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
-
-
+%package devel
 Group:          Development/Libraries/C and C++
-Requires:       %{name}%{soname} = %{version}
+Requires:       %lname = %version
 Summary:        Userspace library for the in-kernel connection tracking state 
table
 
-%description -n %{name}-devel
+%description 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
@@ -73,28 +71,28 @@
 %setup -q
 
 %build
-%configure --disable-static
-%__make %{?_smp_mflags}
+if [ "%git_snapshot" -ne 0 ] || [ ! -e configure ]; then
+       autoreconf -fi;
+fi;
+%configure --disable-static --includedir=%_includedir/%name
+make %{?_smp_mflags}
 
 %install
 %makeinstall
-find %{buildroot} -name "*.la" -delete
-
-%post -n %{name}%{soname} -p /sbin/ldconfig
+rm -f "%buildroot/%_libdir"/*.la;
 
-%postun -n %{name}%{soname} -p /sbin/ldconfig
+%post -n %lname -p /sbin/ldconfig
 
-%clean
-test "%{buildroot}" != "/" && %__rm -rf %{buildroot}
+%postun -n %lname -p /sbin/ldconfig
 
-%files -n %{name}%{soname}
+%files -n %lname
 %defattr(-,root,root)
-%{_libdir}/libnetfilter_conntrack.so.%{soname}*
+%_libdir/libnetfilter_conntrack.so.3*
 
-%files -n %{name}-devel
+%files devel
 %defattr(-,root,root)
-%{_includedir}/libnetfilter_conntrack
-%{_libdir}/libnetfilter_conntrack.so
-%{_libdir}/pkgconfig/libnetfilter_conntrack.pc
+%_includedir/libnetfilter_conntrack
+%_libdir/libnetfilter_conntrack.so
+%_libdir/pkgconfig/libnetfilter_conntrack.pc
 
 %changelog

++++++ libnetfilter_conntrack-0.9.1.tar.bz2 -> 
libnetfilter_conntrack-1.0.0.tar.bz2 ++++++
++++ 19823 lines of diff (skipped)

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to