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 2022-06-20 15:37:00
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/inotify-tools (Old)
 and      /work/SRC/openSUSE:Factory/.inotify-tools.new.1548 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "inotify-tools"

Mon Jun 20 15:37:00 2022 rev:11 rq:983714 version:3.22.6.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/inotify-tools/inotify-tools.changes      
2022-05-08 21:52:16.875457749 +0200
+++ /work/SRC/openSUSE:Factory/.inotify-tools.new.1548/inotify-tools.changes    
2022-06-20 15:37:21.642866979 +0200
@@ -1,0 +2,7 @@
+Sun Jun 19 14:04:47 UTC 2022 - Andreas Stieger <andreas.stie...@gmx.de>
+
+- update to 3.22.6.0:
+  * Cast pointer to char so increments to pointer are at one byte
+    intervals
+
+-------------------------------------------------------------------

Old:
----
  3.22.1.0.tar.gz

New:
----
  3.22.6.0.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ inotify-tools.spec ++++++
--- /var/tmp/diff_new_pack.AC6fwq/_old  2022-06-20 15:37:22.138867704 +0200
+++ /var/tmp/diff_new_pack.AC6fwq/_new  2022-06-20 15:37:22.142867710 +0200
@@ -17,10 +17,10 @@
 
 
 Name:           inotify-tools
-Version:        3.22.1.0
+Version:        3.22.6.0
 Release:        0
 Summary:        Tools for inotify
-License:        GPL-2.0-only
+License:        GPL-2.0-only WITH Linux-syscall-note AND GPL-2.0-or-later
 Group:          System/Monitoring
 URL:            https://github.com/inotify-tools/inotify-tools
 Source:         
https://github.com/inotify-tools/inotify-tools/archive/%{version}.tar.gz
@@ -63,7 +63,7 @@
 utilities for the kernel facility inotify.
 
 %prep
-%setup -q
+%autosetup -p1
 
 %build
 ./autogen.sh
@@ -84,22 +84,21 @@
 %make_build check
 
 %files
-%{_bindir}/inotifywait
-%{_bindir}/inotifywatch
-%{_mandir}/man1/inotifywait.1%{?ext_man}
-%{_mandir}/man1/inotifywatch.1%{?ext_man}
-%{_mandir}/man1/fsnotifywait.1%{?ext_man}
-%{_mandir}/man1/fsnotifywatch.1%{?ext_man}
+%license COPYING
+%{_bindir}/*
+%{_mandir}/man1/*.1%{?ext_man}
 
 %files -n libinotifytools0
 %license COPYING
 %{_libdir}/libinotifytools.so.*
 
 %files devel
+%license COPYING
 %{_libdir}/libinotifytools.so
 %{_includedir}/inotifytools/
 
 %files doc
+%license COPYING
 %doc %{_docdir}/%{name}
 
 %changelog

++++++ 3.22.1.0.tar.gz -> 3.22.6.0.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/inotify-tools-3.22.1.0/configure.ac 
new/inotify-tools-3.22.6.0/configure.ac
--- old/inotify-tools-3.22.1.0/configure.ac     2022-01-18 18:29:46.000000000 
+0100
+++ new/inotify-tools-3.22.6.0/configure.ac     2022-06-07 10:43:40.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.22.1.0])
+AC_INIT([inotify-tools], [3.22.6.0])
 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.22.1.0/libinotifytools/src/inotifytools.c 
new/inotify-tools-3.22.6.0/libinotifytools/src/inotifytools.c
--- old/inotify-tools-3.22.1.0/libinotifytools/src/inotifytools.c       
2022-01-18 18:29:46.000000000 +0100
+++ new/inotify-tools-3.22.6.0/libinotifytools/src/inotifytools.c       
2022-06-07 10:43:40.000000000 +0200
@@ -1510,8 +1510,8 @@
                return NULL;
        }
 
-       this_bytes = read(inotify_fd, &event[0] + bytes,
-                         sizeof(struct inotify_event)*MAX_EVENTS - bytes);
+       this_bytes = read(inotify_fd, (char*)&event[0] + bytes,
+                         sizeof(struct inotify_event) * MAX_EVENTS - bytes);
        if ( this_bytes < 0 ) {
                error = errno;
                return NULL;

Reply via email to