Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package inotify-tools for openSUSE:Factory checked in at 2021-10-20 20:22:44 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/inotify-tools (Old) and /work/SRC/openSUSE:Factory/.inotify-tools.new.1890 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "inotify-tools" Wed Oct 20 20:22:44 2021 rev:8 rq:925709 version:3.21.9.6 Changes: -------- --- /work/SRC/openSUSE:Factory/inotify-tools/inotify-tools.changes 2021-09-30 23:43:46.996496028 +0200 +++ /work/SRC/openSUSE:Factory/.inotify-tools.new.1890/inotify-tools.changes 2021-10-20 20:22:55.577327778 +0200 @@ -1,0 +2,7 @@ +Sat Oct 16 15:13:57 UTC 2021 - Dirk M??ller <dmuel...@suse.com> + +- update to 3.21.9.6: + * update path for includes in stats.h + * Fix spellings in manpages + +------------------------------------------------------------------- Old: ---- 3.21.9.5.tar.gz New: ---- 3.21.9.6.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ inotify-tools.spec ++++++ --- /var/tmp/diff_new_pack.CaHwEt/_old 2021-10-20 20:22:56.005328042 +0200 +++ /var/tmp/diff_new_pack.CaHwEt/_new 2021-10-20 20:22:56.005328042 +0200 @@ -17,7 +17,7 @@ Name: inotify-tools -Version: 3.21.9.5 +Version: 3.21.9.6 Release: 0 Summary: Tools for inotify License: GPL-2.0-only ++++++ 3.21.9.5.tar.gz -> 3.21.9.6.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/inotify-tools-3.21.9.5/build_and_test.sh new/inotify-tools-3.21.9.6/build_and_test.sh --- old/inotify-tools-3.21.9.5/build_and_test.sh 2021-09-22 11:20:46.000000000 +0200 +++ new/inotify-tools-3.21.9.6/build_and_test.sh 2021-09-28 10:39:16.000000000 +0200 @@ -64,11 +64,11 @@ sudo apt install -y clang-tidy || true sudo apt install -y clang-format || true sudo apt install -y clang-tools || true - sudo apt install -y clang-format-10 || true + sudo apt install -y clang-format-11 || true sudo apt install -y doxygen || true fi - for i in {64..9}; do + for i in {64..11}; do if command -v "git-clang-format-$i" > /dev/null; then CLANG_FMT_VER="clang-format-$i" break diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/inotify-tools-3.21.9.5/configure.ac new/inotify-tools-3.21.9.6/configure.ac --- old/inotify-tools-3.21.9.5/configure.ac 2021-09-22 11:20:46.000000000 +0200 +++ new/inotify-tools-3.21.9.6/configure.ac 2021-09-28 10:39:16.000000000 +0200 @@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ(2.59) -AC_INIT([inotify-tools], [3.21.9.2]) +AC_INIT([inotify-tools], [3.21.9.6]) AC_CONFIG_AUX_DIR([config]) AC_CONFIG_SRCDIR([src/inotifywait.c]) AC_CONFIG_HEADERS([config.h]) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/inotify-tools-3.21.9.5/libinotifytools/src/stats.h new/inotify-tools-3.21.9.6/libinotifytools/src/stats.h --- old/inotify-tools-3.21.9.5/libinotifytools/src/stats.h 2021-09-22 11:20:46.000000000 +0200 +++ new/inotify-tools-3.21.9.6/libinotifytools/src/stats.h 2021-09-28 10:39:16.000000000 +0200 @@ -1,12 +1,11 @@ #ifndef STATS_H #define STATS_H -#include "inotifytools.h" #include "inotifytools/inotify.h" +#include "inotifytools/inotifytools.h" #include "inotifytools_p.h" - extern int collect_stats; void record_stats( struct inotify_event const * event ); unsigned int *stat_ptr(watch *w, int event); watch *watch_from_wd(int wd); -#endif // STATS_H \ No newline at end of file +#endif // STATS_H diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/inotify-tools-3.21.9.5/man/inotifywait.1.in new/inotify-tools-3.21.9.6/man/inotifywait.1.in --- old/inotify-tools-3.21.9.5/man/inotifywait.1.in 2021-09-22 11:20:46.000000000 +0200 +++ new/inotify-tools-3.21.9.6/man/inotifywait.1.in 2021-09-28 10:39:16.000000000 +0200 @@ -42,7 +42,7 @@ .B inotifywait but it is using Linux's .BR fanotify(7) -interface by default. If explicitly sepcified, it uses the +interface by default. If explicitly specified, it uses the .BR inotify(7) interface. @@ -285,7 +285,7 @@ .TP .B close_write A watched file or a file within a watched directory was closed, after being -opened in writeable mode. This does not necessarily imply the file was written +opened in writable mode. This does not necessarily imply the file was written to. .TP diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/inotify-tools-3.21.9.5/man/inotifywatch.1.in new/inotify-tools-3.21.9.6/man/inotifywatch.1.in --- old/inotify-tools-3.21.9.5/man/inotifywatch.1.in 2021-09-22 11:20:46.000000000 +0200 +++ new/inotify-tools-3.21.9.6/man/inotifywatch.1.in 2021-09-28 10:39:16.000000000 +0200 @@ -41,7 +41,7 @@ .B inotifywatch but it is using Linux's .BR fanotify(7) -interface by default. If explicitly sepcified, it uses the +interface by default. If explicitly specified, it uses the .BR inotify(7) interface. @@ -195,7 +195,7 @@ .TP .B close_write A watched file or a file within a watched directory was closed, after being -opened in writeable mode. This does not necessarily imply the file was written +opened in writable mode. This does not necessarily imply the file was written to. .TP