Hello community, here is the log from the commit of package forkstat for openSUSE:Factory checked in at 2018-01-09 14:54:17 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/forkstat (Old) and /work/SRC/openSUSE:Factory/.forkstat.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "forkstat" Tue Jan 9 14:54:17 2018 rev:5 rq:562359 version:0.02.01 Changes: -------- --- /work/SRC/openSUSE:Factory/forkstat/forkstat.changes 2017-06-27 10:21:54.329825789 +0200 +++ /work/SRC/openSUSE:Factory/.forkstat.new/forkstat.changes 2018-01-09 14:54:18.328673588 +0100 @@ -1,0 +2,10 @@ +Fri Jan 5 21:27:17 UTC 2018 - [email protected] + +- update to version 0.02.01 + * Makefile: bump version + * debian/control: update Standards-Version to 4.1.2 + * ensure tty string never overflows, fixes gcc warning + * include <sys/uio.h> to fix clang warning + * Add -x option into mini help + +------------------------------------------------------------------- Old: ---- forkstat-0.02.00.tar.gz New: ---- forkstat-0.02.01.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ forkstat.spec ++++++ --- /var/tmp/diff_new_pack.QlSnRW/_old 2018-01-09 14:54:18.972643399 +0100 +++ /var/tmp/diff_new_pack.QlSnRW/_new 2018-01-09 14:54:18.976643211 +0100 @@ -1,7 +1,7 @@ # # spec file for package forkstat # -# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany. # Copyright (c) 2017, Martin Hauke <[email protected]> # # All modifications and additions to the file contributed by third parties @@ -18,7 +18,7 @@ Name: forkstat -Version: 0.02.00 +Version: 0.02.01 Release: 0 Summary: Process fork/exec/exit monitoring tool License: GPL-2.0+ ++++++ forkstat-0.02.00.tar.gz -> forkstat-0.02.01.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/forkstat-0.02.00/Makefile new/forkstat-0.02.01/Makefile --- old/forkstat-0.02.00/Makefile 2017-06-24 21:43:28.000000000 +0200 +++ new/forkstat-0.02.01/Makefile 2018-01-04 23:56:57.000000000 +0100 @@ -16,7 +16,7 @@ # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # -VERSION=0.02.00 +VERSION=0.02.01 # # Version "Perspicacious Process Peeker" # diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/forkstat-0.02.00/forkstat.c new/forkstat-0.02.01/forkstat.c --- old/forkstat-0.02.00/forkstat.c 2017-06-24 21:43:28.000000000 +0200 +++ new/forkstat-0.02.01/forkstat.c 2018-01-04 23:56:57.000000000 +0100 @@ -46,6 +46,7 @@ #include <sys/types.h> #include <sys/stat.h> #include <sys/socket.h> +#include <sys/uio.h> #include <linux/version.h> #include <linux/connector.h> @@ -268,7 +269,7 @@ continue; if (buf.st_rdev == dev) { - snprintf(tty, sizeof(tty), "pts/%s", dirent->d_name); + snprintf(tty, sizeof(tty), "pts/%-11.11s", dirent->d_name); break; } } @@ -1394,7 +1395,8 @@ "-r\trun with real time FIFO scheduler.\n" "-s\tshow short process name.\n" "-S\tshow event statistics at end of the run.\n" - "-q\trun quietly and enable -S option.\n"); + "-q\trun quietly and enable -S option.\n" + "-x\tshow extra process information.\n"); } /*
