Hello community, here is the log from the commit of package netsniff-ng for openSUSE:Factory checked in at 2018-01-09 14:53:51 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/netsniff-ng (Old) and /work/SRC/openSUSE:Factory/.netsniff-ng.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "netsniff-ng" Tue Jan 9 14:53:51 2018 rev:2 rq:562316 version:0.6.4 Changes: -------- --- /work/SRC/openSUSE:Factory/netsniff-ng/netsniff-ng.changes 2017-08-24 18:48:26.978784976 +0200 +++ /work/SRC/openSUSE:Factory/.netsniff-ng.new/netsniff-ng.changes 2018-01-09 14:53:53.413841577 +0100 @@ -1,0 +2,14 @@ +Fri Jan 5 21:54:23 UTC 2018 - mar...@gmx.de + +- Update to version 0.6.4 + * DNS header generation in trafgen + * Support for dumping proto headers in trafgen + * Fixes for dinc()/ddec() to properly respect min/max range and + avoid counter corruption + * Fixes for NULL pointer dereferences and resource leaks in trafgen + * Build fixes for various compiler versions, libc implementations + and distributions +- Rebase patch: + * netsniff-ng-fix-ncurses.diff + +------------------------------------------------------------------- Old: ---- netsniff-ng-0.6.3.tar.xz New: ---- netsniff-ng-0.6.4.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ netsniff-ng.spec ++++++ --- /var/tmp/diff_new_pack.rP08kE/_old 2018-01-09 14:53:54.097809513 +0100 +++ /var/tmp/diff_new_pack.rP08kE/_new 2018-01-09 14:53:54.101809326 +0100 @@ -1,7 +1,7 @@ # # spec file for package netsniff-ng # -# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany. # Copyright (c) 2012 Pascal Bleser <pascal.ble...@opensuse.org> # # All modifications and additions to the file contributed by third parties @@ -18,7 +18,7 @@ Name: netsniff-ng -Version: 0.6.3 +Version: 0.6.4 Release: 0 Summary: Network Sniffer for Packet Inspection License: GPL-2.0 @@ -39,8 +39,8 @@ BuildRequires: libnl3-devel BuildRequires: libpcap-devel BuildRequires: libsodium-devel -BuildRequires: liburcu-devel BuildRequires: libtool +BuildRequires: liburcu-devel BuildRequires: make %if 0%{?suse_version} > 1320 BuildRequires: ncurses5-devel ++++++ netsniff-ng-0.6.3.tar.xz -> netsniff-ng-0.6.4.tar.xz ++++++ ++++ 4070 lines of diff (skipped) ++++++ netsniff-ng-fix-ncurses.diff ++++++ --- /var/tmp/diff_new_pack.rP08kE/_old 2018-01-09 14:53:54.369796762 +0100 +++ /var/tmp/diff_new_pack.rP08kE/_new 2018-01-09 14:53:54.373796574 +0100 @@ -1,26 +1,26 @@ diff --git a/configure b/configure -index 72bb574..44aa591 100755 +index d5fe7e6..56148ac 100755 --- a/configure +++ b/configure -@@ -403,9 +403,9 @@ int main(void) +@@ -428,9 +428,9 @@ int main(void) EOF $CC \ - $($PKG_CONFIG --cflags ncurses 2>> config.log) \ -+ $(ncurses5-config --cflags ncurses 2>> config.log) \ ++ $(ncurses5-config --cflags 2>> config.log) \ -o $TMPDIR/ncursestest $TMPDIR/ncursestest.c \ - $($PKG_CONFIG --libs ncurses 2>> config.log \ -+ $(ncurses5-config --libs ncurses 2>> config.log \ ++ $(ncurses5-config --libs 2>> config.log \ || echo '-lncurses' ) \ >> config.log 2>&1 if [ ! -x $TMPDIR/ncursestest ] ; then diff --git a/flowtop/Makefile b/flowtop/Makefile -index effe7eb..ab49a51 100644 +index e001ce8..bffd86e 100644 --- a/flowtop/Makefile +++ b/flowtop/Makefile @@ -1,8 +1,7 @@ flowtop-libs = -lurcu \ - -lnetfilter_conntrack \ + $(shell PKG_CONFIG_PATH=$(PKG_CONFIG_PATH) $(PKG_CONFIG) --libs libnetfilter_conntrack 2> /dev/null ) \ - $(shell PKG_CONFIG_PATH=$(PKG_CONFIG_PATH) $(PKG_CONFIG) --libs ncurses 2> /dev/null \ + $(shell ncurses5-config --libs 2> /dev/null \ || echo '-lncurses') \