From f620a90ee6b9ed137ce1b3538cc8926ee34704f2 Mon Sep 17 00:00:00 2001 From: CentOS Buildsys Date: Oct 18 2013 13:52:49 +0000 Subject: import gedit-3.8.3-3.el7.src.rpm --- diff --git a/.gedit.metadata b/.gedit.metadata new file mode 100644 index 0000000..c41cbf7 --- /dev/null +++ b/.gedit.metadata @@ -0,0 +1 @@ +cc4cd6e7cd7919abb38bbf45b61597a2904a1c2f SOURCES/gedit-3.8.3.tar.xz diff --git a/README.md b/README.md deleted file mode 100644 index 0e7897f..0000000 --- a/README.md +++ /dev/null @@ -1,5 +0,0 @@ -The master branch has no content - -Look at the c7 branch if you are working with CentOS-7, or the c4/c5/c6 branch for CentOS-4, 5 or 6 - -If you find this file in a distro specific branch, it means that no content has been checked in yet diff --git a/SOURCES/gedit-disable-python3.patch b/SOURCES/gedit-disable-python3.patch new file mode 100644 index 0000000..ed02dab --- /dev/null +++ b/SOURCES/gedit-disable-python3.patch @@ -0,0 +1,94 @@ +diff -up gedit-3.8.3/configure.ac.disable-python gedit-3.8.3/configure.ac +--- gedit-3.8.3/configure.ac.disable-python 2013-07-17 20:41:04.210713683 -0400 ++++ gedit-3.8.3/configure.ac 2013-07-17 20:41:36.763967930 -0400 +@@ -306,7 +306,7 @@ if test "x$enable_python" = "xauto"; the + fi + + if test "x$enable_python" = "xyes"; then +- AM_PATH_PYTHON(3.2.3) ++ AM_PATH_PYTHON + PKG_CHECK_MODULES(PYTHON, [pygobject-3.0 >= $PYGOBJECT_REQUIRED]) + + pyoverridesdir=`$PYTHON -c "import gi; print(gi._overridesdir)"` +diff -up gedit-3.8.3/gedit/gedit-plugins-engine.c.disable-python gedit-3.8.3/gedit/gedit-plugins-engine.c +--- gedit-3.8.3/gedit/gedit-plugins-engine.c.disable-python 2013-03-12 02:35:32.000000000 -0400 ++++ gedit-3.8.3/gedit/gedit-plugins-engine.c 2013-07-17 20:41:04.210713683 -0400 +@@ -66,7 +66,7 @@ gedit_plugins_engine_init (GeditPluginsE + GEDIT_TYPE_PLUGINS_ENGINE, + GeditPluginsEnginePrivate); + +- peas_engine_enable_loader (PEAS_ENGINE (engine), "python3"); ++ peas_engine_enable_loader (PEAS_ENGINE (engine), "python"); + + engine->priv->plugin_settings = g_settings_new ("org.gnome.gedit.plugins"); + +--- a/plugins/externaltools/externaltools.plugin.desktop.in ++++ b/plugins/externaltools/externaltools.plugin.desktop.in +@@ -1,5 +1,5 @@ + [Plugin] +-Loader=python3 ++Loader=python + Module=externaltools + IAge=3 + _Name=External Tools +--- a/plugins/pythonconsole/pythonconsole.plugin.desktop.in ++++ b/plugins/pythonconsole/pythonconsole.plugin.desktop.in +@@ -1,5 +1,5 @@ + [Plugin] +-Loader=python3 ++Loader=python + Module=pythonconsole + IAge=3 + _Name=Python Console +--- a/plugins/quickopen/quickopen.plugin.desktop.in ++++ b/plugins/quickopen/quickopen.plugin.desktop.in +@@ -1,5 +1,5 @@ + [Plugin] +-Loader=python3 ++Loader=python + Module=quickopen + IAge=3 + _Name=Quick Open +--- a/plugins/snippets/snippets.plugin.desktop.in ++++ b/plugins/snippets/snippets.plugin.desktop.in +@@ -1,5 +1,5 @@ + [Plugin] +-Loader=python3 ++Loader=python + Module=snippets + IAge=3 + _Name=Snippets +--- a/plugins/snippets/snippets/shareddata.py ++++ b/plugins/snippets/snippets/shareddata.py +@@ -20,7 +20,10 @@ import os + + from gi.repository import Gtk + +-class SharedData(object, metaclass=Singleton): ++ ++class SharedData(object): ++ __metaclass__ = Singleton ++ + def __init__(self): + self.dlg = None + self.dlg_default_size = None +@@ -29,7 +32,7 @@ class SharedData(object, metaclass=Singl + + def register_controller(self, view, controller): + self.controller_registry[view] = controller +- ++ + def unregister_controller(self, view, controller): + if self.controller_registry[view] == controller: + del self.controller_registry[view] +@@ -72,7 +75,8 @@ class SharedData(object, metaclass=Singl + self.dlg.connect('destroy', self.manager_destroyed) + + if self.dlg_default_size: +- self.dlg.set_default_size(self.dlg_default_size[0], self.dlg_default_size[1]) ++ self.dlg.set_default_size(self.dlg_default_size[0], ++ self.dlg_default_size[1]) + + self.dlg.set_transient_for(window) + self.dlg.present() + diff --git a/SPECS/gedit.spec b/SPECS/gedit.spec new file mode 100644 index 0000000..b9643b0 --- /dev/null +++ b/SPECS/gedit.spec @@ -0,0 +1,1186 @@ +%global _changelog_trimtime %(date +%s -d "1 year ago") + +%if 0%{?fedora} > 12 +%global with_zeitgeist 1 +%global with_python3 1 +%else +%global with_zeitgeist 0 +%global with_python3 0 +%endif + +%if %{with_python3} +%global __python %{__python3} +%endif + +%define glib2_version 2.28.0 +%define pygo_version 2.90 +%define desktop_file_utils_version 0.9 +%define gtksourceview_version 3.0.0 +%define enchant_version 1.2.0 +%define isocodes_version 0.35 +%define libpeas_version 1.7.0 +%define zeitgeist_version 0.9.12 + +Summary: Text editor for the GNOME desktop +Name: gedit +Epoch: 2 +Version: 3.8.3 +Release: 3%{?dist} +License: GPLv2+ and GFDL +Group: Applications/Editors +#VCS: git:git://git.gnome.org/gedit +Source0: http://download.gnome.org/sources/gedit/3.8/gedit-%{version}.tar.xz + +URL: http://projects.gnome.org/gedit/ + +Requires(post): desktop-file-utils >= %{desktop_file_utils_version} +Requires(postun): desktop-file-utils >= %{desktop_file_utils_version} + +%ifarch ppc64,x86_64,ia64,s390x +Patch1: gedit-2.13.90-libdir.patch +%endif + +# https://bugzilla.redhat.com/show_bug.cgi?id=1016757 +Patch4: gedit-disable-python3.patch + +BuildRequires: gnome-common +BuildRequires: glib2-devel >= %{glib2_version} +BuildRequires: gtk3-devel +BuildRequires: libSM-devel +BuildRequires: desktop-file-utils >= %{desktop_file_utils_version} +BuildRequires: enchant-devel >= %{enchant_version} +BuildRequires: iso-codes-devel >= %{isocodes_version} +BuildRequires: libattr-devel +BuildRequires: gtksourceview3-devel >= %{gtksourceview_version} +BuildRequires: gettext +BuildRequires: pygobject3-devel +BuildRequires: libpeas-devel >= %{libpeas_version} +BuildRequires: gsettings-desktop-schemas-devel +BuildRequires: which +BuildRequires: autoconf, automake, libtool +BuildRequires: intltool +BuildRequires: gobject-introspection-devel +BuildRequires: yelp-tools +BuildRequires: itstool +%if %{with_python3} +BuildRequires: python3-devel +BuildRequires: python3-gobject >= %{pygo_version} +%else +BuildRequires: python-devel +%endif + +%if %{with_python3} +Requires: python3-gobject >= %{pygo_version} +%endif +# the run-command plugin uses zenity +Requires: zenity +Requires: gsettings-desktop-schemas +Requires: gvfs + +%description +gedit is a small, but powerful text editor designed specifically for +the GNOME desktop. It has most standard text editor functions and fully +supports international text in Unicode. Advanced features include syntax +highlighting and automatic indentation of source code, printing and editing +of multiple documents in one window. + +gedit is extensible through a plugin system, which currently includes +support for spell checking, comparing files, viewing CVS ChangeLogs, and +adjusting indentation levels. Further plugins can be found in the +gedit-plugins package. + +%package devel +Summary: Support for developing plugins for the gedit text editor +Group: Development/Libraries +Requires: %{name} = %{epoch}:%{version}-%{release} +Requires: gtksourceview3-devel >= %{gtksourceview_version} + +%description devel +gedit is a small, but powerful text editor for the GNOME desktop. +This package allows you to develop plugins that add new functionality +to gedit. + +Install gedit-devel if you want to write plugins for gedit. + +%if %{with_zeitgeist} +%package zeitgeist +Summary: Zeitgeist plugin for gedit +Group: Applications/Editors +Requires: %{name} = %{epoch}:%{version}-%{release} +Requires: zeitgeist >= %{zeitgeist_version} +BuildRequires: zeitgeist-devel >= %{zeitgeist_version} + +%description zeitgeist +This packages brings the Zeitgeist dataprovider - a plugin that logs +access and leave event for documents used with gedit. +%endif + +%prep +%setup -q + +%ifarch ppc64,x86_64,ia64,s390x +%patch1 -p1 -b .libdir +%endif + +%if !%{with_python3} +%patch4 -p1 -b .disable-python +%endif + +%build +NOCONFIGURE=1 autoreconf -i -f && \ + intltoolize -f + +%configure \ + --disable-gtk-doc \ + --enable-introspection=yes \ + --enable-python=yes \ + --disable-updater \ + --enable-gvfs-metadata +make %{_smp_mflags} + +%install +make install DESTDIR=$RPM_BUILD_ROOT + +## clean up all the static libs for plugins (workaround for no -module) +/bin/rm -f `find $RPM_BUILD_ROOT%{_libdir} -name "*.a"` +/bin/rm -f `find $RPM_BUILD_ROOT%{_libdir} -name "*.la"` + +%find_lang %{name} --with-gnome + +%check +desktop-file-validate $RPM_BUILD_ROOT%{_datadir}/applications/gedit.desktop + +%post +update-desktop-database >&/dev/null || : +touch --no-create %{_datadir}/icons/hicolor >&/dev/null || : + +%postun +update-desktop-database >&/dev/null || : +if [ $1 -eq 0 ]; then + touch --no-create %{_datadir}/icons/hicolor >&/dev/null || : + gtk-update-icon-cache %{_datadir}/icons/hicolor >&/dev/null || : + glib-compile-schemas %{_datadir}/glib-2.0/schemas >&/dev/null || : +fi + +%posttrans +gtk-update-icon-cache %{_datadir}/icons/hicolor >&/dev/null || : +glib-compile-schemas %{_datadir}/glib-2.0/schemas >&/dev/null || : + +%files -f %{name}.lang +%doc README COPYING AUTHORS +%{_datadir}/gedit +%{_datadir}/applications/gedit.desktop +%{_mandir}/man1/* +%if %{with_python3} +%{python3_sitearch}/gi/overrides/Gedit.py* +%{python3_sitearch}/gi/overrides/__pycache__ +%endif +%{_libexecdir}/gedit +%{_libdir}/gedit/girepository-1.0 +%dir %{_libdir}/gedit +%dir %{_libdir}/gedit/plugins +%{_libdir}/gedit/libgedit-private.so +%{_libdir}/gedit/plugins/* +%{python2_sitearch}/gi/overrides/Gedit.py* +#%{_libdir}/gedit/plugins/changecase.plugin +#%{_libdir}/gedit/plugins/libchangecase.so +#%{_libdir}/gedit/plugins/docinfo.plugin +#%{_libdir}/gedit/plugins/libdocinfo.so +#%{_libdir}/gedit/plugins/filebrowser.plugin +#%{_libdir}/gedit/plugins/libfilebrowser.so +#%{_libdir}/gedit/plugins/modelines.plugin +#%{_libdir}/gedit/plugins/libmodelines.so +#%{_libdir}/gedit/plugins/externaltools.plugin +#%{_libdir}/gedit/plugins/externaltools +#%{_libdir}/gedit/plugins/pythonconsole.plugin +#%{_libdir}/gedit/plugins/pythonconsole +#%{_libdir}/gedit/plugins/quickopen.plugin +#%{_libdir}/gedit/plugins/quickopen +#%{_libdir}/gedit/plugins/snippets.plugin +#%{_libdir}/gedit/plugins/snippets +#%{_libdir}/gedit/plugins/sort.plugin +#%{_libdir}/gedit/plugins/libsort.so +#%{_libdir}/gedit/plugins/spell.plugin +#%{_libdir}/gedit/plugins/libspell.so +#%{_libdir}/gedit/plugins/time.plugin +#%{_libdir}/gedit/plugins/libtime.so +%{_bindir}/* +%{_datadir}/GConf/gsettings +%{_datadir}/glib-2.0/schemas/org.gnome.gedit.gschema.xml +%{_datadir}/glib-2.0/schemas/org.gnome.gedit.enums.xml +%{_datadir}/glib-2.0/schemas/org.gnome.gedit.plugins.externaltools.gschema.xml +%{_datadir}/glib-2.0/schemas/org.gnome.gedit.plugins.pythonconsole.gschema.xml +%{_datadir}/glib-2.0/schemas/org.gnome.gedit.plugins.filebrowser.gschema.xml +%{_datadir}/glib-2.0/schemas/org.gnome.gedit.plugins.filebrowser.enums.xml +%{_datadir}/glib-2.0/schemas/org.gnome.gedit.plugins.time.gschema.xml +%{_datadir}/glib-2.0/schemas/org.gnome.gedit.plugins.time.enums.xml +%{_datadir}/dbus-1/services/org.gnome.gedit.service + + +%files devel +%{_includedir}/gedit-3.0 +%{_libdir}/pkgconfig/gedit.pc +%{_datadir}/gtk-doc + +%if %{with_zeitgeist} +%files zeitgeist +%{_libdir}/gedit/plugins/zeitgeist.plugin +%{_libdir}/gedit/plugins/libzeitgeistplugin.so +%endif + +%changelog +* Fri Oct 18 2013 Ray Strode - 2:3.8.3-3 +- Add patch from Matej Cepl to reenable gedit plugins + Resolves: #1016757 + +* Wed Jul 17 2013 Matthias Clasen - 2:3.8.3-2 +- Drop unused patches +- Update python3 patch + +* Tue Jun 25 2013 Ignacio Casal Quinteiro - 2:3.8.3-1 +- Update to 3.8.3 + +* Sat Jun 22 2013 Matthias Clasen - 2:3.8.2-2 +- Trim %%changelog + +* Mon May 13 2013 Richard Hughes - 2:3.8.2-1 +- Update to 3.8.2 + +* Mon May 6 2013 Marek Kasik - 2:3.8.1-3 +- Make usage of Zeitgeist and python3 conditional + +* Mon Apr 15 2013 Kalev Lember - 2:3.8.1-1 +- Update to 3.8.1 + +* Mon Mar 25 2013 Kalev Lember - 2:3.8.0-2 +- Rebuilt for gtksourceview3 soname bump + +* Mon Mar 25 2013 Ignacio Casal Quinteiro - 2:3.8.0-1 +- Update to 3.8.0 + +* Wed Mar 20 2013 Ignacio Casal Quinteiro - 2:3.7.6-1 +- Update to 3.7.6 + +* Wed Mar 06 2013 Ignacio Casal Quinteiro - 2:3.7.5-1 +- Update to 3.7.5 + +* Tue Feb 19 2013 Ignacio Casal Quinteiro - 2:3.7.4-1 +- Update to 3.7.4 + +* Wed Feb 13 2013 Fedora Release Engineering - 2:3.7.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Thu Jan 17 2013 Matthias Clasen - 2:3.7.3-2 +- Make zeitgeist optional + +* Mon Jan 07 2013 Ignacio Casal Quinteiro - 2:3.7.3-1 +- Update to 3.7.3 + +* Mon Nov 05 2012 Ignacio Casal Quinteiro - 2:3.7.1-1 +- Update to 3.7.1 + +* Tue Oct 16 2012 Ignacio Casal Quinteiro - 2:3.6.1-1 +- Update to 3.6.1 + +* Tue Sep 25 2012 Ignacio Casal Quinteiro - 2:3.6.0-1 +- Update to 3.6.0 + +* Wed Sep 19 2012 Ignacio Casal Quinteiro - 2:3.5.3-1 +- Update to 3.5.3 + +* Fri Aug 31 2012 Ignacio Casal Quinteiro - 2:3.5.2-1 +- Update to 3.5.2 + +* Sat Jul 21 2012 Ignacio Casal Quinteiro - 2:3.5.1-1 +- Update to 3.5.1 + +* Thu Jul 19 2012 Fedora Release Engineering - 2:3.4.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Thu May 24 2012 Kalev Lember - 2:3.4.2-1 +- Update to 3.4.2 +- Adjust for libgedit-private.so location change + +* Tue Apr 24 2012 Kalev Lember - 2:3.4.1-2 +- Silence rpm scriptlet output + +* Mon Apr 16 2012 Ignacio Casal Quinteiro - 2:3.4.1-1 +- Update to 3.4.1 + +* Tue Mar 27 2012 Richard Hughes - 2:3.4.0-1 +- Update to 3.4.0 + +* Wed Mar 07 2012 Ignacio Casal Quinteiro - 2:3.3.7-1 +- Update to 3.3.7 + +* Mon Mar 05 2012 Ignacio Casal Quinteiro - 2:3.3.6-1 +- Update to 3.3.6 + +* Fri Mar 02 2012 Ignacio Casal Quinteiro - 2:3.3.5-1 +- Update to 3.3.5 + +* Thu Feb 23 2012 Ignacio Casal Quinteiro - 2:3.3.4-1 +- Update to 3.3.4 + +* Tue Feb 07 2012 Ignacio Casal Quinteiro - 2:3.3.3-1 +- Update to 3.3.3 + +* Sun Jan 08 2012 Ignacio Casal Quinteiro - 2:3.3.2-1 +- Update to 3.3.2 + +* Thu Dec 17 2011 Ignacio Casal Quinteiro - 2:3.3.1-1 +- Update to 3.3.1 + +* Thu Dec 08 2011 Ignacio Casal Quinteiro - 2:3.2.5-1 +- Update to 3.2.5 + +* Thu Dec 08 2011 Ignacio Casal Quinteiro - 2:3.2.4-1 +- Update to 3.2.4 + +* Tue Nov 15 2011 Ignacio Casal Quinteiro - 2:3.2.3-1 +- Update to 3.2.3 + +* Tue Nov 01 2011 Ignacio Casal Quinteiro - 2:3.2.2-1 +- Update to 3.2.2 + +* Sun Oct 16 2011 Ignacio Casal Quinteiro - 2:3.2.1-1 +- Update to 3.2.1 + +* Mon Sep 26 2011 Ignacio Casal Quinteiro - 2:3.2.0-1 +- Update to 3.2.0 + +* Tue Sep 20 2011 Ignacio Casal Quinteiro - 2:3.1.6-1 +- Update to 3.1.6 + +* Tue Sep 06 2011 Ignacio Casal Quinteiro - 2:3.1.5-1 +- Update to 3.1.5 + +* Tue Aug 30 2011 Ignacio Casal Quinteiro - 2:3.1.4-1 +- Update to 3.1.4 + +* Tue Aug 04 2011 Ignacio Casal Quinteiro - 2:3.1.3-1 +- Update to 3.1.3 +- Add patch to not include the unity quicklist on the desktop file. + +* Tue Jul 05 2011 Ignacio Casal Quinteiro - 2:3.1.2-1 +- Update to 3.1.2 + +* Mon Jun 20 2011 Tomas Bzatek - 2:3.1.1-2 +- Fix Requires of the zeitgeist subpackage + +* Thu Jun 16 2011 Tomas Bzatek - 2:3.1.1-1 +- Update to 3.1.1 +- New gedit-zeitgeist subpackage + +* Wed May 25 2011 Dan Williams 2:3.0.2-2 +- Fix double-free when searching + +* Tue Apr 26 2011 Matthias Clasen 2:3.0.2-1 +- Update to 3.0.2 + +* Tue Apr 12 2011 Christopher Aillon 2:3.0.1-1 +- Update to 3.0.1 + +* Mon Apr 4 2011 Matthias Clasen 2:3.0.0-1 +- Update to 3.0.0 + +* Mon Mar 28 2011 Dan Williams 2:2.91.11-1 +- Re-enable python plugins + +* Fri Mar 25 2011 Matthias Clasen 2:2.91.11-1 +- Update to 2.91.11 + +* Tue Mar 22 2011 Matthias Clasen 2:2.91.10-2 +- The epoch got messed up by accident + +* Tue Mar 22 2011 Matthias Clasen 2:2.91.10-1 +- Update to 2.91.10 + +* Tue Mar 8 2011 Matthias Clasen 2:2.91.8-1 +- Update to 2.91.8 + +* Tue Feb 22 2011 Matthias Clasen 2:2.91.7-1 +- Update to 2.91.7 + +* Fri Feb 11 2011 Matthias Clasen 2:2.91.6-3 +- Rebuild against newer gtk + +* Tue Feb 08 2011 Fedora Release Engineering - 2:2.91.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Wed Feb 2 2011 Matthias Clasen - 2:2.19.6-1 +- Update to 2.91.6 + +* Mon Jan 31 2011 Dan Williams - 2:2.91.5-5 +- Remove patch for (bgo #640215); problem fixed elsewhere + +* Fri Jan 21 2011 Dan Williams - 2:2.91.5-4 +- Fix crash on quit due to use-after-free (bgo #640215) + +* Fri Jan 14 2011 Matthias Clasen - 2:2.91.5-3 +- Clean up python dependencies + +* Mon Jan 10 2011 Matthias Clasen - 2:2.91.5-2 +- Make epoch match what it should be (again !) + +* Mon Jan 10 2011 Matthias Clasen - 2:2.91.5-1 +- Update to 2.91.5 + +* Sat Jan 8 2011 Matthias Clasen - 2:2.91.4-1 +- Update to 2.91.4 + +* Fri Dec 3 2010 Tomas Bzatek - 2:2.91.3-1 +- Update to 2.91.3 + +* Thu Nov 11 2010 Dan Williams - 2:2.91.2-1 +- Update to 2.91.2 + +* Thu Nov 4 2010 Matthias Clasen - 2:2.91.1-2 +- Make the epoch match what it should be + +* Wed Nov 3 2010 Matthias Clasen - 2:2.91.1-1 +- Update to 2.91.1 +- Fix Requires in gedit-devel + +* Thu Oct 7 2010 Matthias Clasen - 2:2.91.0-1 +- Update to 2.91.0 + +* Mon Aug 23 2010 Matthias Clasen - 2:2.31.6-4 +- Co-own /usr/share/gtk-doc + +* Wed Aug 11 2010 Matthias Clasen - 2:2.31.6-3 +- Bump epoch to stay ahead of F14 + +* Wed Aug 11 2010 David Malcolm - 1:2.31.6-2 +- recompiling .py files against Python 2.7 (rhbz#623307) + +* Thu Aug 5 2010 Matthias Clasen - 2.31.6-1 +- Update to 2.31.6 + +* Tue Jul 13 2010 Matthias Clasen - 2.31.5-1 +- Update to 2.31.5 + +* Tue Jun 8 2010 Matthias Clasen - 2.31.3-1 +- Update to 2.31.3 + +* Thu May 27 2010 Matthias Clasen - 2.31.2-1 +- Update to 2.31.2 + +* Sat May 15 2010 Matthias Clasen - 2.31.1-1 +- Update to 2.31.1 + +* Sun Apr 18 2010 Matthias Clasen - 2.30.2-1 +- Update to 2.30.2 +- Use GConf macros + +* Mon Mar 29 2010 Matthias Clasen - 2.30.0-1 +- Update to 2.30.0 + +* Sun Mar 28 2010 Matthias Clasen - 2.29.9-1 +- Update to 2.29.9 + +* Mon Mar 8 2010 Matthias Clasen - 2.29.8-2 +- Fix some "(null)" error messages + +* Tue Mar 2 2010 Matthias Clasen - 2.29.8-1 +- Update to 2.29.8 + +* Mon Feb 22 2010 Matthias Clasen - 2.29.7-1 +- Update to 2.29.7 + +* Wed Feb 10 2010 Bastien Nocera 2.29.6-1 +- Update to 2.29.6 + +* Tue Jan 26 2010 Matthias Clasen - 1:2.29.5-1 +- Update to 2.29.5 + +* Wed Jan 13 2010 Matthias Clasen - 1:2.29.4-1 +- Update to 2.29.4 + +* Thu Dec 3 2009 Matthias Clasen - 1:2.29.3-3 +- Don't ship .la files + +* Tue Dec 1 2009 Brian Pepple - 1:2.29.3-2 +- Rebase fix python path patch. + +* Tue Dec 01 2009 Bastien Nocera 2.29.3-1 +- Update to 2.29.3 + +* Wed Sep 23 2009 Matthias Clasen - 1:2.28.0-1 +- Update to 2.28.0 + +* Mon Sep 7 2009 Matthias Clasen - 1:2.27.6-1 +- Update to 2.27.6 + +* Mon Aug 24 2009 Matthias Clasen - 1:2.27.5-1 +- Update to 2.27.5 + +* Sat Aug 22 2009 Matthias Clasen - 1:2.27.4-2 +- Respect button-images setting + +* Tue Aug 11 2009 Matthias Clasen - 1:2.27.4-1 +- Update to 2.27.4 + +* Tue Jul 28 2009 Matthias Clasen - 1:2.27.3-1 +- Update to 2.27.3 + +* Fri Jul 24 2009 Fedora Release Engineering - 1:2.27.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Thu Jul 16 2009 Matthias Clasen - 1:2.27.2-2 +- Make some stubborn buttons behave + +* Tue Jun 30 2009 Matthias Clasen - 1:2.27.2-1 +- Update to 2.27.2 + +* Fri Jun 26 2009 Matthias Clasen - 1:2.27.1-2 +- Improve print-to-file + +* Sun May 31 2009 Matthias Clasen - 1:2.27.1-1 +- Update to 2.27.1 + +* Wed May 20 2009 Ray Strode 2.26.2-1 +- Update to 2.26.2 + +* Mon Apr 27 2009 Matthias Clasen - 1:2.26.1-2 +- Don't drop schemas translations from po files + +* Mon Apr 13 2009 Matthias Clasen - 1:2.26.1-1 +- Update to 2.26.1 +- See http://download.gnome.org/sources/gedit/2.26/gedit-2.26.1.news + +* Mon Mar 16 2009 Matthias Clasen - 1:2.26.0-1 +- Update to 2.26.0 + +* Mon Mar 2 2009 Matthias Clasen - 1:2.25.8-1 +- Update to 2.25.8 + +* Tue Feb 24 2009 Fedora Release Engineering - 1:2.25.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Wed Feb 18 2009 Matthias Clasen - 1:2.25.7-1 +- Update to 2.25.7 + +* Tue Feb 3 2009 Matthias Clasen - 1:2.25.6-1 +- Update to 2.25.6 + +* Mon Jan 26 2009 Ray Strode - 1:2.25.5-3 +- Different, more functional fix for bug 481556. + +* Mon Jan 26 2009 Ray Strode - 1:2.25.5-2 +- Fix up python plugin path to close up a security attack + vectors (bug 481556). + +* Tue Jan 20 2009 Matthias Clasen - 1:2.25.5-1 +- Update to 2.25.5 + +* Tue Jan 6 2009 Matthias Clasen - 1:2.25.4-2 +- Update to 2.25.4 + +* Mon Jan 05 2009 - Bastien Nocera - 1:2.25.2-3 +- Remove some unneeded dependencies + +* Thu Dec 4 2008 Matthias Clasen +- Rebuild for Python 2.6 + +* Thu Dec 4 2008 Matthias Clasen +- Update to 2.25.2 + +* Sun Nov 30 2008 Ignacio Vazquez-Abrams - 1:2.24.1-4 +- Rebuild for Python 2.6 + +* Fri Nov 21 2008 Matthias Clasen - 1:2.24.1-3 +- Better URL + +* Fri Nov 21 2008 Matthias Clasen - 1:2.24.1-2 +- Improve %%summmary and %%description + +* Tue Nov 4 2008 Ray Strode - 1:2.24.1-1 +- Update to 2.24.1 (bug 469934) + +* Wed Oct 15 2008 Matthias Clasen - 1:2.24.0-4 +- Save some more space + +* Thu Sep 25 2008 Matthias Clasen - 1:2.24.0-3 +- Save some space + +* Mon Sep 22 2008 Matthias Clasen - 1:2.24.0-2 +- Update to 2.24.0 + +* Mon Sep 8 2008 Matthias Clasen - 1:2.23.92-1 +- Update to 2.23.92 + +* Tue Sep 2 2008 Matthias Clasen - 1:2.23.91-1 +- Update to 2.23.91 + +* Fri Aug 22 2008 Matthias Clasen - 1:2.23.90-1 +- Update to 2.23.90 + +* Wed Aug 13 2008 Matthias Clasen - 1:2.23.3-2 +- Finally drop the vendor prefix, since it broke things again + +* Wed Aug 13 2008 Matthias Clasen - 1:2.23.3-1 +- Update to 2.23.3 + +* Sat Aug 9 2008 Matthias Clasen - 1:2.23.1-3 +- One more icon name fix + +* Wed Jul 9 2008 Matthias Clasen - 1:2.23.1-2 +- Use standard icon names + +* Tue May 13 2008 Matthias Clasen - 1:2.23.1-1 +- Update to 2.23.1 + +* Tue Apr 08 2008 - Bastien Nocera - 1:2.22.1-1 +- Update to 2.22.1 + +* Mon Mar 10 2008 Matthias Clasen - 1:2.22.0-1 +- Update to 2.22.0 + +* Thu Mar 6 2008 Matthias Clasen - 1:2.21.2-2 +- Don't OnlyShowIn=GNOME + +* Mon Feb 25 2008 Matthias Clasen - 1:2.21.2-1 +- Update to 2.21.2 + +* Fri Feb 15 2008 Matthias Clasen - 1:2.21.1-3 +- Drop libgnomeprint22 BR + +* Sat Feb 2 2008 Matthias Clasen - 1:2.21.1-2 +- Require zenity (#253815) + +* Tue Jan 29 2008 Matthias Clasen - 1:2.21.1-1 +- Update to 2.21.1 + +* Tue Nov 27 2007 Matthias Clasen - 1:2.20.4-1 +- Update to 2.20.4 + +* Sun Nov 18 2007 Matthias Clasen - 1:2.20.2-3 +- Fix the license field + +* Tue Nov 13 2007 Florian La Roche - 1:2.20.2-2 +- define pango_version + +* Mon Oct 15 2007 Matthias Clasen - 1:2.20.2-1 +- Update to 2.20.2 (bug fixes and translation updates) + +* Wed Sep 26 2007 Ray Strode - 1:2.20.1-1 +- Update to 2.20.1 at the request of upstream + +* Mon Sep 17 2007 Matthias Clasen - 1:2.20.0-1 +- Update to 2.20.0 + +* Fri Sep 14 2007 Matthias Clasen - 1:2.19.92-1 +- Update to 2.19.92 + +* Tue Sep 4 2007 Matthias Clasen - 1:2.19.91-1 +- Update to 2.19.91 + +* Wed Aug 15 2007 Matthias Clasen - 1:2.19.90-1 +- Update to 2.19.90 +- %%find_lang also finds omf files now + +* Tue Aug 7 2007 Matthias Clasen - 1:2.19.3-3 +- Remove a stale comment + +* Mon Aug 6 2007 Matthias Clasen - 1:2.19.3-2 +- Update license field +- Use %%find_lang for help files + +* Wed Aug 1 2007 Matthias Clasen - 1:2.19.3-1 +- Update to 2.19.3 + +* Thu Jul 19 2007 Jeremy Katz - 1:2.19.2-2 +- fix requires to be on pygtksoureview + +* Tue Jul 10 2007 Matthias Clasen - 1:2.19.2-1 +- Update to 2.19.2 +- Require gtksourceview2 + +* Mon Jun 25 2007 Matthias Clasen - 1:2.19.1-1 +- Update to 2.19.1 + +* Sun May 20 2007 Matthias Clasen - 1:2.18.1-1 +- Update to 2.18.1 + +* Sat May 5 2007 Matthias Clasen - 1:2.18.0-3 +- Add enchant-devel and iso-codes-devel BRs to build + with spell-checking support (#227477) + +* Tue Mar 27 2007 Matthias Clasen - 1:2.18.0-2 +- Reduce the size of the tags files + +* Tue Mar 13 2007 Matthias Clasen - 1:2.18.0-1 +- Update to 2.18.0 + +* Tue Feb 27 2007 Matthias Clasen - 1:2.17.6-1 +- Update to 2.17.6 + +* Tue Feb 13 2007 Matthias Clasen - 1:2.17.5-1 +- Update to 2.17.5 + +* Tue Jan 23 2007 Matthias Clasen - 1:2.17.4-1 +- Update to 2.17.4 + +* Wed Jan 10 2007 Matthias Clasen - 1:2.17.3-1 +- Update to 2.17.3 + +* Wed Dec 20 2006 Matthias Clasen - 1:2.17.2-1 +- Update to 2.17.2 + +* Thu Dec 7 2006 Jeremy Katz - 1:2.17.1-2 +- rebuild for python 2.5 + +* Tue Dec 5 2006 Matthias Clasen - 1:2.17.1-1 +- Update to 2.17.1 + +* Mon Dec 4 2006 Matthias Clasen - 1:2.16.2-3 +- Add BuildRequires for libattr-devel + +* Thu Nov 30 2006 Matthias Clasen - 1:2.16.2-2 +- Small accessibility improvements + +* Sat Nov 4 2006 Matthias Clasen - 1:2.16.2-1 +- Update to 2.16.2 + +* Sat Oct 21 2006 Matthias Clasen - 1:2.16.1-1 +- Update to 2.16.1 + +* Wed Oct 18 2006 Matthias Clasen - 1:2.16.0-4 +- Fix scripts according to packaging guidelines + +* Fri Sep 8 2006 Matthias Clasen - 1:2.16.0-3 +- Fix directory ownership issues (#205675) + +* Tue Sep 5 2006 Ray Strode - 1:2.16.0-2.fc6 +- Fix up dependencies a bit + +* Tue Sep 5 2006 Matthias Clasen - 1:2.16.0-1.fc6 +- Update to 2.16.0 +- Require pkgconfig for the -devel package + +* Sun Aug 27 2006 Matthias Clasen - 1:2.15.9-1.fc6 +- Update to 2.15.9 +- Add BR for perl-XML-Parser + +* Mon Aug 21 2006 Matthias Clasen - 1:2.15.8-1.fc6 +- Update to 2.15.8 + +* Mon Aug 14 2006 Matthias Clasen - 1:2.15.7-1.fc6 +- Update to 2.15.7 + +* Sat Aug 12 2006 Matthias Clasen - 1:2.15.6-2.fc6 +- Bump gtksourceview requirement + +* Sat Aug 12 2006 Matthias Clasen - 1:2.15.6-1.fc6 +- Update to 2.15.6 + +* Thu Aug 10 2006 Ray Strode - 1:2.15.5-2.fc6 +- Apply patch from James Antill to copy extended attributes over + when saving files (bug 202099) + +* Thu Aug 3 2006 Matthias Clasen - 1:2.15.5-1.fc6 +- Update to 2.15.5 + +* Wed Jul 12 2006 Matthias Clasen - 1:2.15.4-1 +- Update to 2.15.4 + +* Wed Jul 12 2006 Jesse Keating - 1:2.15.3-1.1 +- rebuild + +* Tue Jun 13 2006 Matthias Clasen 2.15.3-1 +- Update to 2.15.3 + +* Wed May 17 2006 Matthias Clasen 2.15.2-1 +- Update to 2.15.2 + +* Sat May 13 2006 Dan Williams - 2.15.1-2 +- Work around gnome.org #341055 (gedit doesn't remember previous open/save dir) + +* Tue May 9 2006 Matthias Clasen 2.15.1-1 +- Update to 2.15.1 + +* Mon Apr 10 2006 Matthias Clasen 2.14.2-2 +- Update to 2.14.2 + +* Thu Mar 16 2006 Matthias Clasen 2.14.1-1 +- Update to 2.14.1 + +* Mon Mar 13 2006 Matthias Clasen 2.14.0-1 +- Update to 2.14.0 + +* Tue Feb 28 2006 Karsten Hopp 2.13.92-2 +- BuildRequire: gnome-doc-utils + +* Sun Feb 26 2006 Matthias Clasen - 2.13.92-1 +- Update to 2.13.92 + +* Wed Feb 15 2006 Matthias Clasen - 2.13.91-1 +- Update to 2.13.91 + +* Fri Feb 10 2006 Jesse Keating - 1:2.13.90-3.1 +- bump again for double-long bug on ppc(64) + +* Mon Feb 6 2006 John (J5) Palmieri - 1:2.13.90-3 +- Add dependancy on gnome-python2-desktop + +* Mon Feb 6 2006 Matthias Clasen - 1:2.13.90-2 +- Enable python again +- Fix multiarch problem + +* Mon Jan 30 2006 Matthias Clasen - 1:2.13.90-1 +- Update to 2.13.90 + +* Thu Jan 26 2006 Matthias Clasen - 1:2.13.4-1 +- Update to 2.13.4 + +* Mon Jan 16 2006 Matthias Clasen - 1:2.13.3-1 +- Update to 2.13.3 + +* Sun Jan 13 2006 Matthias Clasen - 1:2.13.2-1 +- Update to 2.13.2 +- Update the persistent file selector size patch (again!) + +* Sun Jan 8 2006 Dan Williams - 1:2.13.1-2 +- Fix up and re-enable persistent file selector size patch + +* Tue Jan 3 2006 Matthias Clasen - 1:2.13.1-1 +- Update to 2.13.1 +- Disable scrollkeeper + +* Wed Dec 21 2005 Jeremy Katz - 1:2.13.0-3 +- fix gedit-devel requirement to include epoch + +* Tue Dec 20 2005 Matthias Clasen - 2.13.0-2 +- Update requirements + +* Wed Dec 14 2005 Matthias Clasen - 2.13.0-1 +- Update to 2.13.0 +- Comment out the fileselector patches for now, these + will need updating for the new-mdi branch + +* Fri Dec 09 2005 Jesse Keating +- rebuilt + +* Thu Oct 6 2005 Matthias Clasen - 2.12.1-1 +- Update to 2.12.1 + +* Thu Sep 8 2005 Matthias Clasen - 2.12.0-1 +- Update to 2.12.0 + +* Tue Aug 16 2005 Matthias Clasen +- New upstream version + +* Thu Aug 4 2005 Matthias Clasen - 2.10.4-1 +- New upstream version + +* Wed Aug 03 2005 Ray Strode - 2.10.3-1 +- Update to upstream version 2.10.3 + +* Mon Jun 13 2005 Ray Strode 1:2.10.2-6 +- Remove some patches that are already upstream + +* Tue Jun 07 2005 Ray Strode 1:2.10.2-5 +- Dont pass user input as format specifiers to + gtk_message_dialog_new (bug 159657). + +* Thu Apr 14 2005 John (J5) Palmieri - 2.10.2-3 +- Revert the addition of the gedit icon to the hicolor theme as + the new gnome-icon-theme package does the right thing + +* Tue Apr 12 2005 Matthias Clasen - 2.10.2-2 +- Add the icon to the hicolor theme, and rename it to what + the .desktop file says. + +* Fri Apr 8 2005 Ray Strode - 2.10.2-1 +- Update to upstream version 2.10.2 + +* Tue Mar 29 2005 Warren Togami - 2.10.0-2 +- devel req libgnomeprintui22-devel for pkgconfig (#152487) + +* Thu Mar 17 2005 Ray Strode - 2.10.0-1 +- Update to upstream version 2.10.0 + +* Thu Mar 3 2005 Marco Pesenti Gritti 1:2.9.7-1 +- Update to 2.9.7 + +* Wed Feb 9 2005 Matthias Clasen 1:2.9.6-1 +- Update to 2.9.6 + +* Sun Jan 30 2005 Matthias Clasen 1:2.9.5-1 +- Update to 2.9.5 + +* Thu Nov 4 2004 Marco Pesenti Gritti 1:2.8.1-2 +- Update the desktop files database. (RH Bug: 135571) + +* Mon Oct 11 2004 Dan Williams 1:2.8.1-1 +- Update to 2.8.1 + +* Wed Sep 22 2004 Dan Williams 1:2.8.0-1 +- Update to 2.8.0 + +* Wed Sep 15 2004 John (J5) Palmieri 1:2.7.92-2 +- Added the spelling plugin to the default gconf schema so that the + tools menu is not empty (RH Bug: 31607) + +* Tue Aug 31 2004 Alex Larsson 1:2.7.92-1 +- update to 2.7.92 + +* Wed Aug 18 2004 Dan Williams 1:2.7.91-1 +- Update to 2.7.91 + +* Tue Aug 3 2004 Owen Taylor - 1:2.7.90-1 +- Upgrade to 2.7.90 +- Add patch to use Pango font names, not gnome-print font names + +* Tue Jun 15 2004 Elliot Lee +- rebuilt + +* Sat May 15 2004 Dan Williams 1:2.6.1-1 +- Upgrade to 2.6.1 + +* Fri Apr 16 2004 Dan Williams 1:2.6.0-4 +- Gnome.org #137825 Gedit crash on Find/Replace dialog close + when hitting escape + +* Tue Apr 13 2004 Warren Togami 1:2.6.0-3 +- #111156 BR intltool scrollkeeper gettext +- #111157 -devel R eel2-devel gtksourceview-devel +- rm bogus BR esound + +* Thu Apr 08 2004 Dan Williams 1:2.6.0-2 +- Fix dumb bug in ~/.recently-used patch where lockf() could + never succeed + +* Wed Mar 31 2004 Dan Williams 1:2.6.0-1 +- Update to gedit-2.6.0 sources + +* Thu Mar 18 2004 Dan Williams 1:2.5.92-1 +- Update to gedit-2.5.92 sources + +* Tue Mar 02 2004 Elliot Lee +- rebuilt + +* Thu Feb 25 2004 Dan Williams 1:2.5.90-1 +- fix dumbness in the egg-recent file locking patch +- Remove the autotools-1.8 patch because it is no longer + needed +- Require gtksourceview-devel >= 0.9 due to update to 2.5.90 +- Update to gedit-2.5.90 + +* Fri Feb 13 2004 Elliot Lee +- rebuilt + +* Wed Feb 11 2004 Dan Williams 1:2.5.3-3 +- Correctly convert last path from open/save into a directory + for storing in gconf, not a file + +* Fri Feb 06 2004 Dan Williams 1:2.5.3-2 +- Bring file selector size/last path patch up to 2.5.3 +- Fix up the recent-files locking algorithm to have finer + resolution timeouts + +* Wed Jan 28 2004 Alexander Larsson 1:2.5.3-1 +- update to 2.5.3 + +* Mon Jan 19 2004 Dan Williams 1:2.4.0-5 +- Work around recent files locking contention when using NFS + home directories (gnome.org #131930) +- Make Find and Replace dialogs use a cancel button, so that + pressing escape makes them close (gnome.org #131927) + +* Thu Jan 8 2004 Dan Williams 1:2.4.0-4 +- Remeber file selector size and last directory on open/save + (gnome.org #123787) +- Small hack to work around switch from autotools 1.7 - 1.8 + +* Tue Oct 21 2003 Matt Wilson 1:2.4.0-3 +- eel_read_entire_file takes a pointer to an int, not to a gsize + (#103933) + +* Tue Oct 7 2003 Owen Taylor 1:2.4.0-2 +- Fix bug with multibyte chars in shell-output plugin (#104027, Jens Petersen) +- Add missing BuildRequires on eel2, aspell-devel (#87746, Alan Cox) +- Add versioned Requires on eel2, libgnomeui (#103363, Jens Petersen) + +* Fri Oct 3 2003 Alexander Larsson 1:2.4.0-1 +- 2.4.0 + +* Mon Sep 22 2003 Bill Nottingham 1:2.3.5-2 +- fix defattr (#103333) + +* Tue Aug 26 2003 Jonathan Blandford +- require the new gtksourceview + +* Fri Aug 15 2003 Jonathan Blandford 1:2.3.3-1 +- update for GNOME 2.4 + +* Tue Jul 29 2003 Havoc Pennington 1:2.2.2-2 +- rebuild + +* Mon Jul 7 2003 Havoc Pennington 1:2.2.2-1 +- 2.2.2 +- fix name of gettext domain +- remove recent-monitor patch now upstream + +* Wed Jun 04 2003 Elliot Lee +- rebuilt + +* Thu May 1 2003 Havoc Pennington 1:2.2.0-3 +- patch configure.in for new aspell + +* Mon Apr 28 2003 Tim Powers 1:2.2.0-2 +- rebuild to fix broken libpspell deps + +* Tue Feb 4 2003 Alexander Larsson 1:2.2.0-1 +- Update to 2.2.0 +- Add patch to disable recent files monitoring +- Bump libgnomeprint requirements + +* Wed Jan 22 2003 Tim Powers +- rebuilt + +* Fri Dec 13 2002 Tim Powers 1:2.1.4-1 +- update to 2.1.4 + +* Mon Dec 9 2002 Havoc Pennington +- 2.1.3 +- fix unpackaged files + +* Thu Aug 15 2002 Owen Taylor +- Add missing bonobo server files (#71261, Taco Witte) +- Remove empty NEWS, FAQ files from %%doc (#66079) + +* Thu Aug 1 2002 Havoc Pennington +- fix desktop file really + +* Thu Aug 1 2002 Havoc Pennington +- fix desktop file + +* Mon Jul 29 2002 Havoc Pennington +- 2.0.2 +- build with new gail + +* Tue Jul 23 2002 Havoc Pennington +- 2.0.1 + +* Tue Jun 25 2002 Owen Taylor +- 2.0.0, fix missing locale files + +* Sun Jun 16 2002 Havoc Pennington +- 1.199.0 +- use desktop-file-install +- remove static libs from plugins dir + +* Sat Jun 08 2002 Havoc Pennington +- rebuild in different environment + +* Wed Jun 5 2002 Havoc Pennington +- 1.121.1 + +* Sun May 26 2002 Tim Powers +- automated rebuild + +* Tue May 21 2002 Havoc Pennington +- rebuild in different environment + +* Tue May 21 2002 Havoc Pennington +- 1.120.0 + +* Fri May 3 2002 Havoc Pennington +- 1.118.0 + +* Fri Apr 19 2002 Havoc Pennington +- move to gnome 2 version + +* Thu Apr 18 2002 Havoc Pennington +- fix ko.po + +* Thu Apr 18 2002 Havoc Pennington +- get correct po files from elvis + +* Thu Apr 18 2002 Havoc Pennington +- gedit-pofiles.tar.gz, not gedit-po.tar.gz + +* Mon Apr 15 2002 Havoc Pennington +- merge translations + +* Fri Mar 29 2002 Havoc Pennington +- gettextize default font + +* Thu Mar 28 2002 Havoc Pennington +- more multibyte fixes #61948 + +* Wed Mar 27 2002 Havoc Pennington +- 0.9.7 for multibyte support + +* Tue Mar 26 2002 Akira TAGOH 0.9.4-11 +- gedit-0.9.4-printprefs.patch: I forgot to add to POTFILES.in... +- gedit-po.tar.gz: added. it's on CVS now. + +* Sun Mar 24 2002 Akira TAGOH 0.9.4-10 +- gedit-0.9.4-printprefs.patch: fix typo and sanity check. + +* Mon Mar 04 2002 Akira TAGOH 0.9.4-9 +- Applied a font selector patch for the printing +- fix BuildRequires for automake-1.4 + +* Mon Jan 28 2002 Havoc Pennington +- rebuild in rawhide +- fix up cflags for moved gnome headers + +* Thu Jul 19 2001 Havoc Pennington +- add some more build requires + +* Tue Jul 17 2001 Havoc Pennington +- require libglade-devel to build + +* Fri Jun 15 2001 Nalin Dahyabhai +- rebuild in new environment + +* Fri Feb 23 2001 Akira TAGOH +- Fixed preview for !ja locale. + +* Wed Feb 07 2001 Akira TAGOH +- Fixed handling fontset. (Bug#24998) +- Added print out for multibyte patch. + +* Fri Dec 29 2000 Matt Wilson +- 0.9.4 + +* Fri Aug 11 2000 Jonathan Blandford +- Up Epoch and release + +* Wed Aug 09 2000 Jonathan Blandford +- include glade files so that it will actually work. + +* Tue Aug 01 2000 Jonathan Blandford +- upgrade package to newer version at request of author. + +* Thu Jul 13 2000 Prospector +- automatic rebuild + +* Mon Jun 19 2000 Preston Brown +- FHS paths + +* Sun Jun 11 2000 Jonathan Blandford +- update to 0.7.9. Somewhat untested. + +* Fri Feb 11 2000 Jonathan Blandford +- removed "reverse search function as it doesn't work. + +* Thu Feb 03 2000 Preston Brown +- rebuild to gzip man pages + +* Mon Jan 17 2000 Elliot Lee +- If I don't put in a log entry here, people will be very upset about not + being able to find out that I am to blame for the 0.6.1 upgrade + +* Mon Aug 16 1999 Michael Fulbright +- version 0.5.4 + +* Sat Feb 06 1999 Michael Johnson +- Cleaned up a bit for Red Hat use + +* Thu Oct 22 1998 Alex Roberts +- First try at an RPM