Blame SPECS/gamin.spec

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