Hello community, here is the log from the commit of package iptraf for openSUSE:Factory checked in at 2011-12-15 16:06:26 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/iptraf (Old) and /work/SRC/openSUSE:Factory/.iptraf.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "iptraf", Maintainer is "[email protected]" Changes: -------- --- /work/SRC/openSUSE:Factory/iptraf/iptraf.changes 2011-09-23 02:03:40.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.iptraf.new/iptraf.changes 2011-12-15 16:06:27.000000000 +0100 @@ -1,0 +2,12 @@ +Thu Dec 15 11:15:30 UTC 2011 - [email protected] + +- install /var/lib/iptraf-ng directory (bnc#736900) +- fix executing rvnamed daemon (bnc#737032) + - add fix-calling-rvnamed.patch + +------------------------------------------------------------------- +Fri Dec 2 16:22:57 UTC 2011 - [email protected] + +- add automake as buildrequire to avoid implicit dependency + +------------------------------------------------------------------- New: ---- fix-calling-rvnamed.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ iptraf.spec ++++++ --- /var/tmp/diff_new_pack.TpS3xa/_old 2011-12-15 16:06:28.000000000 +0100 +++ /var/tmp/diff_new_pack.TpS3xa/_new 2011-12-15 16:06:28.000000000 +0100 @@ -16,13 +16,12 @@ # - Name: iptraf Version: 1.0.2+git64 -Release: 5 -Group: Productivity/Networking/Diagnostic +Release: 0 Summary: TCP/IP Network Monitor -License: GPL2+ +License: GPL-2.0+ +Group: Productivity/Networking/Diagnostic Url: https://fedorahosted.org/iptraf-ng/ #Git-Clone: git://git.fedorahosted.org/git/iptraf-ng @@ -30,8 +29,11 @@ Source: %name-ng-%version.tar.xz #PATCH-FIX-UPSTREAM off-by-one allocation error (bnc#711726) Patch0: iptraf-1.0.2-segfault.patch +Patch1: fix-calling-rvnamed.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build -BuildRequires: ncurses-devel xz +BuildRequires: automake +BuildRequires: ncurses-devel +BuildRequires: xz %description IPTraf-ng is a console-based network statistics utility. It gathers a @@ -41,12 +43,10 @@ %package ng -License: GPL2+ # 2010-04: We really want to have a iptraf-ng binrpm so that Obsoletes can # easily work (and make the user somewhat aware of the change by seeing a # new install in zypper). puzel wanted to keep the iptraf name in OBS however, # so we now have this nifty construct with an empty main package. -Group: Productivity/Networking/Diagnostic Summary: TCP/IP Network Monitor # Just pick a number that is >3 Provides: iptraf = 4 @@ -62,6 +62,7 @@ %prep %setup -qn %name-ng %patch0 -p1 +%patch1 -p1 %build if [ ! -e configure ]; then @@ -72,10 +73,12 @@ %install make install DESTDIR="%buildroot"; +install -d -m 0755 %{buildroot}/var/lib/iptraf-ng %files ng %defattr(-,root,root) %_sbindir/* %_mandir/man*/* +/var/lib/iptraf-ng %changelog ++++++ fix-calling-rvnamed.patch ++++++ Index: iptraf-ng/src/dirs.h =================================================================== --- iptraf-ng.orig/src/dirs.h +++ iptraf-ng/src/dirs.h @@ -34,7 +34,7 @@ #endif #ifndef EXECDIR -#define EXECDIR "/usr/bin" +#define EXECDIR "/usr/sbin" #endif /* @@ -161,13 +161,13 @@ * The rvnamed program file */ -#define RVNDFILE get_path(T_EXECDIR, "rvnamed-ng") +#define RVNDFILE get_path(T_EXECDIR, "rvnamed") /* * The rvnamed log file */ -#define RVNDLOGFILE get_path(T_LOGDIR, "rvnamed-ng.log") +#define RVNDLOGFILE get_path(T_LOGDIR, "rvnamed.log") /* * File to contain the current TCP filter data file name. UDP filter -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
