commit fnotifystat for openSUSE:Factory

2020-08-24 Thread root
Hello community,

here is the log from the commit of package fnotifystat for openSUSE:Factory 
checked in at 2020-08-24 15:13:01

Comparing /work/SRC/openSUSE:Factory/fnotifystat (Old)
 and  /work/SRC/openSUSE:Factory/.fnotifystat.new.3399 (New)


Package is "fnotifystat"

Mon Aug 24 15:13:01 2020 rev:6 rq:828647 version:0.02.06

Changes:

--- /work/SRC/openSUSE:Factory/fnotifystat/fnotifystat.changes  2020-03-08 
22:25:07.500114025 +0100
+++ /work/SRC/openSUSE:Factory/.fnotifystat.new.3399/fnotifystat.changes
2020-08-24 15:13:38.466702170 +0200
@@ -1,0 +2,6 @@
+Sun Aug 16 17:12:55 UTC 2020 - Dirk Mueller 
+
+- update to 0.02.06
+  * code style cosmetic fixes 
+
+---

Old:

  fnotifystat-0.02.05.tar.gz

New:

  fnotifystat-0.02.06.tar.gz



Other differences:
--
++ fnotifystat.spec ++
--- /var/tmp/diff_new_pack.3ZabJH/_old  2020-08-24 15:13:41.298703550 +0200
+++ /var/tmp/diff_new_pack.3ZabJH/_new  2020-08-24 15:13:41.302703552 +0200
@@ -18,7 +18,7 @@
 
 
 Name:   fnotifystat
-Version:0.02.05
+Version:0.02.06
 Release:0
 Summary:File activity monitoring tool
 License:GPL-2.0-or-later

++ fnotifystat-0.02.05.tar.gz -> fnotifystat-0.02.06.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fnotifystat-0.02.05/Makefile 
new/fnotifystat-0.02.06/Makefile
--- old/fnotifystat-0.02.05/Makefile2020-02-27 13:38:02.0 +0100
+++ new/fnotifystat-0.02.06/Makefile2020-07-04 12:09:54.0 +0200
@@ -16,7 +16,7 @@
 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 
USA.
 #
 
-VERSION=0.02.05
+VERSION=0.02.06
 
 CFLAGS += -Wall -Wextra -DVERSION='"$(VERSION)"' -O2
 
@@ -44,7 +44,7 @@
rm -rf fnotifystat-$(VERSION)
mkdir fnotifystat-$(VERSION)
cp -rp Makefile fnotifystat.c fnotifystat.8 COPYING \
-   .travis.yml bash-completion fnotifystat-$(VERSION)
+   .travis.yml bash-completion snap fnotifystat-$(VERSION)
tar -zcf fnotifystat-$(VERSION).tar.gz fnotifystat-$(VERSION)
rm -rf fnotifystat-$(VERSION)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fnotifystat-0.02.05/fnotifystat.c 
new/fnotifystat-0.02.06/fnotifystat.c
--- old/fnotifystat-0.02.05/fnotifystat.c   2020-02-27 13:38:02.0 
+0100
+++ new/fnotifystat-0.02.06/fnotifystat.c   2020-07-04 12:09:54.0 
+0200
@@ -1511,7 +1511,7 @@
if (gettimeofday(, NULL) < 0)
pr_error("gettimeofday failed");
 
-   while(!stop_fnotifystat) {
+   while (!stop_fnotifystat) {
fd_set rfds;
double remaining;
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fnotifystat-0.02.05/snap/snapcraft.yaml 
new/fnotifystat-0.02.06/snap/snapcraft.yaml
--- old/fnotifystat-0.02.05/snap/snapcraft.yaml 1970-01-01 01:00:00.0 
+0100
+++ new/fnotifystat-0.02.06/snap/snapcraft.yaml 2020-07-04 12:09:54.0 
+0200
@@ -0,0 +1,35 @@
+name: fnotifystat
+summary: tool to measure page faults
+description: fnotifystat measures page fault activity and swap utilization of 
processes
+confinement: classic
+grade: stable
+assumes: [snapd2.37]
+base: core18
+type: app
+adopt-info: fnotifystat
+
+environment:
+CFLAGS: '-fstack-protector-strong -Wformat -Werror=format-security'
+LDFLAGS: Wl,-z,relro
+
+parts:
+fnotifystat:
+plugin: make
+source: https://github.com/ColinIanKing/fnotifystat.git
+override-pull: |
+snapcraftctl pull
+description=$(git describe HEAD --tags)
+sha=$(echo $description | tr '-' ' ' | awk '{print $NF}')
+version=${description%$sha}
+commits=$(git log --oneline | wc -l)
+date=$(date +'%Y%m%d')
+snapcraftctl set-version "$version$date-$commits-$sha"
+build-packages:
+- gcc
+- make
+apps:
+fnotifystat:
+plugs: 
+- home
+- system-observe
+command: usr/sbin/fnotifystat




commit fnotifystat for openSUSE:Factory

2020-03-08 Thread root
Hello community,

here is the log from the commit of package fnotifystat for openSUSE:Factory 
checked in at 2020-03-08 22:24:56

Comparing /work/SRC/openSUSE:Factory/fnotifystat (Old)
 and  /work/SRC/openSUSE:Factory/.fnotifystat.new.26092 (New)


Package is "fnotifystat"

Sun Mar  8 22:24:56 2020 rev:5 rq:782693 version:0.02.05

Changes:

--- /work/SRC/openSUSE:Factory/fnotifystat/fnotifystat.changes  2018-07-12 
09:21:34.818621223 +0200
+++ /work/SRC/openSUSE:Factory/.fnotifystat.new.26092/fnotifystat.changes   
2020-03-08 22:25:07.500114025 +0100
@@ -1,0 +2,37 @@
+Sun Mar  8 13:19:21 UTC 2020 - Martin Hauke 
+
+- Supplement against bash-completion, not bash
+
+---
+Sun Mar  8 12:52:02 UTC 2020 - Martin Hauke 
+
+- Drop SLE12 compat ifdef
+
+---
+Thu Feb 27 13:39:39 UTC 2020 - Martin Hauke 
+
+- Update to version 0.02.05
+  * Fix early return from loop on bad fstat
+  * Add device name information with -D and -I flags
+
+---
+Wed Feb 26 14:08:02 UTC 2020 - Martin Hauke 
+
+- Update to version 0.02.04
+  * Add bash completions
+
+---
+Tue Aug 27 09:43:09 UTC 2019 - Martin Hauke 
+
+- Update to version 0.02.03
+  * No funcional changes
+
+---
+Sun Jul  7 18:39:14 UTC 2019 - Martin Hauke 
+
+- Update to version 0.02.02
+  * Manual: fix spelling mistakes
+  * Update copyright year
+  * Add travis yaml file
+
+---

Old:

  fnotifystat-0.02.01.tar.gz

New:

  fnotifystat-0.02.05.tar.gz



Other differences:
--
++ fnotifystat.spec ++
--- /var/tmp/diff_new_pack.tEYI0O/_old  2020-03-08 22:25:08.760114802 +0100
+++ /var/tmp/diff_new_pack.tEYI0O/_new  2020-03-08 22:25:08.764114804 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package fnotifystat
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 # Copyright (c) 2017, Martin Hauke 
 #
 # All modifications and additions to the file contributed by third parties
@@ -13,30 +13,41 @@
 # 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/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
 Name:   fnotifystat
-Version:0.02.01
+Version:0.02.05
 Release:0
 Summary:File activity monitoring tool
 License:GPL-2.0-or-later
 Group:  System/Monitoring
-URL:http://kernel.ubuntu.com/~cking/fnotifystat/
-Source: 
http://kernel.ubuntu.com/~cking/tarballs/%{name}/%{name}-%{version}.tar.gz
+URL:https://kernel.ubuntu.com/~cking/fnotifystat/
+Source: 
https://kernel.ubuntu.com/~cking/tarballs/%{name}/%{name}-%{version}.tar.gz
 
 %description
 Fnotifystat periodically dumps out the activity on files in the system. It can
 be used to identify rogue file activity and discover which processes are
 performing open/close/read/write operations on the files.
 
+%package bash-completion
+Summary:Bash Completion for %{name}
+Group:  System/Benchmark
+Requires:   %{name} = %{version}
+Requires:   bash-completion
+Supplements:(fnotifystat and bash-completion)
+BuildArch:  noarch
+
+%description bash-completion
+Bash completion script for %{name}.
+
 %prep
 %setup -q
 
 %build
 export CFLAGS="%{optflags}"
-make %{?_smp_mflags}
+%make_build
 
 %install
 %make_install
@@ -46,4 +57,7 @@
 %{_sbindir}/fnotifystat
 %{_mandir}/man8/fnotifystat.8%{?ext_man}
 
+%files bash-completion
+%{_datadir}/bash-completion/completions/%{name}
+
 %changelog

++ fnotifystat-0.02.01.tar.gz -> fnotifystat-0.02.05.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fnotifystat-0.02.01/.travis.yml 
new/fnotifystat-0.02.05/.travis.yml
--- old/fnotifystat-0.02.01/.travis.yml 1970-01-01 01:00:00.0 +0100
+++ new/fnotifystat-0.02.05/.travis.yml 2020-02-27 13:38:02.0 +0100
@@ -0,0 +1,15 @@
+dist: bionic
+sudo: required
+
+matrix:
+include:
+- env: PEDANTIC=1
+
+before_install:
+- sudo apt-get update -q
+- sudo apt-get install build-essential
+
+language: c
+
+script:
+- make -j2 PEDANTIC=$PEDANTIC
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fnotifystat-0.02.01/Makefile 
new/fnotifystat-0.02.05/Makefile
--- 

commit fnotifystat for openSUSE:Factory

2018-07-12 Thread root
Hello community,

here is the log from the commit of package fnotifystat for openSUSE:Factory 
checked in at 2018-07-12 09:19:46

Comparing /work/SRC/openSUSE:Factory/fnotifystat (Old)
 and  /work/SRC/openSUSE:Factory/.fnotifystat.new (New)


Package is "fnotifystat"

Thu Jul 12 09:19:46 2018 rev:4 rq:622039 version:0.02.01

Changes:

--- /work/SRC/openSUSE:Factory/fnotifystat/fnotifystat.changes  2018-01-09 
14:54:05.129292363 +0100
+++ /work/SRC/openSUSE:Factory/.fnotifystat.new/fnotifystat.changes 
2018-07-12 09:21:34.818621223 +0200
@@ -1,0 +2,12 @@
+Sun Jun 17 15:36:29 UTC 2018 - mar...@gmx.de
+
+- Update to version 0.02.01
+  * Makefile: bump version
+  * debian/copyright: use secure URI
+  * debian/control: update dephelper to >= 11
+  * debian/control: remove trailing empty line
+  * debian/compat: update to 11
+  * voidify unused function returns
+  * Update copyright year
+
+---

Old:

  fnotifystat-0.02.00.tar.gz

New:

  fnotifystat-0.02.01.tar.gz



Other differences:
--
++ fnotifystat.spec ++
--- /var/tmp/diff_new_pack.sC8kmo/_old  2018-07-12 09:21:35.206621766 +0200
+++ /var/tmp/diff_new_pack.sC8kmo/_new  2018-07-12 09:21:35.210621771 +0200
@@ -18,14 +18,13 @@
 
 
 Name:   fnotifystat
-Version:0.02.00
+Version:0.02.01
 Release:0
 Summary:File activity monitoring tool
-License:GPL-2.0+
+License:GPL-2.0-or-later
 Group:  System/Monitoring
-Url:http://kernel.ubuntu.com/~cking/fnotifystat/
+URL:http://kernel.ubuntu.com/~cking/fnotifystat/
 Source: 
http://kernel.ubuntu.com/~cking/tarballs/%{name}/%{name}-%{version}.tar.gz
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 Fnotifystat periodically dumps out the activity on files in the system. It can
@@ -43,9 +42,8 @@
 %make_install
 
 %files
-%defattr(-,root,root)
-%doc COPYING
+%license COPYING
 %{_sbindir}/fnotifystat
-%{_mandir}/man8/fnotifystat.8%{ext_man}
+%{_mandir}/man8/fnotifystat.8%{?ext_man}
 
 %changelog

++ fnotifystat-0.02.00.tar.gz -> fnotifystat-0.02.01.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fnotifystat-0.02.00/Makefile 
new/fnotifystat-0.02.01/Makefile
--- old/fnotifystat-0.02.00/Makefile2018-01-05 00:44:37.0 +0100
+++ new/fnotifystat-0.02.01/Makefile2018-06-17 14:18:52.0 +0200
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2014-2017 Canonical, Ltd.
+# Copyright (C) 2014-2018 Canonical, Ltd.
 #
 # This program is free software; you can redistribute it and/or
 # modify it under the terms of the GNU General Public License
@@ -16,7 +16,7 @@
 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 
USA.
 #
 
-VERSION=0.02.00
+VERSION=0.02.01
 
 CFLAGS += -Wall -Wextra -DVERSION='"$(VERSION)"' -O2
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fnotifystat-0.02.00/fnotifystat.8 
new/fnotifystat-0.02.01/fnotifystat.8
--- old/fnotifystat-0.02.00/fnotifystat.8   2018-01-05 00:44:37.0 
+0100
+++ new/fnotifystat-0.02.01/fnotifystat.8   2018-06-17 14:18:52.0 
+0200
@@ -158,7 +158,7 @@
 .PP
 This manual page was written by Colin King , for the 
Ubuntu project (but may be used by others).
 .SH COPYRIGHT
-Copyright \(co 2014-2017 Canonical Ltd.
+Copyright \(co 2014-2018 Canonical Ltd.
 .br
 This is free software; see the source for copying conditions.  There is NO
 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fnotifystat-0.02.00/fnotifystat.c 
new/fnotifystat-0.02.01/fnotifystat.c
--- old/fnotifystat-0.02.00/fnotifystat.c   2018-01-05 00:44:37.0 
+0100
+++ new/fnotifystat-0.02.01/fnotifystat.c   2018-06-17 14:18:52.0 
+0200
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2014-2017 Canonical, Ltd.
+ * Copyright (C) 2014-2018 Canonical, Ltd.
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License
@@ -237,11 +237,11 @@
errno = 0;
val = strtod(str, NULL);
if (errno) {
-   fprintf(stderr, "Invalid value %s.\n", str);
+   (void)fprintf(stderr, "Invalid value %s.\n", str);
exit(EXIT_FAILURE);
}
if (*len == 0) {
-   fprintf(stderr, "Value %s is an invalid size.\n", str);
+   (void)fprintf(stderr, "Value %s is an invalid size.\n", str);
exit(EXIT_FAILURE);
}
return val;
@@ -266,7 +266,7 @@
  

commit fnotifystat for openSUSE:Factory

2018-01-09 Thread root
Hello community,

here is the log from the commit of package fnotifystat for openSUSE:Factory 
checked in at 2018-01-09 14:54:01

Comparing /work/SRC/openSUSE:Factory/fnotifystat (Old)
 and  /work/SRC/openSUSE:Factory/.fnotifystat.new (New)


Package is "fnotifystat"

Tue Jan  9 14:54:01 2018 rev:3 rq:562319 version:0.02.00

Changes:

--- /work/SRC/openSUSE:Factory/fnotifystat/fnotifystat.changes  2017-05-18 
20:50:15.182893460 +0200
+++ /work/SRC/openSUSE:Factory/.fnotifystat.new/fnotifystat.changes 
2018-01-09 14:54:05.129292363 +0100
@@ -1,0 +2,10 @@
+Fri Jan  5 21:24:31 UTC 2018 - mar...@gmx.de
+
+- update to version 0.02.00
+  * Makefile: bump version to 0.02.00
+  * debian/rules: remove extraneous space on line 5
+  * debian/control: update Standards-Version to 4.1.2
+  * unconsitfy pointer 'metadata' to fix a build warning
+  * Fix build warning, include .
+
+---

Old:

  fnotifystat-0.01.17.tar.gz

New:

  fnotifystat-0.02.00.tar.gz



Other differences:
--
++ fnotifystat.spec ++
--- /var/tmp/diff_new_pack.FcrvND/_old  2018-01-09 14:54:05.773262174 +0100
+++ /var/tmp/diff_new_pack.FcrvND/_new  2018-01-09 14:54:05.777261987 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package fnotifystat
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 # Copyright (c) 2017, Martin Hauke 
 #
 # All modifications and additions to the file contributed by third parties
@@ -18,7 +18,7 @@
 
 
 Name:   fnotifystat
-Version:0.01.17
+Version:0.02.00
 Release:0
 Summary:File activity monitoring tool
 License:GPL-2.0+

++ fnotifystat-0.01.17.tar.gz -> fnotifystat-0.02.00.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fnotifystat-0.01.17/Makefile 
new/fnotifystat-0.02.00/Makefile
--- old/fnotifystat-0.01.17/Makefile2017-04-14 18:16:38.0 +0200
+++ new/fnotifystat-0.02.00/Makefile2018-01-05 00:44:37.0 +0100
@@ -16,7 +16,7 @@
 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 
USA.
 #
 
-VERSION=0.01.17
+VERSION=0.02.00
 
 CFLAGS += -Wall -Wextra -DVERSION='"$(VERSION)"' -O2
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fnotifystat-0.01.17/fnotifystat.c 
new/fnotifystat-0.02.00/fnotifystat.c
--- old/fnotifystat-0.01.17/fnotifystat.c   2017-04-14 18:16:38.0 
+0200
+++ new/fnotifystat-0.02.00/fnotifystat.c   2018-01-05 00:44:37.0 
+0100
@@ -38,6 +38,7 @@
 #include 
 #include 
 #include 
+#include 
 #include 
 
 #define TABLE_SIZE (17627) /* Best if prime */
@@ -1356,7 +1357,7 @@
if (ret == 0)
break;
if ((len = read(fan_fd, (void *)buffer, BUFFER_SIZE)) > 
0) {
-   const struct fanotify_event_metadata *metadata;
+   struct fanotify_event_metadata *metadata;
metadata = (struct fanotify_event_metadata 
*)buffer;
 
while (FAN_EVENT_OK(metadata, len)) {




commit fnotifystat for openSUSE:Factory

2017-05-18 Thread root
Hello community,

here is the log from the commit of package fnotifystat for openSUSE:Factory 
checked in at 2017-05-18 20:50:14

Comparing /work/SRC/openSUSE:Factory/fnotifystat (Old)
 and  /work/SRC/openSUSE:Factory/.fnotifystat.new (New)


Package is "fnotifystat"

Thu May 18 20:50:14 2017 rev:2 rq:495695 version:0.01.17

Changes:

--- /work/SRC/openSUSE:Factory/fnotifystat/fnotifystat.changes  2016-09-21 
18:46:42.0 +0200
+++ /work/SRC/openSUSE:Factory/.fnotifystat.new/fnotifystat.changes 
2017-05-18 20:50:15.182893460 +0200
@@ -1,0 +2,23 @@
+Wed May 10 14:49:51 UTC 2017 - mar...@gmx.de
+
+- update to version 0.01.17
+  * Makefile: bump version
+  * Manual: update copyright year and date
+  * Add variable pid size handling.
+  * Re-order declarations of mounts and mount in fnotify_event_init
+  * Update copyright year to source
+
+- update to version 0.01.16
+  * Makefile: bump version
+  * Remove extraneous declaration of ret to fix shadowing
+  * constify fs1 fs2
+  * Make some helper functions static
+  * Makefile: add PEDANTIC flags
+
+- update to version 0.01.15
+  * Makefile: bump version
+  * reduce scope of ptr
+  * debian/control: update Standards-Version to 3.9.8
+  * Update and correct copyright years
+
+---

Old:

  fnotifystat-0.01.14.tar.gz

New:

  fnotifystat-0.01.17.tar.gz



Other differences:
--
++ fnotifystat.spec ++
--- /var/tmp/diff_new_pack.dQ7jhR/_old  2017-05-18 20:50:16.170754047 +0200
+++ /var/tmp/diff_new_pack.dQ7jhR/_new  2017-05-18 20:50:16.174753482 +0200
@@ -1,7 +1,8 @@
 #
 # spec file for package fnotifystat
 #
-# Copyright (c) 2015, Martin Hauke 
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017, Martin Hauke 
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +18,7 @@
 
 
 Name:   fnotifystat
-Version:0.01.14
+Version:0.01.17
 Release:0
 Summary:File activity monitoring tool
 License:GPL-2.0+
@@ -45,6 +46,6 @@
 %defattr(-,root,root)
 %doc COPYING
 %{_sbindir}/fnotifystat
-%{_mandir}/man8/*
+%{_mandir}/man8/fnotifystat.8%{ext_man}
 
 %changelog

++ fnotifystat-0.01.14.tar.gz -> fnotifystat-0.01.17.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fnotifystat-0.01.14/Makefile 
new/fnotifystat-0.01.17/Makefile
--- old/fnotifystat-0.01.14/Makefile2015-10-14 20:05:31.0 +0200
+++ new/fnotifystat-0.01.17/Makefile2017-04-14 18:16:38.0 +0200
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2013-2015 Canonical, Ltd.
+# Copyright (C) 2014-2017 Canonical, Ltd.
 #
 # This program is free software; you can redistribute it and/or
 # modify it under the terms of the GNU General Public License
@@ -16,10 +16,20 @@
 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 
USA.
 #
 
-VERSION=0.01.14
+VERSION=0.01.17
 
 CFLAGS += -Wall -Wextra -DVERSION='"$(VERSION)"' -O2
 
+#
+# Pedantic flags
+#
+ifeq ($(PEDANTIC),1)
+CFLAGS += -Wabi -Wcast-qual -Wfloat-equal -Wmissing-declarations \
+   -Wmissing-format-attribute -Wno-long-long -Wpacked \
+   -Wredundant-decls -Wshadow -Wno-missing-field-initializers \
+   -Wno-missing-braces -Wno-sign-compare -Wno-multichar
+endif
+
 BINDIR=/usr/sbin
 MANDIR=/usr/share/man/man8
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fnotifystat-0.01.14/fnotifystat.8 
new/fnotifystat-0.01.17/fnotifystat.8
--- old/fnotifystat-0.01.14/fnotifystat.8   2015-10-14 20:05:31.0 
+0200
+++ new/fnotifystat-0.01.17/fnotifystat.8   2017-04-14 18:16:38.0 
+0200
@@ -2,7 +2,7 @@
 .\" First parameter, NAME, should be all caps
 .\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
 .\" other parameters are allowed: see man(7), man(1)
-.TH FNOTIFYSTAT 8 "May 18, 2015"
+.TH FNOTIFYSTAT 8 "Apr 14, 2017"
 .\" Please adjust this date whenever revising the manpage.
 .\"
 .\" Some roff macros, for reference:
@@ -158,7 +158,7 @@
 .PP
 This manual page was written by Colin King , for the 
Ubuntu project (but may be used by others).
 .SH COPYRIGHT
-Copyright \(co 2011-2015 Canonical Ltd.
+Copyright \(co 2014-2017 Canonical Ltd.
 .br
 This is free software; see the source for copying conditions.  There is NO
 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fnotifystat-0.01.14/fnotifystat.c 

commit fnotifystat for openSUSE:Factory

2016-09-21 Thread h_root
Hello community,

here is the log from the commit of package fnotifystat for openSUSE:Factory 
checked in at 2016-09-21 18:45:56

Comparing /work/SRC/openSUSE:Factory/fnotifystat (Old)
 and  /work/SRC/openSUSE:Factory/.fnotifystat.new (New)


Package is "fnotifystat"

Changes:

New Changes file:

--- /dev/null   2016-09-15 12:42:18.240042505 +0200
+++ /work/SRC/openSUSE:Factory/.fnotifystat.new/fnotifystat.changes 
2016-09-21 18:45:57.0 +0200
@@ -0,0 +1,5 @@
+---
+Wed Nov 11 21:11:38 UTC 2015 - mar...@gmx.de
+
+- initial package
+

New:

  fnotifystat-0.01.14.tar.gz
  fnotifystat.changes
  fnotifystat.spec



Other differences:
--
++ fnotifystat.spec ++
#
# spec file for package fnotifystat
#
# Copyright (c) 2015, Martin Hauke 
#
# 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/
#


Name:   fnotifystat
Version:0.01.14
Release:0
Summary:File activity monitoring tool
License:GPL-2.0+
Group:  System/Monitoring
Url:http://kernel.ubuntu.com/~cking/fnotifystat/
Source: 
http://kernel.ubuntu.com/~cking/tarballs/%{name}/%{name}-%{version}.tar.gz
BuildRoot:  %{_tmppath}/%{name}-%{version}-build

%description
Fnotifystat periodically dumps out the activity on files in the system. It can
be used to identify rogue file activity and discover which processes are
performing open/close/read/write operations on the files. 

%prep
%setup -q

%build
export CFLAGS="%{optflags}"
make %{?_smp_mflags}

%install
%make_install

%files
%defattr(-,root,root)
%doc COPYING
%{_sbindir}/fnotifystat
%{_mandir}/man8/*

%changelog