6bfc98
6bfc98
# trim changelog included in binary rpms
6bfc98
%global _changelog_trimtime %(date +%s -d "1 year ago")
6bfc98
6bfc98
%if 0%{?rhel} > 7
6bfc98
# Disable python2 build by default
6bfc98
%bcond_with python2
6bfc98
%else
6bfc98
%bcond_without python2
6bfc98
%endif
6bfc98
6bfc98
Summary: Library providing the FAM File Alteration Monitor API
6bfc98
Name: gamin
6bfc98
Version: 0.1.10
6bfc98
Release: 32%{?dist}
6bfc98
6bfc98
# The COPYING file contains the LGPLv2 license. However, some of the included
6bfc98
# files (i.e. server/inotify-path.h, server/inotify-kernel.c,
6bfc98
# server/inotify-kernel.h) contains the GPLv2 license header by mistake. Those
6bfc98
# codes were imported from GnomeVFS, where the license was changed to the
6bfc98
# LGPLv2 soon after this import, but this change was not reflected in the Gamin
6bfc98
# codes. The mentioned codes can't be fixed upstream given the fact those
6bfc98
# projects are already dead. I don't want to make that change downstream, thus
6bfc98
# adding this comment. See https://bugzilla.redhat.com/show_bug.cgi?id=1096200.
6bfc98
License: LGPLv2
6bfc98
6bfc98
Group: Development/Libraries
6bfc98
Source0: http://ftp.gnome.org/pub/GNOME/sources/gamin/0.1/gamin-%{version}.tar.bz2
6bfc98
# sample config file
6bfc98
Source1: gaminrc
6bfc98
URL: http://www.gnome.org/~veillard/gamin/
6bfc98
BuildRequires: glib2-devel
6bfc98
%if %{with python2}
6bfc98
BuildRequires: python2-devel python2
6bfc98
%endif # with python2
6bfc98
BuildRequires: automake autoconf libtool
6bfc98
6bfc98
# This fix addresses an issue with ARM, where the configuration triplet
6bfc98
# happens to be armv5tel-redhat-linux-gnueabi instead of armv5tel-redhat-linux-gnu.
6bfc98
# The patch declares HAVE_LINUX in case of linux-gnueabi as well.
6bfc98
# Patch by Kedar Sovani <kedars@marvell.com>
6bfc98
Patch1: gamin-0.1.10-gnueabi.patch
6bfc98
6bfc98
# Don't try to build with -DG_DISABLE_DEPRECATED - glib has moved on
6bfc98
Patch2: gamin-manape.patch
6bfc98
6bfc98
# upstream fixes
6bfc98
Patch4: 0001-Poll-files-on-nfs4.patch
6bfc98
Patch5: 0002-Fix-compilation-of-recent-glib-removing-G_CONST_RETU.patch
6bfc98
# gam_server deadlocks, leading to all KDE applications hanging at start
6bfc98
# https://bugzilla.redhat.com/show_bug.cgi?id=786170
6bfc98
# https://bugzilla.gnome.org/show_bug.cgi?id=667120
6bfc98
Patch7: 0004-fix-possible-server-deadlock-in-ih_sub_cancel.patch
6bfc98
6bfc98
%description
6bfc98
This C library provides an API and ABI compatible file alteration
6bfc98
monitor mechanism compatible with FAM but not dependent on a system wide
6bfc98
daemon.
6bfc98
6bfc98
%package devel
6bfc98
Summary: Libraries, includes, etc. to embed the Gamin library
6bfc98
Group: Development/Libraries
6bfc98
Requires: %{name}%{?_isa} = %{version}-%{release}
6bfc98
6bfc98
%description devel
6bfc98
This C library provides an API and ABI compatible file alteration
6bfc98
monitor mechanism compatible with FAM but not dependent on a system wide
6bfc98
daemon.
6bfc98
6bfc98
%if %{with python2}
6bfc98
%package -n python2-gamin
6bfc98
Summary: Python bindings for the gamin library
6bfc98
Group: Development/Libraries
6bfc98
Requires: %{name}%{?_isa} = %{version}-%{release}
6bfc98
%{?python_provide:%python_provide python2-gamin}
6bfc98
# Remove before F30
6bfc98
Provides: %{name}-python = %{version}-%{release}
6bfc98
Provides: %{name}-python%{?_isa} = %{version}-%{release}
6bfc98
Obsoletes: %{name}-python < %{version}-%{release}
6bfc98
6bfc98
%description -n python2-gamin
6bfc98
The gamin-python package contains a module that allow monitoring of
6bfc98
files and directories from the Python language based on the support
6bfc98
of the gamin package.
6bfc98
%endif # with python2
6bfc98
6bfc98
%prep
6bfc98
%setup -q
6bfc98
%patch1 -p1 -b .gnueabi
6bfc98
%patch2 -p1 -b .manape
6bfc98
%patch4 -p1 -b .nfs4
6bfc98
%patch5 -p1 -b .const
6bfc98
%patch7 -p1 -b .double-lock
6bfc98
6bfc98
# recode docs into UTF-8
6bfc98
for i in ChangeLog NEWS ; do 
6bfc98
   iconv -f iso-8859-1 -t utf-8 < $i > XXX
6bfc98
   touch -r $i XXX
6bfc98
   mv XXX $i
6bfc98
done
6bfc98
6bfc98
%if %{with python2}
6bfc98
# https://fedoraproject.org/wiki/Features/SystemPythonExecutablesUseSystemPython
6bfc98
# replace "/usr/bin/env python" with "%%{__python2}"
6bfc98
for i in `find -name '*.py'`; do
6bfc98
   sed -i.bak "s|^#!/usr/bin/env python|#!%{__python2}|g" $i
6bfc98
   touch -r ${i}.bak $i
6bfc98
   rm ${i}.bak
6bfc98
done
6bfc98
%endif # with python2
6bfc98
6bfc98
%build
6bfc98
autoreconf -vif
6bfc98
%configure \
6bfc98
  --disable-static
6bfc98
6bfc98
make %{?_smp_mflags}
6bfc98
6bfc98
%install
6bfc98
make install DESTDIR=%{buildroot} INSTALL="install -p"
6bfc98
6bfc98
install -D -p -m644 %{SOURCE1} %{buildroot}%{_sysconfdir}/gamin/gaminrc
6bfc98
touch %{buildroot}%{_sysconfdir}/gamin/mandatory_gaminrc
6bfc98
6bfc98
rm -fv %{buildroot}%{_libdir}/lib*.la
6bfc98
# gamin server links this, it gets installed even in --disable-static mode,
6bfc98
# but continue to omit from packaging as has been done for a long time -- rex
6bfc98
rm -fv %{buildroot}%{_libdir}/libgamin_shared.a
6bfc98
6bfc98
%check
6bfc98
## 'make check' isn't working well at all in mock yet, needs work.
6bfc98
#make check ||:
6bfc98
6bfc98
%post -p /sbin/ldconfig
6bfc98
%postun -p /sbin/ldconfig
6bfc98
6bfc98
%files
6bfc98
%license COPYING
6bfc98
%doc AUTHORS ChangeLog NEWS README TODO
6bfc98
%doc doc/*.html
6bfc98
%doc doc/*.gif
6bfc98
%doc doc/*.txt
6bfc98
%dir %{_sysconfdir}/gamin/
6bfc98
%config(noreplace) %{_sysconfdir}/gamin/gaminrc
6bfc98
%config(noreplace) %{_sysconfdir}/gamin/mandatory_gaminrc
6bfc98
%{_libdir}/libfam.so.0*
6bfc98
%{_libdir}/libgamin-1.so.0*
6bfc98
%{_libexecdir}/gam_server
6bfc98
6bfc98
%files devel
6bfc98
%{_libdir}/libfam.so
6bfc98
%{_libdir}/libgamin-1.so
6bfc98
%{_includedir}/fam.h
6bfc98
%{_libdir}/pkgconfig/gamin.pc
6bfc98
6bfc98
%if %{with python2}
6bfc98
%files -n python2-gamin
6bfc98
%{python2_sitearch}/gamin.py*
6bfc98
%{python2_sitearch}/_gamin*
6bfc98
%doc python/tests/*.py
6bfc98
%doc doc/python.html
6bfc98
%endif # with python2
6bfc98
6bfc98
%changelog
6bfc98
* Wed Nov 11 2020 Ondrej Holy <oholy@redhat.com> - 0.1.10-32
6bfc98
- Add a comment clarifying the license (rhbz#1096200)
6bfc98
6bfc98
* Sun Jun 10 2018 Charalampos Stratakis <cstratak@redhat.com> - 0.1.10-31
6bfc98
- Conditionalize the python2 subpackage
6bfc98
6bfc98
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.10-30
6bfc98
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
6bfc98
6bfc98
* Sun Aug 20 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 0.1.10-29
6bfc98
- Add Provides for the old name without %%_isa
6bfc98
6bfc98
* Sat Aug 19 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 0.1.10-28
6bfc98
- Python 2 binary package renamed to python2-gamin
6bfc98
  See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3
6bfc98
6bfc98
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.10-27
6bfc98
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
6bfc98
6bfc98
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.10-26
6bfc98
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
6bfc98
6bfc98
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.10-25
6bfc98
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
6bfc98
6bfc98
* Fri Sep 23 2016 Rex Dieter <rdieter@fedoraproject.org> - 0.1.10-24
6bfc98
- ship sample /etc/gamin/gaminrc, /etc/gamin/mandatory_gaminrc
6bfc98
- s|/usr/bin/python|/usr/bin/python2|
6bfc98
6bfc98
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.10-23
6bfc98
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
6bfc98
6bfc98
* Mon Feb 22 2016 Rex Dieter <rdieter@fedoraproject.org> - 0.1.10-22
6bfc98
- %%check: disable 'make check', needs work
6bfc98
- %%build: --disable-static, drop rpath hacks
6bfc98
- %%install: cleaner .la/.a omission
6bfc98
6bfc98
* Mon Feb 22 2016 Rex Dieter <rdieter@fedoraproject.org> - 0.1.10-21
6bfc98
- pull in slightly different upstream fix for deadlocks (gnome#667230)
6bfc98
- cosmetics: use %%license, tighten subpkg deps
6bfc98
- -python: cleanup, Provides: python(2)-gamin
6bfc98
- %%check: make check (non-fatal for now)
6bfc98
- %%files: track sonames explicitly
6bfc98
6bfc98
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.10-20
6bfc98
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
6bfc98
6bfc98
* Wed Nov  4 2015 Peter Robinson <pbrobinson@fedoraproject.org> 0.1.10-19
6bfc98
- Minor cleanups
6bfc98
6bfc98
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.10-18
6bfc98
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
6bfc98
6bfc98
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.10-17
6bfc98
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
6bfc98
6bfc98
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.10-16
6bfc98
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
6bfc98
6bfc98
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.10-15
6bfc98
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
6bfc98
6bfc98
* Fri Feb  1 2013 Matthias Clasen <mclasen@redhat.com> - 0.1.10-14
6bfc98
- Make it work on nfs4
6bfc98
- Fix the build
6bfc98
- Minor spec file cleanups
6bfc98
6bfc98
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.10-13
6bfc98
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
6bfc98
6bfc98
* Wed Feb  8 2012 Tomas Bzatek <tbzatek@redhat.com> - 0.1.10-12
6bfc98
- Prevent deadlock when cancelling a watch (#786170)
6bfc98
6bfc98
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.10-11
6bfc98
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
6bfc98
6bfc98
* Wed Jul 20 2011 Matthias Clasen <mclasen@redhat.com> - 0.1.10-10
6bfc98
- Rebuild
6bfc98
6bfc98
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.10-9
6bfc98
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
6bfc98
6bfc98
* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 0.1.10-8
6bfc98
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
6bfc98
6bfc98
* Wed Mar  3 2010 Tomas Bzatek <tbzatek@redhat.com> - 0.1.10-7
6bfc98
- Further cleanup for package review (#225776)
6bfc98
- Fix source URL
6bfc98
6bfc98
* Mon Dec 21 2009 Tomas Bzatek <tbzatek@redhat.com> - 0.1.10-6
6bfc98
- Cleanup for package review (#225776)
6bfc98
6bfc98
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.10-5
6bfc98
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
6bfc98
6bfc98
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.10-4
6bfc98
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
6bfc98
6bfc98
* Mon Jan  5 2009 Tomas Bzatek <tbzatek@redhat.com> - 0.1.10-3
6bfc98
- Fix build on gnueabi (patch by Kedar Sovani)
6bfc98
6bfc98
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 0.1.10-2
6bfc98
- Rebuild for Python 2.6
6bfc98
6bfc98
* Mon Nov 24 2008 Tomas Bzatek <tbzatek@redhat.com> - 0.1.10-1
6bfc98
- Update to 0.1.10
6bfc98
- Drop upstreamed patches
6bfc98
6bfc98
* Mon Jul 21 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0.1.9-6
6bfc98
- fix license tag
6bfc98
6bfc98
* Wed Feb 14 2008 Tomas Bzatek <tbzatek@redhat.com> - 0.1.9-5
6bfc98
- workaround for missing struct ucred in glibc headers (fixed x86_64 compilation)
6bfc98
6bfc98
* Fri Sep 14 2007 Matthias Clasen <mclasen@redhat.com> - 0.1.9-4
6bfc98
- Fix a memory leak
6bfc98
6bfc98
* Fri Sep 14 2007 Ray Strode <rstrode@redhat.com> - 0.1.9-3
6bfc98
- don't poll for non-existant watched files (bug 240385)
6bfc98
6bfc98
* Tue Aug 28 2007 Fedora Release Engineering <rel-eng at fedoraproject dot org> - 0.1.9-2
6bfc98
- Rebuild for selinux ppc32 issue.
6bfc98
6bfc98
* Fri Jul 27 2007 Daniel Veillard <veillard@redhat.com> - 0.1.9-1.fc8
6bfc98
- made new upstream release, that includes all the existing patches
6bfc98
6bfc98
* Sat Apr 21 2007 Matthias Clasen <mclasen@redhat.com> - 0.1.8-6
6bfc98
- Don't ship static libraries
6bfc98
6bfc98
* Wed Apr 11 2007 Alexander Larsson <alexl@redhat.com> - 0.1.8-5
6bfc98
- Add patch that handles inotify failing fallback (#233316)
6bfc98
6bfc98
* Wed Mar  7 2007 Alexander Larsson <alexl@redhat.com> - 0.1.8-4
6bfc98
- Add patch to fix #204906
6bfc98
6bfc98
* Thu Dec  7 2006 Jeremy Katz <katzj@redhat.com> - 0.1.8-3
6bfc98
- rebuild for python 2.5
6bfc98
6bfc98
* Mon Nov 20 2006 Alexander Larsson <alexl@redhat.com> - 0.1.8-2.fc7
6bfc98
- Fix polling backend, making NFS work again
6bfc98
- Resolves: #212551
6bfc98
6bfc98
* Tue Oct 31 2006 Daniel Veillard <veillard@redhat.com> - 0.1.8-1
6bfc98
- made new upstream release, that should include all the existing patches
6bfc98
6bfc98
* Fri Sep  8 2006 Alexander Larsson <alexl@redhat.com> - 0.1.7-7
6bfc98
- Fix problems in new inotify backend (#205731)
6bfc98
6bfc98
* Tue Sep  5 2006 Alexander Larsson <alexl@redhat.com> - 0.1.7-6
6bfc98
- Remove last regular timers from gamin
6bfc98
6bfc98
* Tue Sep  5 2006 Alexander Larsson <alexl@redhat.com> - 0.1.7-5
6bfc98
- Use sigaction to reset old signal handler (from cvs)
6bfc98
- New inotify backend from cvs (based on gnome-vfs code)
6bfc98
- Only create timer on demand
6bfc98
- This should fix #204906
6bfc98
6bfc98
* Mon Aug 28 2006 Alexander Larsson <alexl@redhat.com> - 0.1.7-4
6bfc98
- Flush in-buffer on connection reset (#196444)
6bfc98
- Patch from Ariel T. Glenn
6bfc98
6bfc98
* Tue Aug 22 2006 Alexander Larsson <alexl@redhat.com> - 0.1.7-3
6bfc98
- Use /dev/null as stdin/out/err when spawning gam_server
6bfc98
- This could help if there is stdout output somewhere.
6bfc98
6bfc98
* Wed Aug 16 2006 Alexander Larsson <alexl@redhat.com> - 0.1.7-2
6bfc98
- Add patch that avoids closing the fd after FAMOpen, fixes some 100% cpu bugs
6bfc98
6bfc98
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 0.1.7-1.2.2
6bfc98
- rebuild
6bfc98
6bfc98
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 0.1.7-1.2.1
6bfc98
- bump again for double-long bug on ppc(64)
6bfc98
6bfc98
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 0.1.7-1.2
6bfc98
- rebuilt for new gcc4.1 snapshot and glibc changes
6bfc98
6bfc98
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
6bfc98
- rebuilt
6bfc98
6bfc98
* Thu Oct 27 2005 Daniel Veillard <veillard@redhat.com> 0.1.7-1
6bfc98
- hopefully fixes gam_server crashes
6bfc98
- some portability fixes
6bfc98
- removed a minor leak
6bfc98
* Thu Sep  8 2005 Daniel Veillard <veillard@redhat.com> 0.1.6-1
6bfc98
- revamp of the inotify back-end
6bfc98
- memory leak fix
6bfc98
- various fixes and cleanups
6bfc98
* Tue Aug  9 2005 Daniel Veillard <veillard@redhat.com> 0.1.5-1
6bfc98
- Improvement of configuration, system wide configuration files and
6bfc98
  per filesystem type default
6bfc98
- Rewrite of the inotify back-end, reduce resources usage, tuning in
6bfc98
  case of busy resources
6bfc98
- Documentation updates
6bfc98
- Changes to compile inotify back-end on various architectures
6bfc98
- Debugging output improvements
6bfc98
* Tue Aug  2 2005 Daniel Veillard <veillard@redhat.com> 0.1.3-1
6bfc98
- Fix to compile on older gcc versions
6bfc98
- Inotify back-end changes and optimizations
6bfc98
- Debug ouput cleanup, pid and process name reports
6bfc98
- Dropped kernel monitor bugfix
6bfc98
- Removed the old glist copy used for debugging
6bfc98
- Maintain mounted filesystems knowledge, and per fstype preferences
6bfc98
* Wed Jul 13 2005 Daniel Veillard <veillard@redhat.com> 0.1.2-1
6bfc98
- inotify back end patches, ready for the new inotify support in kernel
6bfc98
- lot of server code cleanup patches
6bfc98
- fixed an authentication problem
6bfc98
* Fri Jun 10 2005 Daniel Veillard <veillard@redhat.com> 0.1.1-1
6bfc98
- gamin_data_conn_event fix
6bfc98
- crash from bug gnome #303932
6bfc98
- Inotify and mounted media #171201
6bfc98
- mounted media did not show up on Desktop #159748
6bfc98
- write may not be atomic
6bfc98
- Monitoring a directory when it is a file
6bfc98
- Portability to Hurd/Mach and various code cleanups
6bfc98
- Added support for ~ as user home alias in .gaminrc
6bfc98
* Thu May 12 2005 Daniel Veillard <veillard@redhat.com> 0.1.0-1
6bfc98
- Close inherited file descriptors on exec of gam_server
6bfc98
- Cancelling a monitor send back a FAMAcknowledge
6bfc98
- Fixed for big files > 2GB
6bfc98
- Bug when monitoring a non existing directory
6bfc98
- Make client side thread safe
6bfc98
- Unreadable directory fixes
6bfc98
- Better flow control handling
6bfc98
- Updated to latest inotify version: 0.23-6
6bfc98
* Tue Mar 15 2005 Daniel Veillard <veillard@redhat.com> 0.0.26-1
6bfc98
- Fix an include problem showing up with gcc4
6bfc98
- Fix the crash on failed tree assert bug #150471 based on patch from Dean Brettle
6bfc98
- removed an incompatibility with SGI FAM #149822
6bfc98
* Tue Mar  1 2005 Daniel Veillard <veillard@redhat.com> 0.0.25-1
6bfc98
- Fix a configure problem reported by Martin Schlemmer
6bfc98
- Fix the /media/* and /mnt/* mount blocking problems from 0.0.24 e.g. #142637
6bfc98
- Fix the monitoring of directory using poll and not kernel
6bfc98
* Fri Feb 18 2005 Daniel Veillard <veillard@redhat.com> 0.0.24-1
6bfc98
- more documentation
6bfc98
- lot of serious bug fixes including Gnome Desktop refresh bug
6bfc98
- extending the framework for more debug (configure --enable-debug-api)
6bfc98
- extending the python bindings for watching the same resource multiple times
6bfc98
  and adding debug framework support
6bfc98
- growing the regression tests a lot based on python bindings
6bfc98
- inotify-0.19 patch from John McCutchan
6bfc98
- renamed python private module to _gamin to follow Python PEP 8
6bfc98
6bfc98
* Tue Feb  8 2005 Daniel Veillard <veillard@redhat.com> 0.0.23-1
6bfc98
- memory corruption fix from Mark on the client side
6bfc98
- extending the protocol and API to allow skipping Exists and EndExists
6bfc98
  events to avoid deadlock on reconnect or when they are not used.
6bfc98
6bfc98
* Mon Jan 31 2005 Daniel Veillard <veillard@redhat.com> 0.0.22-1
6bfc98
- bit of python bindings improvements, added test
6bfc98
- fixed 3 bugs
6bfc98
6bfc98
* Wed Jan 26 2005 Daniel Veillard <veillard@redhat.com> 0.0.21-1
6bfc98
- Added Python support
6bfc98
- Updated for inotify-0.18 
6bfc98
6bfc98
* Thu Jan  6 2005 Daniel Veillard <veillard@redhat.com> 0.0.20-1
6bfc98
- Frederic Crozat seems to have found the GList corruption which may fix
6bfc98
  #132354 and related problems
6bfc98
- Frederic Crozat also fixed poll only mode
6bfc98
6bfc98
* Fri Dec  3 2004 Daniel Veillard <veillard@redhat.com> 0.0.19-1
6bfc98
- still chasing the loop bug, made another pass at checking GList,
6bfc98
  added own copy with memory poisonning of GList implementation.
6bfc98
- fixed a compile issue when compiling without debug
6bfc98
6bfc98
* Fri Nov 26 2004 Daniel Veillard <veillard@redhat.com> 0.0.18-1
6bfc98
- still chasing the loop bug, checked and cleaned up all GList use
6bfc98
- patch from markmc to minimize load on busy apps
6bfc98
6bfc98
* Wed Oct 20 2004 Daniel Veillard <veillard@redhat.com> 0.0.16-1
6bfc98
- chasing #132354, lot of debugging, checking and testing and a bit
6bfc98
  of refactoring
6bfc98
6bfc98
* Sat Oct 16 2004 Daniel Veillard <veillard@redhat.com> 0.0.15-1
6bfc98
- workaround to detect loops and avoid the nasty effects, see RedHat bug #132354
6bfc98
6bfc98
* Sun Oct  3 2004 Daniel Veillard <veillard@redhat.com> 0.0.14-1
6bfc98
- Found and fixed the annoying bug where update were not received
6bfc98
  should fix bugs ##132429, #133665 and #134413
6bfc98
- new mechanism to debug on-the-fly by sending SIGUSR2 to client or server
6bfc98
- Added documentation about internals
6bfc98
6bfc98
* Fri Oct  1 2004 Daniel Veillard <veillard@redhat.com> 0.0.13-1
6bfc98
- applied portability fixes
6bfc98
- hardened the code while chasing a segfault
6bfc98
6bfc98
* Thu Sep 30 2004 Daniel Veillard <veillard@redhat.com> 0.0.12-1
6bfc98
- potential fix for a hard to reproduce looping problem.
6bfc98
6bfc98
* Mon Sep 27 2004 Daniel Veillard <veillard@redhat.com> 0.0.11-1
6bfc98
- update to the latest version of inotify
6bfc98
- inotify support compiled in by default
6bfc98
- fix ABI FAM compatibility problems #133162 
6bfc98
6bfc98
* Tue Sep 21 2004 Daniel Veillard <veillard@redhat.com> 0.0.10-1
6bfc98
- more documentation
6bfc98
- Added support for a configuration file $HOME/.gaminrc
6bfc98
- fixes FAM compatibility issues with FAMErrno and FamErrlist #132944
6bfc98
6bfc98
* Wed Sep  1 2004 Daniel Veillard <veillard@redhat.com> 0.0.9-1
6bfc98
- fix crash with konqueror #130967
6bfc98
- exclude kernel (dnotify) monitoring for /mnt//* /media//*
6bfc98
6bfc98
* Thu Aug 26 2004 Daniel Veillard <veillard@redhat.com> 0.0.8-1
6bfc98
- Fixes crashes of the gam_server
6bfc98
- try to correct the kernel/poll switching mode
6bfc98
6bfc98
* Tue Aug 24 2004 Daniel Veillard <veillard@redhat.com> 0.0.7-1
6bfc98
- add support for both polling and dnotify simultaneously
6bfc98
- fixes monitoring of initially missing files
6bfc98
- load control on very busy resources #124361, desactivating
6bfc98
  dnotify and falling back to polling for CPU drain
6bfc98
6bfc98
* Thu Aug 19 2004 Daniel Veillard <veillard@redhat.com> 0.0.6-1
6bfc98
- fixes simple file monitoring should close RH #129974
6bfc98
- relocate gam_server in $(libexec)
6bfc98
6bfc98
* Thu Aug  5 2004 Daniel Veillard <veillard@redhat.com> 0.0.5-1
6bfc98
- Fix a crash when the client binary forks the gam_server and an
6bfc98
  atexit handler is run.
6bfc98
6bfc98
* Wed Aug  4 2004 Daniel Veillard <veillard@redhat.com> 0.0.4-1
6bfc98
- should fix KDE build problems