Blame SPECS/yelp.spec

8f28bf
%global _changelog_trimtime %(date +%s -d "1 year ago")
8f28bf
f9676c
Name:          yelp
f9676c
Epoch:         1
f9676c
Version:       3.22.0
f9676c
Release:       1%{?dist}
f9676c
Summary:       Help browser for the GNOME desktop
f9676c
f9676c
Group:         Applications/System
f9676c
License:       GPLv2+
f9676c
URL:           https://wiki.gnome.org/Apps/Yelp
f9676c
#VCS:          git:git://git.gnome.org/yelp
f9676c
Source:        https://download.gnome.org/sources/%{name}/3.22/%{name}-%{version}.tar.xz
8f28bf
8f28bf
# https://bugzilla.gnome.org/show_bug.cgi?id=687960
f9676c
Patch1:        0001-Center-new-windows.patch
f9676c
f9676c
BuildRequires: pkgconfig(gtk+-3.0)
f9676c
BuildRequires: pkgconfig(liblzma)
f9676c
BuildRequires: pkgconfig(libxml-2.0)
f9676c
BuildRequires: pkgconfig(libexslt)
f9676c
BuildRequires: pkgconfig(libxslt)
f9676c
BuildRequires: pkgconfig(sqlite3)
f9676c
BuildRequires: pkgconfig(webkit2gtk-4.0)
f9676c
BuildRequires: pkgconfig(yelp-xsl)
8f28bf
BuildRequires: desktop-file-utils
8f28bf
BuildRequires: bzip2-devel
8f28bf
BuildRequires: gettext-devel
8f28bf
BuildRequires: intltool
8f28bf
BuildRequires: itstool
f9676c
Requires:      yelp-libs%{?_isa} = %{epoch}:%{version}-%{release}
f9676c
Requires:      yelp-xsl
f9676c
8f28bf
8f28bf
%description
8f28bf
Yelp is the help browser for the GNOME desktop. It is designed
8f28bf
to help you browse all the documentation on your system in
8f28bf
one central tool, including traditional man pages, info pages and
8f28bf
documentation written in DocBook.
8f28bf
8f28bf
%package libs
8f28bf
Summary: Libraries for yelp
8f28bf
Group: Development/Libraries
8f28bf
8f28bf
%description libs
8f28bf
This package contains libraries used by the yelp help browser.
8f28bf
8f28bf
%package devel
8f28bf
Summary: Development files for yelp-libs
8f28bf
Group: Development/Libraries
8f28bf
Requires: %{name}-libs%{?_isa} = %{epoch}:%{version}-%{release}
8f28bf
8f28bf
%description devel
8f28bf
This package contains header files and documentation for
8f28bf
the libraries in the yelp-libs package.
8f28bf
8f28bf
8f28bf
%prep
8f28bf
%setup -q
8f28bf
%patch1 -p1
8f28bf
8f28bf
%build
8f28bf
%configure --disable-static
8f28bf
8f28bf
# drop unneeded direct library deps with --as-needed
8f28bf
# libtool doesn't make this easy, so we do it the hard way
8f28bf
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' -e 's/    if test "$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then/      func_append compile_command " -Wl,-O1,--as-needed"\n      func_append finalize_command " -Wl,-O1,--as-needed"\n\0/' libtool
8f28bf
f9676c
make %{?_smp_mflags} V=1
8f28bf
8f28bf
%install
f9676c
%make_install
f9676c
f9676c
# Register as an application to be visible in the software center
f9676c
#
f9676c
# NOTE: It would be *awesome* if this file was maintained by the upstream
f9676c
# project, translated and installed into the right place during `make install`.
f9676c
#
f9676c
# See http://www.freedesktop.org/software/appstream/docs/ for more details.
f9676c
#
f9676c
mkdir -p $RPM_BUILD_ROOT%{_datadir}/appdata
f9676c
cat > $RPM_BUILD_ROOT%{_datadir}/appdata/%{name}.appdata.xml <
f9676c
f9676c
f9676c
f9676c
BugReportURL: https://bugzilla.gnome.org/show_bug.cgi?id=722763
f9676c
SentUpstream: 2014-09-17
f9676c
-->
f9676c
<application>
f9676c
  <id type="desktop">yelp.desktop</id>
f9676c
  <metadata_license>CC0-1.0</metadata_license>
f9676c
  <description>
f9676c
    

f9676c
      Yelp is a viewer and framework for documentation on the Linux desktop.
f9676c
      It is used heavily by the GNOME desktop environment, and its tools serve as
f9676c
      the reference implementation for the Mallard help format.
f9676c
      Yelp supports DocBook, Mallard, HTML, man, and info documents.
f9676c
    

f9676c
    

f9676c
      Yelp development has led to the development of various tools, and the Mallard
f9676c
      and DocBook transformations live in standalone XSLT module.
f9676c
      All of these are under the umbrella name Yelp.
f9676c
    

f9676c
  </description>
f9676c
  <screenshots>
f9676c
    <screenshot type="default">https://raw.githubusercontent.com/hughsie/fedora-appstream/master/screenshots-extra/yelp/a.png</screenshot>
f9676c
    <screenshot>https://raw.githubusercontent.com/hughsie/fedora-appstream/master/screenshots-extra/yelp/b.png</screenshot>
f9676c
  </screenshots>
f9676c
  <url type="homepage">https://projects.gnome.org/yelp/</url>
f9676c
  <updatecontact>gnome-doc-devel-list@gnome.org</updatecontact>
f9676c
</application>
f9676c
EOF
f9676c
f9676c
find $RPM_BUILD_ROOT%{_libdir} -name '*.la' -delete
8f28bf
8f28bf
%find_lang %{name}
8f28bf
8f28bf
%check
8f28bf
desktop-file-validate $RPM_BUILD_ROOT%{_datadir}/applications/yelp.desktop
8f28bf
8f28bf
%post
8f28bf
update-desktop-database &> /dev/null ||:
8f28bf
touch --no-create %{_datadir}/icons/hicolor &> /dev/null || :
8f28bf
8f28bf
%postun
8f28bf
update-desktop-database &> /dev/null ||:
8f28bf
if [ $1 -eq 0 ]; then
8f28bf
  glib-compile-schemas %{_datadir}/glib-2.0/schemas &> /dev/null ||:
8f28bf
  touch --no-create %{_datadir}/icons/hicolor &> /dev/null || :
8f28bf
  gtk-update-icon-cache %{_datadir}icons/hicolor &> /dev/null || :
8f28bf
fi
8f28bf
8f28bf
%posttrans
8f28bf
glib-compile-schemas %{_datadir}/glib-2.0/schemas &> /dev/null ||:
8f28bf
gtk-update-icon-cache %{_datadir}icons/hicolor &> /dev/null || :
8f28bf
8f28bf
%post libs -p /sbin/ldconfig
8f28bf
8f28bf
%postun libs -p /sbin/ldconfig
8f28bf
8f28bf
%files -f %{name}.lang
f9676c
%doc AUTHORS NEWS README
f9676c
%license COPYING
8f28bf
%{_bindir}/*
f9676c
%{_datadir}/appdata/%{name}.appdata.xml
8f28bf
%{_datadir}/applications/yelp.desktop
8f28bf
%{_datadir}/yelp
8f28bf
%{_datadir}/glib-2.0/schemas/org.gnome.yelp.gschema.xml
8f28bf
%{_datadir}/yelp-xsl/xslt/common/domains/yelp.xml
8f28bf
8f28bf
%files libs
8f28bf
%{_libdir}/libyelp.so.*
f9676c
%{_libdir}/yelp/web-extensions/libyelpwebextension.so
8f28bf
8f28bf
%files devel
8f28bf
%{_libdir}/libyelp.so
8f28bf
%{_includedir}/libyelp
f9676c
%{_datadir}/gtk-doc
8f28bf
8f28bf
8f28bf
%changelog
f9676c
* Tue Mar  7 2017 Matthias Clasen <mclasen@redhat.com> - 1:3.22.0-1
f9676c
- Rebase to 3.22.0
f9676c
  Resolves: rhbz#1387062
f9676c
00ed6c
* Mon May 18 2015 David King <dking@redhat.com> - 1:3.14.2-1
00ed6c
- Update to 3.14.2 (#1174713)
00ed6c
564731
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 1:3.8.1-7
564731
- Mass rebuild 2014-01-24
564731
564731
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 1:3.8.1-6
564731
- Mass rebuild 2013-12-27
564731
8f28bf
* Fri Jun 21 2013 Matthias Clasen <mclasen@redhat.com> - 1:3.8.1-5
8f28bf
- Trim %%changelog
8f28bf
8f28bf
* Fri Jun 21 2013 Matthias Clasen <mclasen@redhat.com> - 1:3.8.1-4
8f28bf
- Don't install ChangeLog
8f28bf
8f28bf
* Sat May 25 2013 Kalev Lember <kalevlember@gmail.com> - 1:3.8.1-3
8f28bf
- Make yelp-libs dep arch-specific, thanks to Michael Schwendt (#967180)
8f28bf
- Don't create empty /usr/share/gnome/help directory: this should be owned by
8f28bf
  individual packages that install files in there (#964421)
8f28bf
- Use configure --disable-static instead of removing the static .a afterwards
8f28bf
8f28bf
* Sat May 18 2013 Peter Robinson <pbrobinson@fedoraproject.org> 1:3.8.1-2
8f28bf
- yelp should depend on yelp-libs not the other way around
8f28bf
8f28bf
* Tue May 14 2013 Matthias Clasen <mclasen@redhat.com> - 1:3.8.1-1
8f28bf
- Update to 3.8.1
8f28bf
8f28bf
* Tue Mar 26 2013 Kalev Lember <kalevlember@gmail.com> - 1:3.8.0-1
8f28bf
- Update to 3.8.0
8f28bf
8f28bf
* Fri Feb 22 2013 Kalev Lember <kalevlember@gmail.com> - 1:3.7.90-2
8f28bf
- Remove the desktop file vendor prefix
8f28bf
8f28bf
* Tue Feb 19 2013 Richard Hughes <rhughes@redhat.com> - 1:3.7.90-1
8f28bf
- Update to 3.7.90
8f28bf
8f28bf
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.7.4-2
8f28bf
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
8f28bf
8f28bf
* Wed Jan 16 2013 Richard Hughes <hughsient@gmail.com> - 1:3.7.4-1
8f28bf
- Update to 3.7.4
8f28bf
8f28bf
* Fri Jan 4 2013 Matthias Clasen <mclasen@redhat.com> - 1:3.7.3-2
8f28bf
- Optionally do the right thing with focus and window placement
8f28bf
8f28bf
* Fri Dec 21 2012 Kalev Lember <kalevlember@gmail.com> - 1:3.7.3-1
8f28bf
- Update to 3.7.3
8f28bf
8f28bf
* Mon Nov 12 2012 Kalev Lember <kalevlember@gmail.com> - 1:3.6.2-1
8f28bf
- Update to 3.6.2
8f28bf
8f28bf
* Tue Oct 16 2012 Kalev Lember <kalevlember@gmail.com> - 1:3.6.1-1
8f28bf
- Update to 3.6.1
8f28bf
8f28bf
* Tue Sep 25 2012 Kalev Lember <kalevlember@gmail.com> - 1:3.6.0-1
8f28bf
- Update to 3.6.0
8f28bf
8f28bf
* Wed Sep 19 2012 Richard Hughes <hughsient@gmail.com> - 1:3.5.92-1
8f28bf
- Update to 3.5.92
8f28bf
8f28bf
* Tue Sep 04 2012 Richard Hughes <hughsient@gmail.com> - 1:3.5.91-1
8f28bf
- Update to 3.5.91
8f28bf
8f28bf
* Wed Aug 22 2012 Richard Hughes <hughsient@gmail.com> - 1:3.5.90-1
8f28bf
- Update to 3.5.90
8f28bf
8f28bf
* Fri Jul 27 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.4.2-3
8f28bf
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
8f28bf
8f28bf
* Sun Jul 15 2012 Ville Skyttä <ville.skytta@iki.fi> - 1:3.4.2-2
8f28bf
- Call ldconfig at -libs post(un)install time.
8f28bf
- Escape macros in %%changelog.
8f28bf
8f28bf
* Fri May 18 2012 Richard Hughes <hughsient@gmail.com> - 1:3.4.2-1
8f28bf
- Update to 3.4.2
8f28bf
8f28bf
* Tue Apr 24 2012 Kalev Lember <kalevlember@gmail.com> - 1:3.4.1-2
8f28bf
- Silence rpm scriptlet output
8f28bf
8f28bf
* Tue Apr 17 2012 Kalev Lember <kalevlember@gmail.com> - 1:3.4.1-1
8f28bf
- Update to 3.4.1
8f28bf
8f28bf
* Tue Mar 27 2012 Richard Hughes <hughsient@gmail.com> - 1:3.4.0-1
8f28bf
- Update to 3.4.0
8f28bf
8f28bf
* Tue Mar 20 2012 Kalev Lember <kalevlember@gmail.com> - 1:3.3.92-1
8f28bf
- Update to 3.3.92
8f28bf
8f28bf
* Sat Feb 25 2012 Matthias Clasen <mclasen@redhat.com> - 1:3.3.4-1
8f28bf
- Update to 3.3.4
8f28bf
8f28bf
* Tue Jan 17 2012 Matthias Clasen <mclasen@redhat.com> - 1:3.3.3-1
8f28bf
- Update to 3.3.3
8f28bf
8f28bf
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.3.2-2
8f28bf
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
8f28bf
8f28bf
* Wed Dec 21 2011 Matthias Clasen <mclasen@redhat.com> - 1:3.3.2-1
8f28bf
- Update to 3.3.2
8f28bf
8f28bf
* Wed Nov  2 2011 Matthias Clasen <mclasen@redhat.com> - 1:3.3.1-1
8f28bf
- Update to 3.3.1
8f28bf
8f28bf
* Wed Oct 26 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.2.1-2
8f28bf
- Rebuilt for glibc bug#747377
8f28bf
8f28bf
* Tue Oct 18 2011 Matthias Clasen <mclasen@redhat.com> - 1:3.2.1-1
8f28bf
- Update to 3.2.1
8f28bf
8f28bf
* Tue Sep 27 2011 Ray <rstrode@redhat.com> - 1:3.2.0-1
8f28bf
- Update to 3.2.0
8f28bf
8f28bf
* Wed Sep 21 2011 Matthias Clasen <mclasen@redhat.com> - 1:3.1.4-2
8f28bf
- Fix default uri
8f28bf
8f28bf
* Tue Sep 20 2011 Matthias Clasen <mclasen@redhat.com> - 1:3.1.4-1
8f28bf
- Update to 3.1.4
8f28bf
8f28bf
* Wed Sep 07 2011 Kalev Lember <kalevlember@gmail.com> - 1:3.1.3-1
8f28bf
- Update to 3.1.3
8f28bf
8f28bf
* Thu Aug 16 2011 Matthias Clasen <mclasen@redhat.com> - 1:3.1.2-1
8f28bf
- Update to 3.1.2
8f28bf
8f28bf
* Wed Jul  6 2011 Matthias Clasen <mclasen@redhat.com> - 1:3.1.1-1
8f28bf
- Update to 3.1.1
8f28bf
8f28bf
* Tue May 24 2011 Christopher Aillon <caillon@redhat.com> - 1:3.0.3-1
8f28bf
- Update to 3.0.3
8f28bf
8f28bf
* Sat May 07 2011 Christopher Aillon <caillon@redhat.com> - 1:3.0.2-3
8f28bf
- Update gsettings scriptlet
8f28bf
8f28bf
* Thu Apr 28 2011 Matthias Clasen <mclasen@redhat.com> 1:3.0.2-2
8f28bf
- Fix some strings appearing untranslated (e.g. 'Show Text Cursor')
8f28bf
8f28bf
* Mon Apr 25 2011 Matthias Clasen <mclasen@redhat.com> 1:3.0.2-1
8f28bf
- Update to 3.0.2
8f28bf
8f28bf
* Sun Apr 10 2011 Christopher Aillon <caillon@redhat.com> 1:3.0.1-1
8f28bf
- Update to 3.0.1
8f28bf
8f28bf
* Mon Apr  4 2011 Matthias Clasen <mclasen@redhat.com> 1:3.0.0-1
8f28bf
- Update to 3.0.0
8f28bf
8f28bf
* Tue Mar 22 2011 Matthias Clasen <mclasen@redhat.com> 1:2.91.92-1
8f28bf
- Update to 2.91.92
8f28bf
8f28bf
* Mon Mar  7 2011 Matthias Clasen <mclasen@redhat.com> 1:2.91.91-1
8f28bf
- Update to 2.91.91
8f28bf
8f28bf
* Mon Feb 21 2011 Matthias Clasen <mclasen@redhat.com> 1:2.91.90-1
8f28bf
- Update to 2.91.90
8f28bf
- Drop docbook-dtds dependency
8f28bf
8f28bf
* Thu Feb 10 2011 Matthias Clasen <mclasen@redhat.com> 1:2.91.10-4
8f28bf
- Rebuild against newer gtk
8f28bf
8f28bf
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:2.91.10-3
8f28bf
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
8f28bf
8f28bf
* Wed Feb  2 2011 Matthias Clasen <mclasen@redhat.com> - 1:2.91.10-2
8f28bf
- Rebuild against new gtk
8f28bf
8f28bf
* Mon Jan 10 2011 Matthias Clasen <mclasen@redhat.com> - 1:2.91.10-1
8f28bf
- Update to 2.91.10
8f28bf
8f28bf
* Sun Jan  9 2011 Matthias Clasen <mclasen@redhat.com> - 1:2.91.9-1
8f28bf
- Update to 2.91.9
8f28bf
8f28bf
* Fri Dec  3 2010 Matthias Clasen <mclasen@redhat.com> - 1:2.31.7-4
8f28bf
- Rebuild against new gtk
8f28bf
8f28bf
* Thu Aug 12 2010 Matthias Clasen <mclasen@redhat.com> - 1:2.31.7-3
8f28bf
- Fix up dependencies for epoch
8f28bf
8f28bf
* Wed Aug 11 2010 Matthias Clasen <mclasen@redhat.com> - 1:2.31.7-2
8f28bf
- Carry over the epoch from F14
8f28bf
8f28bf
* Mon Jul 14 2010 Matthias Clasen <mclasen@redhat.com> - 2.31.7-1
8f28bf
- Update to 2.31.7
8f28bf
8f28bf
* Sat Jul  3 2010 Matthias Clasen <mclasen@redhat.com> - 2.31.6-2
8f28bf
- Rebuild against new webkit
8f28bf
8f28bf
* Wed Jun 30 2010 Matthias Clasen <mclasen@redhat.com> - 2.31.6-1
8f28bf
- Update to 2.31.6
8f28bf
8f28bf
* Wed Jun 23 2010 Matthias Clasen <mclasen@redhat.com> - 2.31.5-2.20100623git
8f28bf
- git snapshot that works with GLib 2.25.9
8f28bf
8f28bf
* Tue Jun  8 2010 Matthias Clasen <mclasen@redhat.com> - 2.31.5-1
8f28bf
- Update to 2.31.5
8f28bf
8f28bf
* Thu May 27 2010 Matthias Clasen <mclasen@redhat.com> - 2.31.4-1
8f28bf
- Update to 2.31.4
8f28bf
8f28bf
* Mon May 24 2010 Matthew Barnes <mbarnes@redhat.com> - 2.30.1-2
8f28bf
- Require gnome-user-docs so that Help->Contents works.
8f28bf
8f28bf
* Tue Apr 27 2010 Matthias Clasen <mclasen@redhat.com> - 2.30.1-1
8f28bf
- Update to 2.30.1
8f28bf
8f28bf
* Fri Apr  9 2010 Matthias Clasen <mclasen@redhat.com> - 2.30.0-2
8f28bf
- Drop libbeagle dep
8f28bf
- Use GConf macros
8f28bf
8f28bf
* Mon Mar 29 2010 Matthias Clasen <mclasen@redhat.com> - 2.30.0-1
8f28bf
- Update to 2.30.0
8f28bf
8f28bf
* Mon Feb 22 2010 Matthias Clasen <mclasen@redhat.com> - 2.29.5-1
8f28bf
- Update to 2.29.5
8f28bf
8f28bf
* Mon Feb 08 2010 Matthew Barnes <mbarnes@redhat.com> - 2.29.4-1
8f28bf
- Update to 2.29.4
8f28bf
- Update version requirements.
8f28bf
8f28bf
* Mon Jan 25 2010 Matthew Barnes <mbarnes@redhat.com> - 2.29.3-1
8f28bf
- Update to 2.29.3
8f28bf
8f28bf
* Fri Jan 22 2010 Matthew Barnes <mbarnes@redhat.com> - 2.29.2-1
8f28bf
- Update to 2.29.2
8f28bf
8f28bf
* Tue Jan  5 2010 Matthew Barnes <mbarnes@redhat.com> - 2.29.1-1
8f28bf
- Update to 2.29.1
8f28bf
8f28bf
* Tue Jan  5 2010 Matthias Clasen <mclasen@redhat.com> - 2.28.1-2
8f28bf
- Use %%global instead of %%define where %%define doesn't work
8f28bf
8f28bf
* Fri Dec  4 2009 Matthias Clasen <mclasen@redhat.com> - 2.28.1-1
8f28bf
- Update to 2.28.1
8f28bf
8f28bf
* Wed Dec  2 2009 Matthias Clasen <mclasen@redhat.com> - 2.28.0-2
8f28bf
- make mono dep more automatic
8f28bf
8f28bf
* Mon Sep 21 2009 Matthias Clasen <mclasen@redhat.com> - 2.28.0-1
8f28bf
- Update to 2.28.0
8f28bf
8f28bf
* Mon Sep  7 2009 Matthias Clasen <mclasen@redhat.com> - 2.27.5-1
8f28bf
- Update to 2.27.5
8f28bf
8f28bf
* Mon Aug 24 2009 Matthias Clasen <mclasen@redhat.com> - 2.27.4-1
8f28bf
- Update to 2.27.4
8f28bf
8f28bf
* Sun Aug 23 2009 Matthias Clasen <mclasen@redhat.com> - 2.27.3-2
8f28bf
- Remove space before ellipsis in menuitems
8f28bf
8f28bf
* Tue Jul 28 2009 Matthias Clasen <mclasen@redhat.com> - 2.27.3-1
8f28bf
- Update to 2.27.3
8f28bf
8f28bf
* Mon Jul 27 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.27.2-4
8f28bf
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
8f28bf
8f28bf
* Sat Jul 18 2009 Matthias Clasen <mclasen@redhat.com> - 2.27.2-3
8f28bf
- Drop unused direct dependencies
8f28bf
8f28bf
* Thu Jul  2 2009 Matthias Clasen <mclasen@redhat.com> - 2.27.2-2
8f28bf
- Shrink GConf schemas
8f28bf
8f28bf
* Mon Jun 29 2009 Matthew Barnes <mbarnes@redhat.com> - 2.27.2-1
8f28bf
- Update to 2.27.2
8f28bf
- Bump gnome_doc_utils requirement to 0.17.2.
8f28bf
8f28bf
* Mon Jun 15 2009 Matthias Clasen <mclasen@redhat.com> - 2.27.1-1
8f28bf
- Update to 2.27.1
8f28bf
8f28bf
* Mon Apr 27 2009 Christopher Aillon <caillon@redhat.com> - 2.26.0-3
8f28bf
- Rebuild against newer gecko
8f28bf
8f28bf
* Mon Apr  6 2009 Matthias Clasen <mclasen@redhat.com> - 2.26.0-2
8f28bf
- Clean up Requires a bit
8f28bf
8f28bf
* Mon Mar 16 2009 Matthias Clasen <mclasen@redhat.com> - 2.26.0-1
8f28bf
- Update to 2.26.0
8f28bf
8f28bf
* Mon Mar 02 2009 Matthew Barnes <mbarnes@redhat.com> - 2.25.1-1
8f28bf
- Update to 2.25.1
8f28bf
8f28bf
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.24.0-6
8f28bf
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
8f28bf
8f28bf
* Sun Dec 21 2008 Christopher Aillon <caillon@redhat.com> - 2.24.0-5
8f28bf
- Rebuild against newer gecko
8f28bf
8f28bf
* Sat Dec 20 2008 Caolán McNamara <caolanm@redhat.com> - 2.24.0-4
8f28bf
- rebuild for gecko
8f28bf
8f28bf
* Fri Nov 21 2008 Matthias Clasen <mclasen@redhat.com> - 2.24.0-3
8f28bf
- %%summary and %%description tweakage
8f28bf
8f28bf
* Wed Sep 24 2008 Christopher Aillon <caillon@redhat.com> - 2.24.0-2
8f28bf
- Rebuild against newer gecko
8f28bf
8f28bf
* Mon Sep 22 2008 Matthias Clasen <mclasen@redhat.com> - 2.24.0-1
8f28bf
- Update ot 2.24.0
8f28bf
8f28bf
* Mon Sep 01 2008 Matthew Barnes <mbarnes@redhat.com> - 2.23.91-1
8f28bf
- Update to 2.23.91
8f28bf
8f28bf
* Fri Aug 22 2008 Matthias Clasen <mclasen@redhat.com> - 2.23.2-1
8f28bf
- Update to 2.23.2
8f28bf
8f28bf
* Tue Jul 22 2008 Martin Stransky <stransky@redhat.com> - 2.23.1-3
8f28bf
- rebuild for xulrunner update
8f28bf
8f28bf
* Fri Jun 20 2008 Matthias Clasen <mclasen@redhat.com> - 2.23.1-2
8f28bf
- Use a standard icon name in the desktop file
8f28bf
8f28bf
* Tue Jun 03 2008 Matthew Barnes <mbarnes@redhat.com> - 2.23.1-1
8f28bf
- Update to 2.23.1
8f28bf
8f28bf
* Mon May 19 2008 Matthew Barnes <mbarnes@redhat.com> - 2.22.1-2
8f28bf
- Require docbook-dtds (RH bug #447209).
8f28bf
8f28bf
* Mon Apr  7 2008 Matthias Clasen <mclasen@redhat.com> - 2.22.1-1
8f28bf
- Update to 2.22.1
8f28bf
8f28bf
* Mon Mar 31 2008 Jon McCann <jmccann@redhat.com> - 2.22.0-4
8f28bf
- Disallow launchers when running under GDM.
8f28bf
8f28bf
* Mon Mar 31 2008 Matthew Barnes <mbarnes@redhat.com> - 2.22.0-3
8f28bf
- Update patch for RH bug #437328.
8f28bf
8f28bf
* Thu Mar 13 2008 Matthew Barnes <mbarnes@redhat.com> - 2.22.0-2
8f28bf
- Add patch for RH bug #437328 (searching with Beagle broken).
8f28bf
8f28bf
* Sun Mar 09 2008 Matthew Barnes <mbarnes@redhat.com> - 2.22.0-1
8f28bf
- Update to 2.22.0
8f28bf
8f28bf
* Thu Feb 28 2008 Martin Stransky <stransky@redhat.com> - 2.21.90-4
8f28bf
- updated xulrunner patch, rebuild against xulrunner
8f28bf
8f28bf
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 2.21.90-3
8f28bf
- Autorebuild for GCC 4.3
8f28bf
8f28bf
* Sun Feb 17 2008 Matthew Barnes <mbarnes@redhat.com> - 2.21.90-2
8f28bf
- Rebuild with GCC 4.3
8f28bf
8f28bf
* Mon Jan 28 2008 Matthew Barnes <mbarnes@redhat.com> - 2.21.90-1
8f28bf
- Update to 2.21.90
8f28bf
8f28bf
* Tue Jan 08 2008 Matthew Barnes <mbarnes@redhat.com> - 2.21.2-2
8f28bf
- Look for new-style xulrunner pkg-config files.
8f28bf
- Build requires gecko-devel-unstable.
8f28bf
8f28bf
* Tue Jan 08 2008 - Bastien Nocera <bnocera@redhat.com> - 2.21.2-1
8f28bf
- Update to 2.21.2
8f28bf
8f28bf
* Sun Dec 30 2007 Jeremy Katz <katzj@redhat.com> - 2.21.1-3
8f28bf
- Rebuild for new xulrunner
8f28bf
8f28bf
* Sat Dec  8 2007 Matthias Clasen <mclasen@redhat.com> - 2.21.1-2
8f28bf
- Rebuild against new libbeagle
8f28bf
8f28bf
* Mon Dec  3 2007 Matthias Clasen <mclasen@redhat.com> - 2.21.1-1
8f28bf
- Update to 2.21.1
8f28bf
8f28bf
* Mon Dec  3 2007 Matthias Clasen <mclasen@redhat.com> - 2.20.0-9
8f28bf
- Rebuild against xulrunner again
8f28bf
8f28bf
* Thu Nov 22 2007 Martin Stransky <stransky@redhat.com> - 2.20.0-8
8f28bf
- rebuild against xulrunner
8f28bf
8f28bf
* Fri Nov 16 2007 Matthias Clasen <mclasen@redhat.com> - 2.20.0-7
8f28bf
- Handle .HP tags in man pages
8f28bf
8f28bf
* Fri Nov 09 2007 Matthew Barnes <mbarnes@redhat.com> - 2.20.0-6
8f28bf
- Rebuild against gecko-libs 1.8.1.9.
8f28bf
8f28bf
* Mon Nov  5 2007 Matthias Clasen <mclasen@redhat.com> - 2.20.0-5
8f28bf
- Fix a crash in search (#361041)
8f28bf
8f28bf
* Sun Nov  4 2007 Matthias Clasen <mclasen@redhat.com> - 2.20.0-4
8f28bf
- Fix a crash when loading the rarian docs
8f28bf
8f28bf
* Thu Nov 01 2007 Matthew Barnes <mbarnes@redhat.com> - 2.20.0-3
8f28bf
- Rebuild against gecko-libs 1.8.1.8.
8f28bf
8f28bf
* Mon Oct 22 2007 Matthias Clasen <mclasen@redhat.com> - 2.20.0-2
8f28bf
- Rebuild against new dbus-glib
8f28bf
8f28bf
* Mon Sep 17 2007 Matthew Barnes <mbarnes@redhat.com> - 2.20.0-1
8f28bf
- Update to 2.20.0
8f28bf
8f28bf
* Thu Aug 28 2007 Matthew Barnes <mbarnes@redhat.com> - 2.19.90-3
8f28bf
- Remove --add-only-show-in from desktop-file-install (RH bug #258821).
8f28bf
8f28bf
* Wed Aug 22 2007 Matthew Barnes <mbarnes@redhat.com> - 2.19.90-2
8f28bf
- Mass rebuild
8f28bf
8f28bf
* Mon Aug 13 2007 Matthew Barnes <mbarnes@redhat.com> - 2.19.90-1
8f28bf
- Update to 2.19.90
8f28bf
- Remove "info-gnutls" patch (fixed upstream).
8f28bf
- Remove patch for GNOME bug #370167 (fixed upstream).
8f28bf
- Remove patch for GNOME bug #430365 (fixed upstream).
8f28bf
- Remove patch for GNOME bug #431078 (fixed upstream).
8f28bf
8f28bf
* Wed Aug  8 2007 Christopher Aillon <caillon@redhat.com> - 2.19.1-4
8f28bf
- Rebuild against newer gecko
8f28bf
8f28bf
* Fri Aug 03 2007 Matthew Barnes <mbarnes@redhat.com> - 2.19.1-3
8f28bf
- Require rarian-devel for building.
8f28bf
8f28bf
* Fri Aug  3 2007 Matthias Clasen <mclasen@redhat.com> - 2.19.1-2
8f28bf
- Update the license field
8f28bf
8f28bf
* Thu Aug 02 2007 Matthew Barnes <mbarnes@redhat.com> - 2.19.1-1
8f28bf
- Update to 2.19.1
8f28bf
- Adapt the "apropos" patch for 2.19.1.
8f28bf
- The "posix-man" patch appears to no longer apply.
8f28bf
- Update dependencies based on configure.ac.
8f28bf
8f28bf
* Wed Jul 25 2007 Jeremy Katz <katzj@redhat.com> - 2.18.1-7
8f28bf
- rebuild for toolchain bug
8f28bf
8f28bf
* Mon Jul 23 2007 Matthias Clasen <mclasen@redhat.com> - 2.18.1-6
8f28bf
- Require gnome-doc-utils-stylesheets instead of gnome-doc-utils
8f28bf
8f28bf
* Fri Jul 20 2007 Kai Engert <kengert@redhat.com> - 2.18.1-5
8f28bf
- Rebuild against newer gecko
8f28bf
8f28bf
* Wed May 25 2007 Christopher Aillon <caillon@redhat.com> - 2.18.1-4
8f28bf
- Rebuild against newer gecko
8f28bf
8f28bf
* Wed Apr 18 2007 Matthias Clasen <mclasen@redhat.com> - 2.18.1-3
8f28bf
- Improve the man parser a bit
8f28bf
- Fix another crash in the info parser 
8f28bf
8f28bf
* Tue Apr 17 2007 Matthias Clasen <mclasen@redhat.com> - 2.18.1-2
8f28bf
- Fix a crash in the info parser (#216308)
8f28bf
8f28bf
* Mon Apr 09 2007 Matthew Barnes <mbarnes@redhat.com> - 2.18.1-1
8f28bf
- Update to 2.18.1
8f28bf
8f28bf
* Fri Mar 23 2007 Christopher Aillon <caillon@redhat.com> - 2.18.0-2
8f28bf
- Rebuild against newer gecko
8f28bf
8f28bf
* Tue Mar 13 2007 Matthew Barnes <mbarnes@redhat.com> - 2.18.0-1
8f28bf
- Update to 2.18.0
8f28bf
8f28bf
* Wed Feb 28 2007 Matthew Barnes <mbarnes@redhat.com> - 2.16.2-5
8f28bf
- Rebuild against newer gecko.
8f28bf
8f28bf
* Fri Feb 23 2007 Matthias Clasen <mclasen@redhat.com> 2.16.2-4
8f28bf
- Don't own /usr/share/icons/hicolor
8f28bf
8f28bf
* Tue Feb 13 2007 Bill Nottingham <notting@redhat.com> 2.16.2-3
8f28bf
- own %%{_datadir}/gnome/help (#205799)
8f28bf
- rpmlint silencing:
8f28bf
 - add a URL: tag
8f28bf
 - add some docs
8f28bf
8f28bf
* Thu Dec 21 2006 Christopher Aillon <caillon@redhat.com> 2.16.2-2
8f28bf
- Rebuild against newer gecko
8f28bf
8f28bf
* Tue Dec  5 2006 Matthias Clasen <mclasen@redhat.com> - 2.16.2-1
8f28bf
- Update to 2.16.2
8f28bf
- Drop obsolete patch
8f28bf
8f28bf
* Fri Nov  3 2006 Matthias Clasen <mclasen@redhat.com> - 2.16.1-6
8f28bf
- Improve the whatis parser
8f28bf
8f28bf
* Fri Nov  3 2006 Matthias Clasen <mclasen@redhat.com> - 2.16.1-5
8f28bf
- Silence %%pre
8f28bf
8f28bf
* Sun Oct 29 2006 Matthias Clasen <mclasen@redhat.com> - 2.16.1-4
8f28bf
- Improve the previous fix
8f28bf
8f28bf
* Sun Oct 29 2006 Matthias Clasen <mclasen@redhat.com> - 2.16.1-3
8f28bf
- Fix some crashes (#212888)
8f28bf
8f28bf
* Fri Oct 27 2006 Christopher Aillon <caillon@redhat.com> - 2.16.1-2
8f28bf
- Rebuild against newer gecko
8f28bf
8f28bf
* Sun Oct 22 2006 Matthias Clasen <mclasen@redhat.com> - 2.16.1-1
8f28bf
- Update to 2.16.1
8f28bf
8f28bf
* Wed Oct 18 2006 Matthias Clasen <mclasen@redhat.com> - 2.16.0-5
8f28bf
- Fix scripts according to the packaging guidelines
8f28bf
8f28bf
* Thu Oct 12 2006 Christopher Aillon <caillon@redhat.com> - 2.16.0-4.fc6
8f28bf
- Update requires to the virtual gecko version instead of a specific app
8f28bf
8f28bf
* Thu Sep 14 2006 Christopher Aillon <caillon@redhat.com> - 2.16.0-3.fc6
8f28bf
- Rebuild
8f28bf
8f28bf
* Wed Sep  6 2006 Matthias Clasen  <mclasen@redhat.com> - 2.16.0-2.fc6
8f28bf
- Actually apply the Pango patch
8f28bf
8f28bf
* Mon Sep  4 2006 Matthias Clasen  <mclasen@redhat.com> - 2.16.0-1.fc6
8f28bf
- Update to 2.16.0
8f28bf
8f28bf
* Tue Aug 29 2006 Matthias Clasen  <mclasen@redhat.com> - 2.15.91-3.fc6
8f28bf
- Use Pango 
8f28bf
8f28bf
* Wed Aug 23 2006 Matthew Barnes <mbarnes@redhat.com> - 2.15.91-2
8f28bf
- Rebuild
8f28bf
8f28bf
* Thu Aug 10 2006 Matthew Barnes <mbarnes@redhat.com> - 2.15.91-1
8f28bf
- Update to 2.15.91
8f28bf
8f28bf
* Thu Jul 27 2006 Matthias Clasen <mclasen@redhat.com> - 2.15.5-1
8f28bf
- Update to 2.15.5
8f28bf
- Rebuild against firefox-devel
8f28bf
8f28bf
* Tue Jul 18 2006 Matthias Clasen <mclasen@redhat.com> - 2.15.2-2
8f28bf
- Go back to 2.15.2, since gecko 1.8 is still missing
8f28bf
8f28bf
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 2.15.3-1.1
8f28bf
- rebuild
8f28bf
8f28bf
* Tue Jun 13 2006 Matthias Clasen <mclasen@redhat.com> - 2.15.3-1
8f28bf
- Update to 2.15.3
8f28bf
8f28bf
* Tue May 17 2006 Matthias Clasen <mclasen@redhat.com> - 2.15.2-1
8f28bf
- Update to 2.15.2
8f28bf
8f28bf
* Mon May 15 2006 Matthew Barnes <mbarnes@redhat.com> - 2.15.1-3
8f28bf
- Bump mozilla_version from 1.7.12 to 1.7.13 (closes #190880).
8f28bf
8f28bf
* Mon May 15 2006 Matthew Barnes <mbarnes@redhat.com> - 2.15.1-2
8f28bf
- Add build requirements: startup-notification-devel
8f28bf
                          libgnomeprintui22-devel
8f28bf
                          libXt-devel
8f28bf
8f28bf
* Tue May  9 2006 Matthias Clasen <mclasen@redhat.com> - 2.15.1-1
8f28bf
- Update to 2.15.1
8f28bf
8f28bf
* Mon Apr 10 2006 Matthias Clasen <mclasen@redhat.com> - 2.14.1-2
8f28bf
- Update to 2.14.1
8f28bf
8f28bf
* Mon Mar 13 2006 Matthias Clasen <mclasen@redhat.com> - 2.14.0-1
8f28bf
- Update to 2.14.0
8f28bf
8f28bf
* Mon Feb 27 2006 Matthias Clasen <mclasen@redhat.com> - 2.13.6-1
8f28bf
- Update to 2.13.6
8f28bf
8f28bf
* Sun Feb 12 2006 Matthias Clasen <mclasen@redhat.com> - 2.13.5-2
8f28bf
- Turn on info and man support for test3
8f28bf
8f28bf
* Sun Feb 12 2006 Matthias Clasen <mclasen@redhat.com> - 2.13.5-1
8f28bf
- Update to 2.13.5
8f28bf
8f28bf
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 2.13.4-1.2
8f28bf
- bump again for double-long bug on ppc(64)
8f28bf
8f28bf
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 2.13.4-1.1
8f28bf
- rebuilt for new gcc4.1 snapshot and glibc changes
8f28bf
8f28bf
* Tue Jan 31 2006 Matthias Clasen <mclasen@redhat.com> - 2.13.4-1
8f28bf
- Update to 2.13.4
8f28bf
8f28bf
* Thu Jan 19 2006 Matthias Clasen <mclasen@redhat.com> - 2.13.3-1
8f28bf
- Update to 2.13.3
8f28bf
- enable search
8f28bf
8f28bf
* Wed Jan 18 2006 Matthias Clasen <mclasen@redhat.com> - 2.13.2-3
8f28bf
- Disable search, since it doesn't compile against 
8f28bf
  current beagle
8f28bf
8f28bf
* Thu Dec 15 2005 David Malcolm <dmalcolm@redhat.com> - 2.13.2-2
8f28bf
- Patched to include DocBook mimetype in desktop file, and added preun and post
8f28bf
  hooks to update-desktop-database (#175880)
8f28bf
- Patched to ensure that Yelp recognizes that it can handle the mimetype of the
8f28bf
  documentation as reported by gnomevfs (also #175880) 
8f28bf
8f28bf
* Thu Dec 15 2005 Matthias Clasen <mclasen@redhat.com> 2.13.2-1
8f28bf
- Update to 2.13.2
8f28bf
8f28bf
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
8f28bf
- rebuilt
8f28bf
8f28bf
* Wed Nov 30 2005 Matthias Clasen <mclasen@redhat.com> - 2.13.1-6
8f28bf
- Update to 2.13.1
8f28bf
8f28bf
* Wed Oct 19 2005 Jeremy Katz <katzj@redhat.com> - 2.12.1-5
8f28bf
- build on ppc64 now that we have mozilla there again
8f28bf
8f28bf
* Tue Oct 18 2005 Christopher Aillon <caillon@redhat.com> - 2.12.1-4
8f28bf
- Rebuild
8f28bf
8f28bf
* Mon Oct 17 2005 Matthias Clasen <mclasen@redhat.com> - 2.12.1-3
8f28bf
- Include the category General|Linux|Distributions|Other on the
8f28bf
  title page
8f28bf
8f28bf
* Mon Oct 17 2005 Matthias Clasen <mclasen@redhat.com> - 2.12.1-2
8f28bf
- Fix a double-free bug
8f28bf
8f28bf
* Thu Sep 29 2005 Matthias Clasen <mclasen@redhat.com> - 2.12.1-1
8f28bf
- Update to 2.12.1
8f28bf
8f28bf
* Thu Sep  8 2005 Matthias Clasen <mclasen@redhat.com> - 2.12.0-1
8f28bf
- Update to 2.12.0
8f28bf
8f28bf
* Wed Aug 17 2005 Jeremy Katz <katzj@redhat.com> - 2.11.1-5
8f28bf
- rebuild
8f28bf
8f28bf
* Wed Aug 17 2005 Ray Strode <rstrode@redhat.com> 2.11.1-4
8f28bf
- rebuild
8f28bf
8f28bf
* Sun Jul 31 2005 Christopher Aillon <caillon@redhat.com> 2.11.1-3
8f28bf
- Rebuild against newer mozilla
8f28bf
8f28bf
* Tue Jul 19 2005 Christopher Aillon <caillon@redhat.com> 2.11.1-2
8f28bf
- Rebuild against newer mozilla
8f28bf
8f28bf
* Wed Jul 13 2005 Matthias Clasen <mclasen@redhat.com> 2.11.1-1
8f28bf
- Newer upstream version
8f28bf
8f28bf
* Thu May 19 2005 Ray Strode <rstrode@redhat.com> 2.10.0-1
8f28bf
- Update to 2.10.0 (bug 157752, 146862).
8f28bf
8f28bf
* Thu May 19 2005 Christopher Aillon <caillon@redhat.com> 2.9.3-7
8f28bf
- Depend on mozilla 1.7.8
8f28bf
8f28bf
* Thu Apr 28 2005 Ray Strode <rstrode@redhat.com> 2.9.3-6
8f28bf
- Disable man support
8f28bf
- Disable info support
8f28bf
- Don't try to install schemas during install (bug 154035)
8f28bf
8f28bf
* Mon Apr 18 2005 Ray Strode <rstrode@redhat.com> 2.9.3-5
8f28bf
- Depend on mozilla 1.7.7
8f28bf
8f28bf
* Mon Apr  4 2005 Ray Strode <rstrode@redhat.com> 2.9.3-4
8f28bf
- rebuilt
8f28bf
8f28bf
* Wed Mar  9 2005 Christopher Aillon <caillon@redhat.com> 2.9.3-3
8f28bf
- Depend on mozilla 1.7.6
8f28bf
8f28bf
* Sat Mar  5 2005 Christopher Aillon <caillon@redhat.com> 2.9.3-2
8f28bf
- Rebuild against GCC 4.0
8f28bf
8f28bf
* Fri Jan 28 2005 Matthias Clasen <mclasen@redhat.com> 2.9.3-1
8f28bf
- Update to 2.9.3
8f28bf
8f28bf
* Mon Dec 20 2004 Christopher Aillon <caillon@redhat.com> 2.6.5-1
8f28bf
- Update to 2.6.5
8f28bf
8f28bf
* Sat Nov  6 2004 Marco Pesenti Gritti <mpg@redhat.com> 2.6.4-1
8f28bf
- Update to 2.6.4
8f28bf
8f28bf
* Wed Sep 22 2004 Christopher Aillon <caillon@redhat.com> 2.6.3-1
8f28bf
- Update to 2.6.3
8f28bf
8f28bf
* Fri Sep 03 2004 Matthias Clasen <mclasen@redhat.com> 2.6.2-2
8f28bf
- fix an translation problem
8f28bf
8f28bf
* Tue Aug 31 2004 Alex Larsson <alexl@redhat.com> 2.6.2-1
8f28bf
- update to 2.6.2
8f28bf
8f28bf
* Wed Jun 30 2004 Christopher Aillon <caillon@redhat.com> 2.6.1-1
8f28bf
- Update to 2.6.1
8f28bf
8f28bf
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
8f28bf
- rebuilt
8f28bf
8f28bf
* Thu Apr  1 2004 Alex Larsson <alexl@redhat.com> 2.6.0-1
8f28bf
- update to 2.6.0
8f28bf
8f28bf
* Mon Mar 15 2004 Alex Larsson <alexl@redhat.com> 2.5.90-2
8f28bf
- Fix requirements
8f28bf
8f28bf
* Wed Mar 10 2004 Alex Larsson <alexl@redhat.com> 2.5.90-1
8f28bf
- update to 2.5.90
8f28bf
8f28bf
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
8f28bf
- rebuilt
8f28bf
8f28bf
* Wed Feb 25 2004 Alexander Larsson <alexl@redhat.com> 2.5.6-1
8f28bf
- update to 2.5.6
8f28bf
8f28bf
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
8f28bf
- rebuilt
8f28bf
8f28bf
* Wed Jan 28 2004 Alexander Larsson <alexl@redhat.com> 2.5.3-1
8f28bf
- update to 2.5.3
8f28bf
8f28bf
* Wed Dec 24 2003 Tim Waugh <twaugh@redhat.com> 2.4.0-2
8f28bf
- Fix g_strdup_printf usage in info2html (bug #111200, patch from
8f28bf
  Miloslav Trmac).
8f28bf
8f28bf
* Tue Sep  9 2003 Alexander Larsson <alexl@redhat.com> 2.4.0-1
8f28bf
- update to 2.4.0 (only code change is bugfix from me)
8f28bf
- Fixed the utf8 manpage patch (#91689)
8f28bf
8f28bf
* Wed Aug 27 2003 Alexander Larsson <alexl@redhat.com> 2.3.6-2
8f28bf
- info and manpages are utf8
8f28bf
8f28bf
* Wed Aug 20 2003 Alexander Larsson <alexl@redhat.com> 2.3.6-1
8f28bf
- Update for gnome 2.3
8f28bf
8f28bf
* Wed Jul  9 2003 Alexander Larsson <alexl@redhat.com> 2.2.3-1.E
8f28bf
- Rebuild
8f28bf
8f28bf
* Mon Jul  7 2003 Alexander Larsson <alexl@redhat.com> 2.2.3-1
8f28bf
- update to 2.2.3
8f28bf
8f28bf
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
8f28bf
- rebuilt
8f28bf
8f28bf
* Fri Feb 14 2003 Jeremy Katz <katzj@redhat.com> 2.2.0-3
8f28bf
- fix buildrequires
8f28bf
8f28bf
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
8f28bf
- rebuilt
8f28bf
8f28bf
* Tue Jan 21 2003 Alexander Larsson <alexl@redhat.com> 2.2.0-1
8f28bf
- Update to 2.2.0
8f28bf
- Add libglade dependency
8f28bf
8f28bf
* Tue Jan  7 2003 Alexander Larsson <alexl@redhat.com> 2.1.4-1
8f28bf
- Updated to 2.1.4
8f28bf
8f28bf
* Mon Nov 18 2002 Tim Powers <timp@redhat.com>
8f28bf
- rebuild for all arches
8f28bf
8f28bf
* Mon Aug 12 2002 Alexander Larsson <alexl@redhat.com>
8f28bf
- Remove the strange copyright on the start page. Fixes #69106
8f28bf
8f28bf
* Thu Aug  8 2002 Havoc Pennington <hp@redhat.com>
8f28bf
- 1.0.2
8f28bf
- include libexecdir stuff
8f28bf
8f28bf
* Sat Jul 27 2002 Havoc Pennington <hp@redhat.com>
8f28bf
- rebuild with new gail
8f28bf
- 1.0.1
8f28bf
8f28bf
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
8f28bf
- automated rebuild
8f28bf
8f28bf
* Tue Jun 18 2002 Havoc Pennington <hp@redhat.com>
8f28bf
- put all the binaries in the file list... why is this package so hard?
8f28bf
8f28bf
* Mon Jun 17 2002 Havoc Pennington <hp@redhat.com>
8f28bf
- put images in file list, this thing will be non-ugly yet
8f28bf
8f28bf
* Sun Jun 16 2002 Havoc Pennington <hp@redhat.com>
8f28bf
- 1.0
8f28bf
- use desktop-file-install to install/munge .desktop files
8f28bf
- put the sgml stuff in file list
8f28bf
8f28bf
* Fri Jun 07 2002 Havoc Pennington <hp@redhat.com>
8f28bf
- rebuild in different environment
8f28bf
8f28bf
* Wed Jun  5 2002 Havoc Pennington <hp@redhat.com>
8f28bf
- 0.10
8f28bf
8f28bf
* Sun May 26 2002 Tim Powers <timp@redhat.com>
8f28bf
- automated rebuild
8f28bf
8f28bf
* Tue May 21 2002 Havoc Pennington <hp@redhat.com>
8f28bf
- rebuild in different environment
8f28bf
8f28bf
* Tue May 21 2002 Havoc Pennington <hp@redhat.com>
8f28bf
- 0.8
8f28bf
8f28bf
* Fri May  3 2002 Havoc Pennington <hp@redhat.com>
8f28bf
- 0.6.1
8f28bf
8f28bf
* Fri Apr 19 2002 Havoc Pennington <hp@redhat.com>
8f28bf
- 0.6
8f28bf
8f28bf
* Wed Jan 30 2002 Owen Taylor <otaylor@redhat.com>
8f28bf
- Rebuild for new gnome2 libraries
8f28bf
8f28bf
* Mon Jan 28 2002 Alex Larsson <alexl@redhat.com>
8f28bf
- Initial build.