Blame SPECS/gedit.spec

97abf6
%global _changelog_trimtime %(date +%s -d "1 year ago")
97abf6
97abf6
%if 0%{?fedora} > 12
97abf6
%global with_python3 1
97abf6
%else
97abf6
%global with_python3 0
97abf6
%endif
97abf6
97abf6
%if %{with_python3}
97abf6
%global __python %{__python3}
97abf6
%endif
97abf6
97abf6
%global glib2_version 2.44
97abf6
%global gtk3_version 3.22.0
97abf6
%global gtksourceview_version 3.22.0
97abf6
%global libpeas_version 1.14.1
97abf6
%global gspell_version 0.2.5
97abf6
%global pygo_version 3.0.0
97abf6
97abf6
Name:		gedit
97abf6
Epoch:		2
97abf6
Version:	3.28.1
97abf6
Release:	1%{?dist}
97abf6
Summary:	Text editor for the GNOME desktop
97abf6
97abf6
License:	GPLv2+ and GFDL
97abf6
URL:		https://wiki.gnome.org/Apps/Gedit
97abf6
Source0:	https://download.gnome.org/sources/%{name}/3.22/%{name}-%{version}.tar.xz
97abf6
Source1:        ja.po
97abf6
97abf6
# https://bugzilla.redhat.com/show_bug.cgi?id=1016757
97abf6
Patch4: gedit-disable-python3.patch
97abf6
97abf6
BuildRequires: gnome-common
97abf6
BuildRequires: pkgconfig(glib-2.0) >= %{glib2_version}
97abf6
BuildRequires: pkgconfig(gobject-introspection-1.0)
97abf6
BuildRequires: pkgconfig(gsettings-desktop-schemas)
97abf6
BuildRequires: pkgconfig(gspell-1) >= %{gspell_version}
97abf6
BuildRequires: pkgconfig(gtk+-3.0) >= %{gtk3_version}
97abf6
BuildRequires: pkgconfig(gtksourceview-3.0) >= %{gtksourceview_version}
97abf6
BuildRequires: pkgconfig(iso-codes)
97abf6
BuildRequires: pkgconfig(libpeas-gtk-1.0) >= %{libpeas_version}
97abf6
BuildRequires: pkgconfig(libxml-2.0)
97abf6
BuildRequires: pkgconfig(pygobject-3.0) >= %{pygo_version}
97abf6
BuildRequires: desktop-file-utils
97abf6
BuildRequires: gettext
97abf6
BuildRequires: which
97abf6
BuildRequires: intltool
97abf6
BuildRequires: yelp-tools
97abf6
BuildRequires: itstool
97abf6
BuildRequires: vala
97abf6
%if %{with_python3}
97abf6
BuildRequires: python3-devel
97abf6
%else
97abf6
BuildRequires: python-devel
97abf6
%endif
97abf6
BuildRequires: /usr/bin/appstream-util
97abf6
97abf6
Requires: glib2%{?_isa} >= %{glib2_version}
97abf6
Requires: gspell%{?_isa} >= %{gspell_version}
97abf6
Requires: gtk3%{?_isa} >= %{gtk3_version}
97abf6
Requires: gtksourceview3%{?_isa} >= %{gtksourceview_version}
97abf6
%if %{with_python3}
97abf6
Requires: libpeas-loader-python3%{?_isa}
97abf6
Requires: python3-gobject >= %{pygo_version}
97abf6
%else
97abf6
Requires: libpeas-loader-python%{?_isa}
97abf6
%endif
97abf6
# the run-command plugin uses zenity
97abf6
Requires: zenity
97abf6
Requires: gsettings-desktop-schemas
97abf6
Requires: gvfs
97abf6
97abf6
Obsoletes: gedit-collaboration < 3.6.1-6
97abf6
97abf6
%description
97abf6
gedit is a small, but powerful text editor designed specifically for
97abf6
the GNOME desktop. It has most standard text editor functions and fully
97abf6
supports international text in Unicode. Advanced features include syntax
97abf6
highlighting and automatic indentation of source code, printing and editing
97abf6
of multiple documents in one window.
97abf6
97abf6
gedit is extensible through a plugin system, which currently includes
97abf6
support for spell checking, comparing files, viewing CVS ChangeLogs, and
97abf6
adjusting indentation levels. Further plugins can be found in the
97abf6
gedit-plugins package.
97abf6
97abf6
%package devel
97abf6
Summary: Support for developing plugins for the gedit text editor
97abf6
Requires: %{name}%{?_isa} = %{epoch}:%{version}-%{release}
97abf6
97abf6
%description devel
97abf6
gedit is a small, but powerful text editor for the GNOME desktop.
97abf6
This package allows you to develop plugins that add new functionality
97abf6
to gedit.
97abf6
97abf6
Install gedit-devel if you want to write plugins for gedit.
97abf6
97abf6
%prep
97abf6
%setup -q
97abf6
97abf6
%patch4 -p1 -b .disable-python
97abf6
97abf6
autoreconf -i -f
97abf6
intltoolize -f
97abf6
97abf6
%build
97abf6
%configure \
97abf6
	--disable-static \
97abf6
	--disable-gtk-doc \
97abf6
	--enable-introspection=yes \
97abf6
	--enable-python=yes \
97abf6
	--disable-updater \
97abf6
	--enable-gvfs-metadata
97abf6
make %{_smp_mflags}
97abf6
97abf6
%install
97abf6
%make_install
97abf6
97abf6
find $RPM_BUILD_ROOT -name '*.la' -delete
97abf6
97abf6
%find_lang %{name} --with-gnome
97abf6
97abf6
# for backward compatibility with user defined file associations
97abf6
cat << EOF > $RPM_BUILD_ROOT%{_datadir}/applications/gedit.desktop
97abf6
[Desktop Entry]
97abf6
Name=gedit
97abf6
Exec=gedit %U
97abf6
Type=Application
97abf6
MimeType=text/plain;
97abf6
NoDisplay=true
97abf6
X-GNOME-UsesNotifications=false
97abf6
X-RHEL-AliasOf=org.gnome.gedit
97abf6
EOF
97abf6
97abf6
%check
97abf6
appstream-util validate-relax --nonet $RPM_BUILD_ROOT/%{_datadir}/metainfo/org.gnome.gedit.appdata.xml
97abf6
desktop-file-validate $RPM_BUILD_ROOT%{_datadir}/applications/org.gnome.gedit.desktop
97abf6
97abf6
%post
97abf6
update-desktop-database >&/dev/null || :
97abf6
touch --no-create %{_datadir}/icons/hicolor >&/dev/null || :
97abf6
97abf6
%postun
97abf6
update-desktop-database >&/dev/null || :
97abf6
if [ $1 -eq 0 ]; then
97abf6
  touch --no-create %{_datadir}/icons/hicolor >&/dev/null || :
97abf6
  gtk-update-icon-cache %{_datadir}/icons/hicolor >&/dev/null || :
97abf6
  glib-compile-schemas %{_datadir}/glib-2.0/schemas >&/dev/null || :
97abf6
fi
97abf6
97abf6
%posttrans
97abf6
gtk-update-icon-cache %{_datadir}/icons/hicolor >&/dev/null || :
97abf6
glib-compile-schemas %{_datadir}/glib-2.0/schemas >&/dev/null || :
97abf6
97abf6
%files -f %{name}.lang
97abf6
%doc README AUTHORS
97abf6
%license COPYING
97abf6
%{_datadir}/gedit
97abf6
%{_datadir}/applications/*.desktop
97abf6
%{_mandir}/man1/*
97abf6
%if %{with_python3}
97abf6
%{python3_sitearch}/gi/overrides/Gedit.py*
97abf6
%{python3_sitearch}/gi/overrides/__pycache__
97abf6
%else
97abf6
%{python2_sitearch}/gi/overrides/*
97abf6
%endif
97abf6
%{_libexecdir}/gedit
97abf6
%{_libdir}/gedit/girepository-1.0
97abf6
%dir %{_libdir}/gedit
97abf6
%dir %{_libdir}/gedit/plugins
97abf6
%{_libdir}/gedit/libgedit.so
97abf6
%{_libdir}/gedit/plugins/docinfo.plugin
97abf6
%{_libdir}/gedit/plugins/libdocinfo.so
97abf6
%{_libdir}/gedit/plugins/filebrowser.plugin
97abf6
%{_libdir}/gedit/plugins/libfilebrowser.so
97abf6
%{_libdir}/gedit/plugins/modelines.plugin
97abf6
%{_libdir}/gedit/plugins/libmodelines.so
97abf6
%{_libdir}/gedit/plugins/externaltools.plugin
97abf6
%{_libdir}/gedit/plugins/externaltools
97abf6
%{_libdir}/gedit/plugins/pythonconsole.plugin
97abf6
%{_libdir}/gedit/plugins/pythonconsole
97abf6
%{_libdir}/gedit/plugins/quickopen.plugin
97abf6
%{_libdir}/gedit/plugins/quickopen
97abf6
%{_libdir}/gedit/plugins/snippets.plugin
97abf6
%{_libdir}/gedit/plugins/snippets
97abf6
%{_libdir}/gedit/plugins/sort.plugin
97abf6
%{_libdir}/gedit/plugins/libsort.so
97abf6
%{_libdir}/gedit/plugins/spell.plugin
97abf6
%{_libdir}/gedit/plugins/libspell.so
97abf6
%{_libdir}/gedit/plugins/time.plugin
97abf6
%{_libdir}/gedit/plugins/libtime.so
97abf6
%{_bindir}/*
97abf6
%{_datadir}/metainfo/org.gnome.gedit.appdata.xml
97abf6
%{_datadir}/GConf/gsettings
97abf6
%{_datadir}/glib-2.0/schemas/org.gnome.gedit.gschema.xml
97abf6
%{_datadir}/glib-2.0/schemas/org.gnome.gedit.enums.xml
97abf6
%{_datadir}/glib-2.0/schemas/org.gnome.gedit.plugins.externaltools.gschema.xml
97abf6
%{_datadir}/glib-2.0/schemas/org.gnome.gedit.plugins.pythonconsole.gschema.xml
97abf6
%{_datadir}/glib-2.0/schemas/org.gnome.gedit.plugins.filebrowser.gschema.xml
97abf6
%{_datadir}/glib-2.0/schemas/org.gnome.gedit.plugins.filebrowser.enums.xml
97abf6
%{_datadir}/glib-2.0/schemas/org.gnome.gedit.plugins.time.gschema.xml
97abf6
%{_datadir}/glib-2.0/schemas/org.gnome.gedit.plugins.time.enums.xml
97abf6
%{_datadir}/dbus-1/services/org.gnome.gedit.service
97abf6
%{_datadir}/icons/hicolor/*/apps/gedit.png
97abf6
%{_datadir}/icons/hicolor/symbolic/apps/gedit-symbolic.svg
97abf6
97abf6
%files devel
97abf6
%{_includedir}/gedit-3.14
97abf6
%{_libdir}/pkgconfig/gedit.pc
97abf6
%{_datadir}/gtk-doc
97abf6
%{_datadir}/vala/
97abf6
97abf6
%changelog
97abf6
* Tue Jun 05 2018 Ray Strode <rstrode@redhat.com> - 2:3.28.1-1
97abf6
- Update to 3.28.1
97abf6
  Resolves: #1567311
97abf6
97abf6
* Tue May 30 2017 Ray Strode <rstrode@redhat.com> - 2:3.22.0-3
97abf6
- add improved japanese translation
97abf6
  Resolves: #1382638
97abf6
97abf6
* Mon Sep 19 2016 Kalev Lember <klember@redhat.com> - 2:3.22.0-1
97abf6
- Update to 3.22.0
97abf6
- Resolves: #1386863
97abf6
97abf6
* Mon Aug 01 2016 Ray Strode <rstrode@redhat.com> - 3.14.3-18
97abf6
- Updated version of python3→2 patch from Matej Cepl
97abf6
  Resolves: #1360922
97abf6
97abf6
* Fri Apr 15 2016 Ray Strode <rstrode@redhat.com> - 3.14.3-17
97abf6
- Fix close after save functionality when closing window
97abf6
  with unsaved documents
97abf6
  Resolves: #1247999
97abf6
97abf6
* Fri Apr 15 2016 Mike FABIAN <mfabian@redhat.com> 3.14.3-16
97abf6
- Add a shorcut for German for the open button
97abf6
  Resolves: #1279299
97abf6
97abf6
* Wed Apr  6 2015 Matthias Clasen <mclasen@redhat.com> 3.14.3-15
97abf6
- Add a snipplet for rpm changelogs
97abf6
  Resolves: #1301769
97abf6
97abf6
* Wed Apr  6 2015 Matthias Clasen <mclasen@redhat.com> 3.14.3-14
97abf6
- Fix desktop files for external tools
97abf6
  Resolves: #1301764
97abf6
97abf6
* Wed Apr  6 2015 Matthias Clasen <mclasen@redhat.com> 3.14.3-13
97abf6
- Fix spell checker metadata saving
97abf6
  Resolves: #1301761
97abf6
97abf6
* Wed Apr  6 2015 Matthias Clasen <mclasen@redhat.com> 3.14.3-12
97abf6
- Fix printing margins
97abf6
  Resolves: #1301726
97abf6
97abf6
* Wed Apr  6 2015 Matthias Clasen <mclasen@redhat.com> 3.14.3-11
97abf6
- Fix desktop actions
97abf6
  Resolves: #1301760
97abf6
97abf6
* Wed Apr  6 2015 Matthias Clasen <mclasen@redhat.com> 3.14.3-10
97abf6
- Really fix chevrons in schemas
97abf6
  Resolves: #1258357
97abf6
97abf6
* Wed Sep 23 2015 Ray Strode <rstrode@redhat.com> 3.14.3-9
97abf6
- Add X-RHEL-AliasOf=org.gnome.gedit to compat desktop file
97abf6
  Related: #1259292
97abf6
97abf6
* Mon Sep 21 2015 Ray Strode <rstrode@redhat.com> - 2:3.14.3-8
97abf6
- Use ' instead of « in es locale for font parsing
97abf6
  Resolves: #1247999
97abf6
- Add X-GNOME-UsesNotifications=false to compat desktop file
97abf6
  Related: #1259292
97abf6
97abf6
* Tue Aug 18 2015 Matthias Clasen <mclasen@redhat.com> - 2:3.14.3-7
97abf6
- Fix search in Japanese titles
97abf6
  Resolves: #1251840
97abf6
97abf6
* Thu Jul 16 2015 Ray Strode <rstrode@redhat.com> - 2:3.14.3-6
97abf6
- add type=Application to appease rpmdiff
97abf6
  Related: #1238207
97abf6
97abf6
* Tue Jul 14 2015 Ray Strode <rstrode@redhat.com> - 2:3.14.3-5
97abf6
- use cat instead of echo from previous fix
97abf6
  Resolves: #1238207
97abf6
97abf6
* Wed Jul 01 2015 Ray Strode <rstrode@redhat.com> - 2:3.14.3-4
97abf6
- fix backward compat gedit.desktop to not show up in menus
97abf6
  Related: #1174591
97abf6
  Resolves: 1238207
97abf6
97abf6
* Fri Jun 26 2015 Ray Strode <rstrode@redhat.com> - 2:3.14.3-3
97abf6
- add backward compat gedit.desktop to keep user mime assocations working
97abf6
  Related: #1174591 1235413
97abf6
97abf6
* Thu Jun 25 2015 Ray Strode <rstrode@redhat.com> - 2:3.14.3-2
97abf6
- Updated python2 support patch from Matěj Cepl <mcepl@redhat.com>
97abf6
  Related: #1174591
97abf6
97abf6
* Mon Mar 23 2015 Richard Hughes <rhughes@redhat.com> - 2:3.14.3-1
97abf6
- Update to 3.14.3
97abf6
- Resolves: #1174591
97abf6
97abf6
* Thu Jan 30 2014 Ray Strode <rstrode@redhat.com> - 2:3.8.3-6
97abf6
- Update License field to reflect documentation change
97abf6
  Resolves: #1059847
97abf6
97abf6
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 2:3.8.3-5
97abf6
- Mass rebuild 2014-01-24
97abf6
97abf6
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 2:3.8.3-4
97abf6
- Mass rebuild 2013-12-27
97abf6
97abf6
* Fri Oct 18 2013 Ray Strode <rstrode@redhat.com> - 2:3.8.3-3
97abf6
- Add patch from Matej Cepl to reenable gedit plugins
97abf6
  Resolves: #1016757
97abf6
97abf6
* Wed Jul 17 2013 Matthias Clasen <mclasen@redhat.com> - 2:3.8.3-2
97abf6
- Drop unused patches
97abf6
- Update python3 patch
97abf6
97abf6
* Tue Jun 25 2013 Ignacio Casal Quinteiro <icq@gnome.org> - 2:3.8.3-1
97abf6
- Update to 3.8.3
97abf6
97abf6
* Sat Jun 22 2013 Matthias Clasen <mclasen@redhat.com> - 2:3.8.2-2
97abf6
- Trim %%changelog
97abf6
97abf6
* Mon May 13 2013 Richard Hughes <rhughes@redhat.com> - 2:3.8.2-1
97abf6
- Update to 3.8.2
97abf6
97abf6
* Mon May  6 2013 Marek Kasik <mkasik@redhat.com> - 2:3.8.1-3
97abf6
- Make usage of Zeitgeist and python3 conditional
97abf6
97abf6
* Mon Apr 15 2013 Kalev Lember <kalevlember@gmail.com> - 2:3.8.1-1
97abf6
- Update to 3.8.1
97abf6
97abf6
* Mon Mar 25 2013 Kalev Lember <kalevlember@gmail.com> - 2:3.8.0-2
97abf6
- Rebuilt for gtksourceview3 soname bump
97abf6
97abf6
* Mon Mar 25 2013 Ignacio Casal Quinteiro <icq@gnome.org> - 2:3.8.0-1
97abf6
- Update to 3.8.0
97abf6
97abf6
* Wed Mar 20 2013 Ignacio Casal Quinteiro <icq@gnome.org> - 2:3.7.6-1
97abf6
- Update to 3.7.6
97abf6
97abf6
* Wed Mar 06 2013 Ignacio Casal Quinteiro <icq@gnome.org> - 2:3.7.5-1
97abf6
- Update to 3.7.5
97abf6
97abf6
* Tue Feb 19 2013 Ignacio Casal Quinteiro <icq@gnome.org> - 2:3.7.4-1
97abf6
- Update to 3.7.4
97abf6
97abf6
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:3.7.3-2
97abf6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
97abf6
97abf6
* Thu Jan 17 2013 Matthias Clasen <mclasen@redhat.com> - 2:3.7.3-2
97abf6
- Make zeitgeist optional
97abf6
97abf6
* Mon Jan 07 2013 Ignacio Casal Quinteiro <icq@gnome.org> - 2:3.7.3-1
97abf6
- Update to 3.7.3
97abf6
97abf6
* Mon Nov 05 2012 Ignacio Casal Quinteiro <icq@gnome.org> - 2:3.7.1-1
97abf6
- Update to 3.7.1
97abf6
97abf6
* Tue Oct 16 2012 Ignacio Casal Quinteiro <icq@gnome.org> - 2:3.6.1-1
97abf6
- Update to 3.6.1
97abf6
97abf6
* Tue Sep 25 2012 Ignacio Casal Quinteiro <icq@gnome.org> - 2:3.6.0-1
97abf6
- Update to 3.6.0
97abf6
97abf6
* Wed Sep 19 2012 Ignacio Casal Quinteiro <icq@gnome.org> - 2:3.5.3-1
97abf6
- Update to 3.5.3
97abf6
97abf6
* Fri Aug 31 2012 Ignacio Casal Quinteiro <icq@gnome.org> - 2:3.5.2-1
97abf6
- Update to 3.5.2
97abf6
97abf6
* Sat Jul 21 2012 Ignacio Casal Quinteiro <icq@gnome.org> - 2:3.5.1-1
97abf6
- Update to 3.5.1
97abf6
97abf6
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:3.4.2-2
97abf6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
97abf6
97abf6
* Thu May 24 2012 Kalev Lember <kalevlember@gmail.com> - 2:3.4.2-1
97abf6
- Update to 3.4.2
97abf6
- Adjust for libgedit-private.so location change
97abf6
97abf6
* Tue Apr 24 2012 Kalev Lember <kalevlember@gmail.com> - 2:3.4.1-2
97abf6
- Silence rpm scriptlet output
97abf6
97abf6
* Mon Apr 16 2012 Ignacio Casal Quinteiro <icq@gnome.org> - 2:3.4.1-1
97abf6
- Update to 3.4.1
97abf6
97abf6
* Tue Mar 27 2012 Richard Hughes <hughsient@gmail.com> - 2:3.4.0-1
97abf6
- Update to 3.4.0
97abf6
97abf6
* Wed Mar 07 2012 Ignacio Casal Quinteiro <icq@gnome.org> - 2:3.3.7-1
97abf6
- Update to 3.3.7
97abf6
97abf6
* Mon Mar 05 2012 Ignacio Casal Quinteiro <icq@gnome.org> - 2:3.3.6-1
97abf6
- Update to 3.3.6
97abf6
97abf6
* Fri Mar 02 2012 Ignacio Casal Quinteiro <icq@gnome.org> - 2:3.3.5-1
97abf6
- Update to 3.3.5
97abf6
97abf6
* Thu Feb 23 2012 Ignacio Casal Quinteiro <icq@gnome.org> - 2:3.3.4-1
97abf6
- Update to 3.3.4
97abf6
97abf6
* Tue Feb 07 2012 Ignacio Casal Quinteiro <icq@gnome.org> - 2:3.3.3-1
97abf6
- Update to 3.3.3
97abf6
97abf6
* Sun Jan 08 2012 Ignacio Casal Quinteiro <icq@gnome.org> - 2:3.3.2-1
97abf6
- Update to 3.3.2
97abf6
97abf6
* Thu Dec 17 2011 Ignacio Casal Quinteiro <icq@gnome.org> - 2:3.3.1-1
97abf6
- Update to 3.3.1
97abf6
97abf6
* Thu Dec 08 2011 Ignacio Casal Quinteiro <icq@gnome.org> - 2:3.2.5-1
97abf6
- Update to 3.2.5
97abf6
97abf6
* Thu Dec 08 2011 Ignacio Casal Quinteiro <icq@gnome.org> - 2:3.2.4-1
97abf6
- Update to 3.2.4
97abf6
97abf6
* Tue Nov 15 2011 Ignacio Casal Quinteiro <icq@gnome.org> - 2:3.2.3-1
97abf6
- Update to 3.2.3
97abf6
97abf6
* Tue Nov 01 2011 Ignacio Casal Quinteiro <icq@gnome.org> - 2:3.2.2-1
97abf6
- Update to 3.2.2
97abf6
97abf6
* Sun Oct 16 2011 Ignacio Casal Quinteiro <icq@gnome.org> - 2:3.2.1-1
97abf6
- Update to 3.2.1
97abf6
97abf6
* Mon Sep 26 2011 Ignacio Casal Quinteiro <icq@gnome.org> - 2:3.2.0-1
97abf6
- Update to 3.2.0
97abf6
97abf6
* Tue Sep 20 2011 Ignacio Casal Quinteiro <icq@gnome.org> - 2:3.1.6-1
97abf6
- Update to 3.1.6
97abf6
97abf6
* Tue Sep 06 2011 Ignacio Casal Quinteiro <icq@gnome.org> - 2:3.1.5-1
97abf6
- Update to 3.1.5
97abf6
97abf6
* Tue Aug 30 2011 Ignacio Casal Quinteiro <icq@gnome.org> - 2:3.1.4-1
97abf6
- Update to 3.1.4
97abf6
97abf6
* Tue Aug 04 2011 Ignacio Casal Quinteiro <icq@gnome.org> - 2:3.1.3-1
97abf6
- Update to 3.1.3
97abf6
- Add patch to not include the unity quicklist on the desktop file.
97abf6
97abf6
* Tue Jul 05 2011 Ignacio Casal Quinteiro <icq@gnome.org> - 2:3.1.2-1
97abf6
- Update to 3.1.2
97abf6
97abf6
* Mon Jun 20 2011 Tomas Bzatek <tbzatek@redhat.com> - 2:3.1.1-2
97abf6
- Fix Requires of the zeitgeist subpackage
97abf6
97abf6
* Thu Jun 16 2011 Tomas Bzatek <tbzatek@redhat.com> - 2:3.1.1-1
97abf6
- Update to 3.1.1
97abf6
- New gedit-zeitgeist subpackage
97abf6
97abf6
* Wed May 25 2011 Dan Williams <dcbw@redhat.com> 2:3.0.2-2
97abf6
- Fix double-free when searching
97abf6
97abf6
* Tue Apr 26 2011 Matthias Clasen <mclasen@redhat.com> 2:3.0.2-1
97abf6
- Update to 3.0.2
97abf6
97abf6
* Tue Apr 12 2011 Christopher Aillon <caillon@redhat.com> 2:3.0.1-1
97abf6
- Update to 3.0.1
97abf6
97abf6
* Mon Apr  4 2011 Matthias Clasen <mclasen@redhat.com> 2:3.0.0-1
97abf6
- Update to 3.0.0
97abf6
97abf6
* Mon Mar 28 2011 Dan Williams <dcbw@redhat.com> 2:2.91.11-1
97abf6
- Re-enable python plugins
97abf6
97abf6
* Fri Mar 25 2011 Matthias Clasen <mclasen@redhat.com> 2:2.91.11-1
97abf6
- Update to 2.91.11
97abf6
97abf6
* Tue Mar 22 2011 Matthias Clasen <mclasen@redhat.com> 2:2.91.10-2
97abf6
- The epoch got messed up by accident
97abf6
97abf6
* Tue Mar 22 2011 Matthias Clasen <mclasen@redhat.com> 2:2.91.10-1
97abf6
- Update to 2.91.10
97abf6
97abf6
* Tue Mar  8 2011 Matthias Clasen <mclasen@redhat.com> 2:2.91.8-1
97abf6
- Update to 2.91.8
97abf6
97abf6
* Tue Feb 22 2011 Matthias Clasen <mclasen@redhat.com> 2:2.91.7-1
97abf6
- Update to 2.91.7
97abf6
97abf6
* Fri Feb 11 2011 Matthias Clasen <mclasen@redhat.com> 2:2.91.6-3
97abf6
- Rebuild against newer gtk
97abf6
97abf6
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:2.91.6-2
97abf6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
97abf6
97abf6
* Wed Feb  2 2011 Matthias Clasen <mclasen@redhat.com> - 2:2.19.6-1
97abf6
- Update to 2.91.6
97abf6
97abf6
* Mon Jan 31 2011 Dan Williams <dcbw@redhat.com> - 2:2.91.5-5
97abf6
- Remove patch for (bgo #640215); problem fixed elsewhere
97abf6
97abf6
* Fri Jan 21 2011 Dan Williams <dcbw@redhat.com> - 2:2.91.5-4
97abf6
- Fix crash on quit due to use-after-free (bgo #640215)
97abf6
97abf6
* Fri Jan 14 2011 Matthias Clasen <mclasen@redhat.com> - 2:2.91.5-3
97abf6
- Clean up python dependencies
97abf6
97abf6
* Mon Jan 10 2011 Matthias Clasen <mclasen@redhat.com> - 2:2.91.5-2
97abf6
- Make epoch match what it should be (again !)
97abf6
97abf6
* Mon Jan 10 2011 Matthias Clasen <mclasen@redhat.com> - 2:2.91.5-1
97abf6
- Update to 2.91.5
97abf6
97abf6
* Sat Jan  8 2011 Matthias Clasen <mclasen@redhat.com> - 2:2.91.4-1
97abf6
- Update to 2.91.4
97abf6
97abf6
* Fri Dec  3 2010 Tomas Bzatek <tbzatek@redhat.com> - 2:2.91.3-1
97abf6
- Update to 2.91.3
97abf6
97abf6
* Thu Nov 11 2010 Dan Williams <dcbw@redhat.com> - 2:2.91.2-1
97abf6
- Update to 2.91.2
97abf6
97abf6
* Thu Nov  4 2010 Matthias Clasen <mclasen@redhat.com> - 2:2.91.1-2
97abf6
- Make the epoch match what it should be
97abf6
97abf6
* Wed Nov  3 2010 Matthias Clasen <mclasen@redhat.com> - 2:2.91.1-1
97abf6
- Update to 2.91.1
97abf6
- Fix Requires in gedit-devel
97abf6
97abf6
* Thu Oct  7 2010 Matthias Clasen <mclasen@redhat.com> - 2:2.91.0-1
97abf6
- Update to 2.91.0
97abf6
97abf6
* Mon Aug 23 2010 Matthias Clasen <mclasen@redhat.com> - 2:2.31.6-4
97abf6
- Co-own /usr/share/gtk-doc
97abf6
97abf6
* Wed Aug 11 2010 Matthias Clasen <mclasen@redhat.com> - 2:2.31.6-3
97abf6
- Bump epoch to stay ahead of F14
97abf6
97abf6
* Wed Aug 11 2010 David Malcolm <dmalcolm@redhat.com> - 1:2.31.6-2
97abf6
- recompiling .py files against Python 2.7 (rhbz#623307)
97abf6
97abf6
* Thu Aug  5 2010 Matthias Clasen <mclasen@redhat.com> - 2.31.6-1
97abf6
- Update to 2.31.6
97abf6
97abf6
* Tue Jul 13 2010 Matthias Clasen <mclasen@redhat.com> - 2.31.5-1
97abf6
- Update to 2.31.5
97abf6
97abf6
* Tue Jun  8 2010 Matthias Clasen <mclasen@redhat.com> - 2.31.3-1
97abf6
- Update to 2.31.3
97abf6
97abf6
* Thu May 27 2010 Matthias Clasen <mclasen@redhat.com> - 2.31.2-1
97abf6
- Update to 2.31.2
97abf6
97abf6
* Sat May 15 2010 Matthias Clasen <mclasen@redhat.com> - 2.31.1-1
97abf6
- Update to 2.31.1
97abf6
97abf6
* Sun Apr 18 2010 Matthias Clasen <mclasen@redhat.com> - 2.30.2-1
97abf6
- Update to 2.30.2
97abf6
- Use GConf macros
97abf6
97abf6
* Mon Mar 29 2010 Matthias Clasen <mclasen@redhat.com> - 2.30.0-1
97abf6
- Update to 2.30.0
97abf6
97abf6
* Sun Mar 28 2010 Matthias Clasen <mclasen@redhat.com> - 2.29.9-1
97abf6
- Update to 2.29.9
97abf6
97abf6
* Mon Mar  8 2010 Matthias Clasen <mclasen@redhat.com> - 2.29.8-2
97abf6
- Fix some "(null)" error messages
97abf6
97abf6
* Tue Mar  2 2010 Matthias Clasen <mclasen@redhat.com> - 2.29.8-1
97abf6
- Update to 2.29.8
97abf6
97abf6
* Mon Feb 22 2010 Matthias Clasen <mclasen@redhat.com> - 2.29.7-1
97abf6
- Update to 2.29.7
97abf6
97abf6
* Wed Feb 10 2010 Bastien Nocera <bnocera@redhat.com> 2.29.6-1
97abf6
- Update to 2.29.6
97abf6
97abf6
* Tue Jan 26 2010 Matthias Clasen <mclasen@redhat.com> - 1:2.29.5-1
97abf6
- Update to 2.29.5
97abf6
97abf6
* Wed Jan 13 2010 Matthias Clasen <mclasen@redhat.com> - 1:2.29.4-1
97abf6
- Update to 2.29.4
97abf6
97abf6
* Thu Dec  3 2009 Matthias Clasen <mclasen@redhat.com> - 1:2.29.3-3
97abf6
- Don't ship .la files
97abf6
97abf6
* Tue Dec  1 2009 Brian Pepple <bpepple@fedoraproject.org> - 1:2.29.3-2
97abf6
- Rebase fix python path patch.
97abf6
97abf6
* Tue Dec 01 2009 Bastien Nocera <bnocera@redhat.com> 2.29.3-1
97abf6
- Update to 2.29.3
97abf6
97abf6
* Wed Sep 23 2009 Matthias Clasen <mclasen@redhat.com> - 1:2.28.0-1
97abf6
- Update to 2.28.0
97abf6
97abf6
* Mon Sep  7 2009 Matthias Clasen <mclasen@redhat.com> - 1:2.27.6-1
97abf6
- Update to 2.27.6
97abf6
97abf6
* Mon Aug 24 2009 Matthias Clasen <mclasen@redhat.com> - 1:2.27.5-1
97abf6
- Update to 2.27.5
97abf6
97abf6
* Sat Aug 22 2009 Matthias Clasen <mclasen@redhat.com> - 1:2.27.4-2
97abf6
- Respect button-images setting
97abf6
97abf6
* Tue Aug 11 2009 Matthias Clasen <mclasen@redhat.com> - 1:2.27.4-1
97abf6
- Update to 2.27.4
97abf6
97abf6
* Tue Jul 28 2009 Matthias Clasen <mclasen@redhat.com> - 1:2.27.3-1
97abf6
- Update to 2.27.3
97abf6
97abf6
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:2.27.2-3
97abf6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
97abf6
97abf6
* Thu Jul 16 2009 Matthias Clasen <mclasen@redhat.com> - 1:2.27.2-2
97abf6
- Make some stubborn buttons behave
97abf6
97abf6
* Tue Jun 30 2009 Matthias Clasen <mclasen@redhat.com> - 1:2.27.2-1
97abf6
- Update to 2.27.2
97abf6
97abf6
* Fri Jun 26 2009 Matthias Clasen <mclasen@redhat.com> - 1:2.27.1-2
97abf6
- Improve print-to-file
97abf6
97abf6
* Sun May 31 2009 Matthias Clasen <mclasen@redhat.com> - 1:2.27.1-1
97abf6
- Update to 2.27.1
97abf6
97abf6
* Wed May 20 2009 Ray Strode <rstrode@redhat.com> 2.26.2-1
97abf6
- Update to 2.26.2
97abf6
97abf6
* Mon Apr 27 2009 Matthias Clasen <mclasen@redhat.com> - 1:2.26.1-2
97abf6
- Don't drop schemas translations from po files
97abf6
97abf6
* Mon Apr 13 2009 Matthias Clasen <mclasen@redhat.com> - 1:2.26.1-1
97abf6
- Update to 2.26.1
97abf6
- See http://download.gnome.org/sources/gedit/2.26/gedit-2.26.1.news
97abf6
97abf6
* Mon Mar 16 2009 Matthias Clasen <mclasen@redhat.com> - 1:2.26.0-1
97abf6
- Update to 2.26.0
97abf6
97abf6
* Mon Mar  2 2009 Matthias Clasen <mclasen@redhat.com> - 1:2.25.8-1
97abf6
- Update to 2.25.8
97abf6
97abf6
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:2.25.7-2
97abf6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
97abf6
97abf6
* Wed Feb 18 2009 Matthias Clasen <mclasen@redhat.com> - 1:2.25.7-1
97abf6
- Update to 2.25.7
97abf6
97abf6
* Tue Feb  3 2009 Matthias Clasen <mclasen@redhat.com> - 1:2.25.6-1
97abf6
- Update to 2.25.6
97abf6
97abf6
* Mon Jan 26 2009 Ray Strode <rstrode@redhat.com> - 1:2.25.5-3
97abf6
- Different, more functional fix for bug 481556.
97abf6
97abf6
* Mon Jan 26 2009 Ray Strode <rstrode@redhat.com> - 1:2.25.5-2
97abf6
- Fix up python plugin path to close up a security attack
97abf6
  vectors (bug 481556).
97abf6
97abf6
* Tue Jan 20 2009 Matthias Clasen <mclasen@redhat.com> - 1:2.25.5-1
97abf6
- Update to 2.25.5
97abf6
97abf6
* Tue Jan  6 2009 Matthias Clasen <mclasen@redhat.com> - 1:2.25.4-2
97abf6
- Update to 2.25.4
97abf6
97abf6
* Mon Jan 05 2009 - Bastien Nocera <bnocera@redhat.com> - 1:2.25.2-3
97abf6
- Remove some unneeded dependencies
97abf6
97abf6
* Thu Dec  4 2008 Matthias Clasen <mclasen@redhat.com>
97abf6
- Rebuild for Python 2.6 
97abf6
97abf6
* Thu Dec  4 2008 Matthias Clasen <mclasen@redhat.com>
97abf6
- Update to 2.25.2
97abf6
97abf6
* Sun Nov 30 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 1:2.24.1-4
97abf6
- Rebuild for Python 2.6
97abf6
97abf6
* Fri Nov 21 2008 Matthias Clasen <mclasen@redhat.com> - 1:2.24.1-3
97abf6
- Better URL
97abf6
97abf6
* Fri Nov 21 2008 Matthias Clasen <mclasen@redhat.com> - 1:2.24.1-2
97abf6
- Improve %%summmary and %%description
97abf6
97abf6
* Tue Nov  4 2008 Ray Strode <rstrode@redhat.com> - 1:2.24.1-1
97abf6
- Update to 2.24.1 (bug 469934)
97abf6
97abf6
* Wed Oct 15 2008 Matthias Clasen <mclasen@redhat.com> - 1:2.24.0-4
97abf6
- Save some more space
97abf6
97abf6
* Thu Sep 25 2008 Matthias Clasen <mclasen@redhat.com> - 1:2.24.0-3
97abf6
- Save some space
97abf6
97abf6
* Mon Sep 22 2008 Matthias Clasen <mclasen@redhat.com> - 1:2.24.0-2
97abf6
- Update to 2.24.0
97abf6
97abf6
* Mon Sep  8 2008 Matthias Clasen <mclasen@redhat.com> - 1:2.23.92-1
97abf6
- Update to 2.23.92
97abf6
97abf6
* Tue Sep  2 2008 Matthias Clasen <mclasen@redhat.com> - 1:2.23.91-1
97abf6
- Update to 2.23.91
97abf6
97abf6
* Fri Aug 22 2008 Matthias Clasen <mclasen@redhat.com> - 1:2.23.90-1
97abf6
- Update to 2.23.90
97abf6
97abf6
* Wed Aug 13 2008 Matthias Clasen <mclasen@redhat.com> - 1:2.23.3-2
97abf6
- Finally drop the vendor prefix, since it broke things again
97abf6
97abf6
* Wed Aug 13 2008 Matthias Clasen <mclasen@redhat.com> - 1:2.23.3-1
97abf6
- Update to 2.23.3
97abf6
97abf6
* Sat Aug  9 2008 Matthias Clasen <mclasen@redhat.com> - 1:2.23.1-3
97abf6
- One more icon name fix
97abf6
97abf6
* Wed Jul  9 2008 Matthias Clasen <mclasen@redhat.com> - 1:2.23.1-2
97abf6
- Use standard icon names
97abf6
97abf6
* Tue May 13 2008 Matthias Clasen <mclasen@redhat.com> - 1:2.23.1-1
97abf6
- Update to 2.23.1
97abf6
97abf6
* Tue Apr 08 2008 - Bastien Nocera <bnocera@redhat.com> - 1:2.22.1-1
97abf6
- Update to 2.22.1
97abf6
97abf6
* Mon Mar 10 2008 Matthias Clasen <mclasen@redhat.com> - 1:2.22.0-1
97abf6
- Update to 2.22.0
97abf6
97abf6
* Thu Mar  6 2008 Matthias Clasen <mclasen@redhat.com> - 1:2.21.2-2
97abf6
- Don't OnlyShowIn=GNOME
97abf6
97abf6
* Mon Feb 25 2008 Matthias Clasen <mclasen@redhat.com> - 1:2.21.2-1
97abf6
- Update to 2.21.2
97abf6
97abf6
* Fri Feb 15 2008 Matthias Clasen <mclasen@redhat.com> - 1:2.21.1-3
97abf6
- Drop libgnomeprint22 BR
97abf6
97abf6
* Sat Feb  2 2008 Matthias Clasen <mclasen@redhat.com> - 1:2.21.1-2
97abf6
- Require zenity (#253815)
97abf6
97abf6
* Tue Jan 29 2008 Matthias Clasen <mclasen@redhat.com> - 1:2.21.1-1
97abf6
- Update to 2.21.1
97abf6
97abf6
* Tue Nov 27 2007 Matthias Clasen <mclasen@redhat.com> - 1:2.20.4-1
97abf6
- Update to 2.20.4
97abf6
97abf6
* Sun Nov 18 2007 Matthias Clasen <mclasen@redhat.com> - 1:2.20.2-3
97abf6
- Fix the license field
97abf6
97abf6
* Tue Nov 13 2007 Florian La Roche <laroche@redhat.com> - 1:2.20.2-2
97abf6
- define pango_version
97abf6
97abf6
* Mon Oct 15 2007 Matthias Clasen <mclasen@redhat.com> - 1:2.20.2-1
97abf6
- Update to 2.20.2 (bug fixes and translation updates)
97abf6
97abf6
* Wed Sep 26 2007 Ray Strode <rstrode@redhat.com> - 1:2.20.1-1
97abf6
- Update to 2.20.1 at the request of upstream
97abf6
97abf6
* Mon Sep 17 2007 Matthias Clasen <mclasen@redhat.com> - 1:2.20.0-1
97abf6
- Update to 2.20.0
97abf6
97abf6
* Fri Sep 14 2007 Matthias Clasen <mclasen@redhat.com> - 1:2.19.92-1
97abf6
- Update to 2.19.92
97abf6
97abf6
* Tue Sep  4 2007 Matthias Clasen <mclasen@redhat.com> - 1:2.19.91-1
97abf6
- Update to 2.19.91
97abf6
97abf6
* Wed Aug 15 2007 Matthias Clasen <mclasen@redhat.com> - 1:2.19.90-1
97abf6
- Update to 2.19.90
97abf6
- %%find_lang also finds omf files now
97abf6
97abf6
* Tue Aug  7 2007 Matthias Clasen <mclasen@redhat.com> - 1:2.19.3-3
97abf6
- Remove a stale comment
97abf6
97abf6
* Mon Aug  6 2007 Matthias Clasen <mclasen@redhat.com> - 1:2.19.3-2
97abf6
- Update license field
97abf6
- Use %%find_lang for help files
97abf6
97abf6
* Wed Aug  1 2007 Matthias Clasen <mclasen@redhat.com> - 1:2.19.3-1
97abf6
- Update to 2.19.3
97abf6
97abf6
* Thu Jul 19 2007 Jeremy Katz <katzj@redhat.com> - 1:2.19.2-2
97abf6
- fix requires to be on pygtksoureview
97abf6
97abf6
* Tue Jul 10 2007 Matthias Clasen <mclasen@redhat.com> - 1:2.19.2-1
97abf6
- Update to 2.19.2
97abf6
- Require gtksourceview2
97abf6
97abf6
* Mon Jun 25 2007 Matthias Clasen <mclasen@redhat.com> - 1:2.19.1-1
97abf6
- Update to 2.19.1
97abf6
97abf6
* Sun May 20 2007 Matthias Clasen <mclasen@redhat.com> - 1:2.18.1-1
97abf6
- Update to 2.18.1
97abf6
97abf6
* Sat May  5 2007 Matthias Clasen <mclasen@redhat.com> - 1:2.18.0-3
97abf6
- Add enchant-devel and iso-codes-devel BRs to build
97abf6
  with spell-checking support (#227477)
97abf6
97abf6
* Tue Mar 27 2007 Matthias Clasen <mclasen@redhat.com> - 1:2.18.0-2
97abf6
- Reduce the size of the tags files
97abf6
97abf6
* Tue Mar 13 2007 Matthias Clasen <mclasen@redhat.com> - 1:2.18.0-1
97abf6
- Update to 2.18.0
97abf6
97abf6
* Tue Feb 27 2007 Matthias Clasen <mclasen@redhat.com> - 1:2.17.6-1
97abf6
- Update to 2.17.6
97abf6
97abf6
* Tue Feb 13 2007 Matthias Clasen <mclasen@redhat.com> - 1:2.17.5-1
97abf6
- Update to 2.17.5
97abf6
97abf6
* Tue Jan 23 2007 Matthias Clasen <mclasen@redhat.com> - 1:2.17.4-1
97abf6
- Update to 2.17.4
97abf6
97abf6
* Wed Jan 10 2007 Matthias Clasen <mclasen@redhat.com> - 1:2.17.3-1
97abf6
- Update to 2.17.3
97abf6
97abf6
* Wed Dec 20 2006 Matthias Clasen <mclasen@redhat.com> - 1:2.17.2-1
97abf6
- Update to 2.17.2
97abf6
97abf6
* Thu Dec  7 2006 Jeremy Katz <katzj@redhat.com> - 1:2.17.1-2
97abf6
- rebuild for python 2.5
97abf6
97abf6
* Tue Dec  5 2006 Matthias Clasen <mclasen@redhat.com> - 1:2.17.1-1
97abf6
- Update to 2.17.1
97abf6
97abf6
* Mon Dec  4 2006 Matthias Clasen <mclasen@redhat.com> - 1:2.16.2-3
97abf6
- Add BuildRequires for libattr-devel
97abf6
97abf6
* Thu Nov 30 2006 Matthias Clasen <mclasen@redhat.com> - 1:2.16.2-2
97abf6
- Small accessibility improvements
97abf6
97abf6
* Sat Nov  4 2006 Matthias Clasen <mclasen@redhat.com> - 1:2.16.2-1
97abf6
- Update to 2.16.2
97abf6
97abf6
* Sat Oct 21 2006 Matthias Clasen <mclasen@redhat.com> - 1:2.16.1-1
97abf6
- Update to 2.16.1
97abf6
97abf6
* Wed Oct 18 2006 Matthias Clasen <mclasen@redhat.com> - 1:2.16.0-4
97abf6
- Fix scripts according to packaging guidelines
97abf6
97abf6
* Fri Sep  8 2006 Matthias Clasen <mclasen@redhat.com> - 1:2.16.0-3
97abf6
- Fix directory ownership issues (#205675)
97abf6
97abf6
* Tue Sep  5 2006 Ray Strode <rstrode@redhat.com> - 1:2.16.0-2.fc6
97abf6
- Fix up dependencies a bit
97abf6
97abf6
* Tue Sep  5 2006 Matthias Clasen <mclasen@redhat.com> - 1:2.16.0-1.fc6
97abf6
- Update to 2.16.0
97abf6
- Require pkgconfig for the -devel package
97abf6
97abf6
* Sun Aug 27 2006 Matthias Clasen <mclasen@redhat.com> - 1:2.15.9-1.fc6
97abf6
- Update to 2.15.9
97abf6
- Add BR for perl-XML-Parser
97abf6
97abf6
* Mon Aug 21 2006 Matthias Clasen <mclasen@redhat.com> - 1:2.15.8-1.fc6
97abf6
- Update to 2.15.8
97abf6
97abf6
* Mon Aug 14 2006 Matthias Clasen <mclasen@redhat.com> - 1:2.15.7-1.fc6
97abf6
- Update to 2.15.7
97abf6
97abf6
* Sat Aug 12 2006 Matthias Clasen <mclasen@redhat.com> - 1:2.15.6-2.fc6
97abf6
- Bump gtksourceview requirement
97abf6
97abf6
* Sat Aug 12 2006 Matthias Clasen <mclasen@redhat.com> - 1:2.15.6-1.fc6
97abf6
- Update to 2.15.6
97abf6
97abf6
* Thu Aug 10 2006 Ray Strode <rstrode@redhat.com> - 1:2.15.5-2.fc6
97abf6
- Apply patch from James Antill to copy extended attributes over
97abf6
  when saving files (bug 202099)
97abf6
97abf6
* Thu Aug  3 2006 Matthias Clasen <mclasen@redhat.com> - 1:2.15.5-1.fc6
97abf6
- Update to 2.15.5
97abf6
97abf6
* Wed Jul 12 2006 Matthias Clasen <mclasen@redhat.com> - 1:2.15.4-1
97abf6
- Update to 2.15.4
97abf6
97abf6
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1:2.15.3-1.1
97abf6
- rebuild
97abf6
97abf6
* Tue Jun 13 2006 Matthias Clasen <mclasen@redhat.com> 2.15.3-1
97abf6
- Update to 2.15.3
97abf6
97abf6
* Wed May 17 2006 Matthias Clasen <mclasen@redhat.com> 2.15.2-1
97abf6
- Update to 2.15.2
97abf6
97abf6
* Sat May 13 2006 Dan Williams <dcbw@redhat.com> - 2.15.1-2
97abf6
- Work around gnome.org #341055 (gedit doesn't remember previous open/save dir)
97abf6
97abf6
* Tue May  9 2006 Matthias Clasen <mclasen@redhat.com> 2.15.1-1
97abf6
- Update to 2.15.1
97abf6
97abf6
* Mon Apr 10 2006 Matthias Clasen <mclasen@redhat.com> 2.14.2-2
97abf6
- Update to 2.14.2
97abf6
97abf6
* Thu Mar 16 2006 Matthias Clasen <mclasen@redhat.com> 2.14.1-1
97abf6
- Update to 2.14.1
97abf6
97abf6
* Mon Mar 13 2006 Matthias Clasen <mclasen@redhat.com> 2.14.0-1
97abf6
- Update to 2.14.0
97abf6
97abf6
* Tue Feb 28 2006 Karsten Hopp <karsten@redhat.de> 2.13.92-2	
97abf6
- BuildRequire: gnome-doc-utils
97abf6
97abf6
* Sun Feb 26 2006 Matthias Clasen <mclasen@redhat.com> - 2.13.92-1
97abf6
- Update to 2.13.92
97abf6
97abf6
* Wed Feb 15 2006 Matthias Clasen <mclasen@redhat.com> - 2.13.91-1
97abf6
- Update to 2.13.91
97abf6
97abf6
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1:2.13.90-3.1
97abf6
- bump again for double-long bug on ppc(64)
97abf6
97abf6
* Mon Feb  6 2006 John (J5) Palmieri <johnp@redhat.com> - 1:2.13.90-3
97abf6
- Add dependancy on gnome-python2-desktop
97abf6
97abf6
* Mon Feb  6 2006 Matthias Clasen <mclasen@redhat.com> - 1:2.13.90-2
97abf6
- Enable python again
97abf6
- Fix multiarch problem
97abf6
97abf6
* Mon Jan 30 2006 Matthias Clasen <mclasen@redhat.com> - 1:2.13.90-1
97abf6
- Update to 2.13.90
97abf6
97abf6
* Thu Jan 26 2006 Matthias Clasen <mclasen@redhat.com> - 1:2.13.4-1
97abf6
- Update to 2.13.4
97abf6
97abf6
* Mon Jan 16 2006 Matthias Clasen <mclasen@redhat.com> - 1:2.13.3-1
97abf6
- Update to 2.13.3
97abf6
97abf6
* Sun Jan 13 2006 Matthias Clasen <mclasen@redhat.com> - 1:2.13.2-1
97abf6
- Update to 2.13.2
97abf6
- Update the persistent file selector size patch (again!)
97abf6
97abf6
* Sun Jan  8 2006 Dan Williams <dcbw@redhat.com > - 1:2.13.1-2
97abf6
- Fix up and re-enable persistent file selector size patch
97abf6
97abf6
* Tue Jan  3 2006 Matthias Clasen <mclasen@redhat.com> - 1:2.13.1-1
97abf6
- Update to 2.13.1
97abf6
- Disable scrollkeeper
97abf6
97abf6
* Wed Dec 21 2005 Jeremy Katz <katzj@redhat.com> - 1:2.13.0-3
97abf6
- fix gedit-devel requirement to include epoch
97abf6
97abf6
* Tue Dec 20 2005 Matthias Clasen <mclasen@redhat.com> - 2.13.0-2
97abf6
- Update requirements
97abf6
97abf6
* Wed Dec 14 2005 Matthias Clasen <mclasen@redhat.com> - 2.13.0-1
97abf6
- Update to 2.13.0
97abf6
- Comment out the fileselector patches for now, these
97abf6
  will need updating for the new-mdi branch
97abf6
97abf6
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
97abf6
- rebuilt
97abf6
97abf6
* Thu Oct  6 2005 Matthias Clasen <mclasen@redhat.com> - 2.12.1-1
97abf6
- Update to 2.12.1
97abf6
97abf6
* Thu Sep  8 2005 Matthias Clasen <mclasen@redhat.com> - 2.12.0-1
97abf6
- Update to 2.12.0
97abf6
97abf6
* Tue Aug 16 2005 Matthias Clasen <mclasen@redhat.com> 
97abf6
- New upstream version
97abf6
97abf6
* Thu Aug  4 2005 Matthias Clasen <mclasen@redhat.com> - 2.10.4-1
97abf6
- New upstream version
97abf6
97abf6
* Wed Aug 03 2005 Ray Strode <rstrode@redhat.com> - 2.10.3-1
97abf6
- Update to upstream version 2.10.3
97abf6
97abf6
* Mon Jun 13 2005 Ray Strode <rstrode@redhat.com> 1:2.10.2-6
97abf6
- Remove some patches that are already upstream 
97abf6
97abf6
* Tue Jun 07 2005 Ray Strode <rstrode@redhat.com> 1:2.10.2-5
97abf6
- Dont pass user input as format specifiers to
97abf6
  gtk_message_dialog_new (bug 159657).
97abf6
97abf6
* Thu Apr 14 2005 John (J5) Palmieri <johnp@redhat.com> - 2.10.2-3
97abf6
- Revert the addition of the gedit icon to the hicolor theme as
97abf6
  the new gnome-icon-theme package does the right thing
97abf6
97abf6
* Tue Apr 12 2005 Matthias Clasen <mclasen@redhat.com> - 2.10.2-2
97abf6
- Add the icon to the hicolor theme, and rename it to what
97abf6
  the .desktop file says.
97abf6
97abf6
* Fri Apr  8 2005 Ray Strode <rstrode@redhat.com> - 2.10.2-1
97abf6
- Update to upstream version 2.10.2
97abf6
97abf6
* Tue Mar 29 2005 Warren Togami <wtogami@redhat.com> - 2.10.0-2
97abf6
- devel req libgnomeprintui22-devel for pkgconfig (#152487)
97abf6
97abf6
* Thu Mar 17 2005 Ray Strode <rstrode@redhat.com> - 2.10.0-1
97abf6
- Update to upstream version 2.10.0
97abf6
97abf6
* Thu Mar  3 2005 Marco Pesenti Gritti <mpg@redhat.com> 1:2.9.7-1
97abf6
- Update to 2.9.7
97abf6
97abf6
* Wed Feb  9 2005 Matthias Clasen <mclasen@redhat.com> 1:2.9.6-1
97abf6
- Update to 2.9.6
97abf6
97abf6
* Sun Jan 30 2005 Matthias Clasen <mclasen@redhat.com> 1:2.9.5-1
97abf6
- Update to 2.9.5
97abf6
97abf6
* Thu Nov  4 2004 Marco Pesenti Gritti <mpg@redhat.com> 1:2.8.1-2
97abf6
- Update the desktop files database. (RH Bug: 135571)
97abf6
97abf6
* Mon Oct 11 2004 Dan Williams <dcbw@redhat.com> 1:2.8.1-1
97abf6
- Update to 2.8.1
97abf6
97abf6
* Wed Sep 22 2004 Dan Williams <dcbw@redhat.com> 1:2.8.0-1
97abf6
- Update to 2.8.0
97abf6
97abf6
* Wed Sep 15 2004 John (J5) Palmieri <johnp@redhat.com> 1:2.7.92-2
97abf6
- Added the spelling plugin to the default gconf schema so that the
97abf6
  tools menu is not empty (RH Bug: 31607)
97abf6
97abf6
* Tue Aug 31 2004 Alex Larsson <alexl@redhat.com> 1:2.7.92-1
97abf6
- update to 2.7.92
97abf6
97abf6
* Wed Aug 18 2004 Dan Williams <dcbw@redhat.com> 1:2.7.91-1
97abf6
- Update to 2.7.91
97abf6
97abf6
* Tue Aug  3 2004 Owen Taylor <otaylor@redhat.com> - 1:2.7.90-1
97abf6
- Upgrade to 2.7.90
97abf6
- Add patch to use Pango font names, not gnome-print font names
97abf6
97abf6
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
97abf6
- rebuilt
97abf6
97abf6
* Sat May 15 2004 Dan Williams <dcbw@redhat.com> 1:2.6.1-1
97abf6
- Upgrade to 2.6.1
97abf6
97abf6
* Fri Apr 16 2004 Dan Williams <dcbw@redhat.com> 1:2.6.0-4
97abf6
- Gnome.org #137825 Gedit crash on Find/Replace dialog close
97abf6
    when hitting escape
97abf6
97abf6
* Tue Apr 13 2004 Warren Togami <wtogami@redhat.com> 1:2.6.0-3
97abf6
- #111156 BR intltool scrollkeeper gettext
97abf6
- #111157 -devel R eel2-devel gtksourceview-devel
97abf6
- rm bogus BR esound
97abf6
97abf6
* Thu Apr 08 2004 Dan Williams <dcbw@redhat.com> 1:2.6.0-2
97abf6
- Fix dumb bug in ~/.recently-used patch where lockf() could
97abf6
    never succeed
97abf6
97abf6
* Wed Mar 31 2004 Dan Williams <dcbw@redhat.com> 1:2.6.0-1
97abf6
- Update to gedit-2.6.0 sources
97abf6
97abf6
* Thu Mar 18 2004 Dan Williams <dcbw@redhat.com> 1:2.5.92-1
97abf6
- Update to gedit-2.5.92 sources
97abf6
97abf6
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
97abf6
- rebuilt
97abf6
97abf6
* Thu Feb 25 2004 Dan Williams <dcbw@redhat.com> 1:2.5.90-1
97abf6
- fix dumbness in the egg-recent file locking patch
97abf6
- Remove the autotools-1.8 patch because it is no longer
97abf6
    needed
97abf6
- Require gtksourceview-devel >= 0.9 due to update to 2.5.90
97abf6
- Update to gedit-2.5.90
97abf6
97abf6
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
97abf6
- rebuilt
97abf6
97abf6
* Wed Feb 11 2004 Dan Williams <dcbw@redhat.com> 1:2.5.3-3
97abf6
- Correctly convert last path from open/save into a directory
97abf6
   for storing in gconf, not a file
97abf6
97abf6
* Fri Feb 06 2004 Dan Williams <dcbw@redhat.com> 1:2.5.3-2
97abf6
- Bring file selector size/last path patch up to 2.5.3
97abf6
- Fix up the recent-files locking algorithm to have finer
97abf6
   resolution timeouts
97abf6
97abf6
* Wed Jan 28 2004 Alexander Larsson <alexl@redhat.com> 1:2.5.3-1
97abf6
- update to 2.5.3
97abf6
97abf6
* Mon Jan 19 2004 Dan Williams <dcbw@redhat.com> 1:2.4.0-5
97abf6
- Work around recent files locking contention when using NFS
97abf6
    home directories (gnome.org #131930)
97abf6
- Make Find and Replace dialogs use a cancel button, so that
97abf6
    pressing escape makes them close (gnome.org #131927)
97abf6
97abf6
* Thu Jan  8 2004 Dan Williams <dcbw@redhat.com> 1:2.4.0-4
97abf6
- Remeber file selector size and last directory on open/save
97abf6
   (gnome.org #123787)
97abf6
- Small hack to work around switch from autotools 1.7 - 1.8
97abf6
97abf6
* Tue Oct 21 2003 Matt Wilson <msw@redhat.com> 1:2.4.0-3 
97abf6
- eel_read_entire_file takes a pointer to an int, not to a gsize
97abf6
  (#103933)
97abf6
97abf6
* Tue Oct  7 2003 Owen Taylor <otaylor@redhat.com> 1:2.4.0-2
97abf6
- Fix bug with multibyte chars in shell-output plugin (#104027, Jens Petersen)
97abf6
- Add missing BuildRequires on eel2, aspell-devel (#87746, Alan Cox)
97abf6
- Add versioned Requires on eel2, libgnomeui (#103363, Jens Petersen)
97abf6
97abf6
* Fri Oct  3 2003 Alexander Larsson <alexl@redhat.com> 1:2.4.0-1
97abf6
- 2.4.0
97abf6
97abf6
* Mon Sep 22 2003 Bill Nottingham <notting@redhat.com> 1:2.3.5-2
97abf6
- fix defattr (#103333)
97abf6
97abf6
* Tue Aug 26 2003 Jonathan Blandford <jrb@redhat.com>
97abf6
- require the new gtksourceview
97abf6
97abf6
* Fri Aug 15 2003 Jonathan Blandford <jrb@redhat.com> 1:2.3.3-1
97abf6
- update for GNOME 2.4
97abf6
97abf6
* Tue Jul 29 2003 Havoc Pennington <hp@redhat.com> 1:2.2.2-2
97abf6
- rebuild
97abf6
97abf6
* Mon Jul  7 2003 Havoc Pennington <hp@redhat.com> 1:2.2.2-1
97abf6
- 2.2.2
97abf6
- fix name of gettext domain
97abf6
- remove recent-monitor patch now upstream
97abf6
97abf6
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
97abf6
- rebuilt
97abf6
97abf6
* Thu May  1 2003 Havoc Pennington <hp@redhat.com> 1:2.2.0-3
97abf6
- patch configure.in for new aspell
97abf6
97abf6
* Mon Apr 28 2003 Tim Powers <timp@redhat.com> 1:2.2.0-2
97abf6
- rebuild to fix broken libpspell deps
97abf6
97abf6
* Tue Feb  4 2003 Alexander Larsson <alexl@redhat.com> 1:2.2.0-1
97abf6
- Update to 2.2.0
97abf6
- Add patch to disable recent files monitoring
97abf6
- Bump libgnomeprint requirements
97abf6
97abf6
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
97abf6
- rebuilt
97abf6
97abf6
* Fri Dec 13 2002 Tim Powers <timp@redhat.com> 1:2.1.4-1
97abf6
- update to 2.1.4
97abf6
97abf6
* Mon Dec  9 2002 Havoc Pennington <hp@redhat.com>
97abf6
- 2.1.3
97abf6
- fix unpackaged files
97abf6
97abf6
* Thu Aug 15 2002 Owen Taylor <otaylor@redhat.com>
97abf6
- Add missing bonobo server files (#71261, Taco Witte)
97abf6
- Remove empty NEWS, FAQ files from %%doc (#66079)
97abf6
97abf6
* Thu Aug  1 2002 Havoc Pennington <hp@redhat.com>
97abf6
- fix desktop file really
97abf6
97abf6
* Thu Aug  1 2002 Havoc Pennington <hp@redhat.com>
97abf6
- fix desktop file
97abf6
97abf6
* Mon Jul 29 2002 Havoc Pennington <hp@redhat.com>
97abf6
- 2.0.2
97abf6
- build with new gail
97abf6
97abf6
* Tue Jul 23 2002 Havoc Pennington <hp@redhat.com>
97abf6
- 2.0.1
97abf6
97abf6
* Tue Jun 25 2002 Owen Taylor <otaylor@redhat.com>
97abf6
- 2.0.0, fix missing locale files
97abf6
97abf6
* Sun Jun 16 2002 Havoc Pennington <hp@redhat.com>
97abf6
- 1.199.0
97abf6
- use desktop-file-install
97abf6
- remove static libs from plugins dir
97abf6
97abf6
* Sat Jun 08 2002 Havoc Pennington <hp@redhat.com>
97abf6
- rebuild in different environment
97abf6
97abf6
* Wed Jun  5 2002 Havoc Pennington <hp@redhat.com>
97abf6
- 1.121.1
97abf6
97abf6
* Sun May 26 2002 Tim Powers <timp@redhat.com>
97abf6
- automated rebuild
97abf6
97abf6
* Tue May 21 2002 Havoc Pennington <hp@redhat.com>
97abf6
- rebuild in different environment
97abf6
97abf6
* Tue May 21 2002 Havoc Pennington <hp@redhat.com>
97abf6
- 1.120.0
97abf6
97abf6
* Fri May  3 2002 Havoc Pennington <hp@redhat.com>
97abf6
- 1.118.0
97abf6
97abf6
* Fri Apr 19 2002 Havoc Pennington <hp@redhat.com>
97abf6
- move to gnome 2 version
97abf6
97abf6
* Thu Apr 18 2002 Havoc Pennington <hp@redhat.com>
97abf6
- fix ko.po
97abf6
97abf6
* Thu Apr 18 2002 Havoc Pennington <hp@redhat.com>
97abf6
- get correct po files from elvis 
97abf6
97abf6
* Thu Apr 18 2002 Havoc Pennington <hp@redhat.com>
97abf6
- gedit-pofiles.tar.gz, not gedit-po.tar.gz
97abf6
97abf6
* Mon Apr 15 2002 Havoc Pennington <hp@redhat.com>
97abf6
- merge translations
97abf6
97abf6
* Fri Mar 29 2002 Havoc Pennington <hp@redhat.com>
97abf6
- gettextize default font
97abf6
97abf6
* Thu Mar 28 2002 Havoc Pennington <hp@redhat.com>
97abf6
- more multibyte fixes #61948
97abf6
97abf6
* Wed Mar 27 2002 Havoc Pennington <hp@redhat.com>
97abf6
- 0.9.7 for multibyte support
97abf6
97abf6
* Tue Mar 26 2002 Akira TAGOH <tagoh@redhat.com> 0.9.4-11
97abf6
- gedit-0.9.4-printprefs.patch: I forgot to add to POTFILES.in...
97abf6
- gedit-po.tar.gz: added. it's on CVS now.
97abf6
97abf6
* Sun Mar 24 2002 Akira TAGOH <tagoh@redhat.com> 0.9.4-10
97abf6
- gedit-0.9.4-printprefs.patch: fix typo and sanity check.
97abf6
97abf6
* Mon Mar 04 2002 Akira TAGOH <tagoh@redhat.com> 0.9.4-9
97abf6
- Applied a font selector patch for the printing
97abf6
- fix BuildRequires for automake-1.4
97abf6
97abf6
* Mon Jan 28 2002 Havoc Pennington <hp@redhat.com>
97abf6
- rebuild in rawhide
97abf6
- fix up cflags for moved gnome headers
97abf6
97abf6
* Thu Jul 19 2001 Havoc Pennington <hp@redhat.com>
97abf6
- add some more build requires
97abf6
97abf6
* Tue Jul 17 2001 Havoc Pennington <hp@redhat.com>
97abf6
- require libglade-devel to build
97abf6
97abf6
* Fri Jun 15 2001 Nalin Dahyabhai <nalin@redhat.com>
97abf6
- rebuild in new environment
97abf6
97abf6
* Fri Feb 23 2001 Akira TAGOH <tagoh@redhat.com>
97abf6
- Fixed preview for !ja locale.
97abf6
97abf6
* Wed Feb 07 2001 Akira TAGOH <tagoh@redhat.com>
97abf6
- Fixed handling fontset. (Bug#24998)
97abf6
- Added print out for multibyte patch.
97abf6
97abf6
* Fri Dec 29 2000 Matt Wilson <msw@redhat.com>
97abf6
- 0.9.4
97abf6
97abf6
* Fri Aug 11 2000 Jonathan Blandford <jrb@redhat.com>
97abf6
- Up Epoch and release
97abf6
97abf6
* Wed Aug 09 2000 Jonathan Blandford <jrb@redhat.com>
97abf6
- include glade files so that it will actually work.
97abf6
97abf6
* Tue Aug 01 2000 Jonathan Blandford <jrb@redhat.com>
97abf6
- upgrade package to newer version at request of author.
97abf6
97abf6
* Thu Jul 13 2000 Prospector <bugzilla@redhat.com>
97abf6
- automatic rebuild
97abf6
97abf6
* Mon Jun 19 2000 Preston Brown <pbrown@redhat.com>
97abf6
- FHS paths
97abf6
97abf6
* Sun Jun 11 2000 Jonathan Blandford <jrb@redhat.com>
97abf6
- update to 0.7.9.  Somewhat untested.
97abf6
97abf6
* Fri Feb 11 2000 Jonathan Blandford <jrb@redhat.com>
97abf6
- removed "reverse search function as it doesn't work.
97abf6
97abf6
* Thu Feb 03 2000 Preston Brown <pbrown@redhat.com>
97abf6
- rebuild to gzip man pages
97abf6
97abf6
* Mon Jan 17 2000 Elliot Lee <sopwith@redhat.com>
97abf6
- If I don't put in a log entry here, people will be very upset about not
97abf6
  being able to find out that I am to blame for the 0.6.1 upgrade
97abf6
97abf6
* Mon Aug 16 1999 Michael Fulbright <drmike@redhat.com>
97abf6
- version 0.5.4
97abf6
97abf6
* Sat Feb 06 1999 Michael Johnson <johnsonm@redhat.com>
97abf6
- Cleaned up a bit for Red Hat use
97abf6
97abf6
* Thu Oct 22 1998 Alex Roberts <bse@dial.pipex.com>
97abf6
- First try at an RPM