yelp/yelp.spec

1054 lines
33 KiB
RPMSpec
Raw Normal View History

2013-06-22 04:46:39 +00:00
%global _changelog_trimtime %(date +%s -d "1 year ago")
2014-12-10 23:38:33 +00:00
Name: yelp
2015-10-31 16:37:24 +00:00
Epoch: 2
2017-06-20 08:41:43 +00:00
Version: 3.25.3
Release: 3%{?dist}
2014-12-10 23:38:33 +00:00
Summary: Help browser for the GNOME desktop
Group: Applications/System
License: GPLv2+
URL: https://wiki.gnome.org/Apps/Yelp
#VCS: git:git://git.gnome.org/yelp
2017-06-20 08:41:43 +00:00
Source: https://download.gnome.org/sources/%{name}/3.25/%{name}-%{version}.tar.xz
2011-04-28 11:51:31 +00:00
2013-01-04 20:15:30 +00:00
# https://bugzilla.gnome.org/show_bug.cgi?id=687960
2014-12-10 23:38:33 +00:00
Patch1: 0001-Center-new-windows.patch
BuildRequires: pkgconfig(gtk+-3.0)
BuildRequires: pkgconfig(liblzma)
BuildRequires: pkgconfig(libxml-2.0)
BuildRequires: pkgconfig(libexslt)
BuildRequires: pkgconfig(libxslt)
BuildRequires: pkgconfig(sqlite3)
2015-06-23 09:04:20 +00:00
BuildRequires: pkgconfig(webkit2gtk-4.0)
2014-12-10 23:38:33 +00:00
BuildRequires: pkgconfig(yelp-xsl)
2010-05-28 04:04:32 +00:00
BuildRequires: desktop-file-utils
BuildRequires: bzip2-devel
2006-07-18 16:18:21 +00:00
BuildRequires: gettext-devel
2010-07-14 19:20:28 +00:00
BuildRequires: intltool
2012-02-25 21:29:26 +00:00
BuildRequires: itstool
2014-12-10 23:38:33 +00:00
Requires: yelp-libs%{?_isa} = %{epoch}:%{version}-%{release}
Requires: yelp-xsl
2006-06-13 19:21:37 +00:00
%description
2008-11-21 18:39:14 +00:00
Yelp is the help browser for the GNOME desktop. It is designed
to help you browse all the documentation on your system in
2008-11-21 18:39:14 +00:00
one central tool, including traditional man pages, info pages and
documentation written in DocBook.
2010-05-28 04:04:32 +00:00
%package libs
Summary: Libraries for yelp
Group: Development/Libraries
%description libs
This package contains libraries used by the yelp help browser.
2010-05-28 04:04:32 +00:00
%package devel
Summary: Development files for yelp-libs
Group: Development/Libraries
Requires: %{name}-libs%{?_isa} = %{epoch}:%{version}-%{release}
2009-07-02 06:15:26 +00:00
2010-05-28 04:04:32 +00:00
%description devel
This package contains header files and documentation for
the libraries in the yelp-libs package.
%prep
%setup -q
2013-01-04 20:15:30 +00:00
%patch1 -p1
2009-07-19 02:13:16 +00:00
%build
%configure --disable-static
2009-06-16 03:41:04 +00:00
2009-07-19 02:13:16 +00:00
# drop unneeded direct library deps with --as-needed
# libtool doesn't make this easy, so we do it the hard way
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
2014-12-10 23:38:33 +00:00
make %{?_smp_mflags} V=1
%install
2015-08-17 17:29:59 +00:00
%make_install
# Register as an application to be visible in the software center
#
# NOTE: It would be *awesome* if this file was maintained by the upstream
# project, translated and installed into the right place during `make install`.
#
# See http://www.freedesktop.org/software/appstream/docs/ for more details.
#
mkdir -p $RPM_BUILD_ROOT%{_datadir}/appdata
cat > $RPM_BUILD_ROOT%{_datadir}/appdata/%{name}.appdata.xml <<EOF
<?xml version="1.0" encoding="UTF-8"?>
<!-- Copyright 2014 Richard Hughes <richard@hughsie.com> -->
<!--
BugReportURL: https://bugzilla.gnome.org/show_bug.cgi?id=722763
SentUpstream: 2014-09-17
-->
<application>
<id type="desktop">yelp.desktop</id>
<metadata_license>CC0-1.0</metadata_license>
<description>
<p>
Yelp is a viewer and framework for documentation on the Linux desktop.
It is used heavily by the GNOME desktop environment, and its tools serve as
the reference implementation for the Mallard help format.
Yelp supports DocBook, Mallard, HTML, man, and info documents.
</p>
<p>
Yelp development has led to the development of various tools, and the Mallard
and DocBook transformations live in standalone XSLT module.
All of these are under the umbrella name Yelp.
</p>
</description>
<screenshots>
<screenshot type="default">https://raw.githubusercontent.com/hughsie/fedora-appstream/master/screenshots-extra/yelp/a.png</screenshot>
<screenshot>https://raw.githubusercontent.com/hughsie/fedora-appstream/master/screenshots-extra/yelp/b.png</screenshot>
</screenshots>
<url type="homepage">https://projects.gnome.org/yelp/</url>
<updatecontact>gnome-doc-devel-list@gnome.org</updatecontact>
</application>
EOF
2015-06-23 09:04:20 +00:00
find $RPM_BUILD_ROOT%{_libdir} -name '*.la' -delete
2010-05-28 04:04:32 +00:00
%find_lang %{name}
2013-02-22 12:18:59 +00:00
%check
desktop-file-validate $RPM_BUILD_ROOT%{_datadir}/applications/yelp.desktop
2005-01-28 20:45:25 +00:00
%post
update-desktop-database &> /dev/null ||:
2010-04-09 23:50:20 +00:00
touch --no-create %{_datadir}/icons/hicolor &> /dev/null || :
2005-07-13 18:47:26 +00:00
2006-05-10 03:21:44 +00:00
%postun
update-desktop-database &> /dev/null ||:
2010-04-09 23:50:20 +00:00
if [ $1 -eq 0 ]; then
glib-compile-schemas %{_datadir}/glib-2.0/schemas &> /dev/null ||:
2010-04-09 23:50:20 +00:00
touch --no-create %{_datadir}/icons/hicolor &> /dev/null || :
gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null || :
2010-04-09 23:50:20 +00:00
fi
%posttrans
glib-compile-schemas %{_datadir}/glib-2.0/schemas &> /dev/null ||:
gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null || :
2005-01-28 20:45:25 +00:00
%post libs -p /sbin/ldconfig
%postun libs -p /sbin/ldconfig
2010-05-28 04:04:32 +00:00
%files -f %{name}.lang
2015-08-17 17:29:25 +00:00
%doc AUTHORS NEWS README
%license COPYING
%{_bindir}/*
%{_datadir}/appdata/%{name}.appdata.xml
2013-02-22 12:18:59 +00:00
%{_datadir}/applications/yelp.desktop
%{_datadir}/yelp
2010-05-28 04:04:32 +00:00
%{_datadir}/glib-2.0/schemas/org.gnome.yelp.gschema.xml
2012-02-25 21:41:07 +00:00
%{_datadir}/yelp-xsl/xslt/common/domains/yelp.xml
2010-05-28 04:04:32 +00:00
%files libs
%{_libdir}/libyelp.so.*
2015-06-23 09:04:20 +00:00
%{_libdir}/yelp/web-extensions/libyelpwebextension.so
2010-05-28 04:04:32 +00:00
%files devel
2011-08-18 15:24:00 +00:00
%{_libdir}/libyelp.so
2010-05-28 04:04:32 +00:00
%{_includedir}/libyelp
2014-12-10 23:38:33 +00:00
%{_datadir}/gtk-doc
2010-05-28 04:04:32 +00:00
%changelog
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2:3.25.3-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
* Thu Jul 13 2017 David King <amigadave@amigadave.com> - 2:3.25.3-2
- Fix icon cache path in scriptlets (#1470335)
2017-06-20 08:41:43 +00:00
* Tue Jun 20 2017 David King <amigadave@amigadave.com> - 2:3.25.3-1
- Update to 3.25.3
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2:3.22.0-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
2016-09-20 07:11:18 +00:00
* Tue Sep 20 2016 David King <amigadave@amigadave.com> - 2:3.22.0-1
- Update to 3.22.0
2016-06-21 06:24:06 +00:00
* Tue Jun 21 2016 David King <amigadave@amigadave.com> - 2:3.21.3-1
- Update to 3.21.3
2016-04-12 14:49:12 +00:00
* Tue Apr 12 2016 David King <amigadave@amigadave.com> - 2:3.20.1-1
- Update to 3.20.1
2016-03-22 06:42:54 +00:00
* Tue Mar 22 2016 Kalev Lember <klember@redhat.com> - 2:3.20.0-1
- Update to 3.20.0
2016-03-01 10:38:30 +00:00
* Tue Mar 01 2016 David King <amigadave@amigadave.com> - 2:3.19.91-1
- Update to 3.19.91
2016-02-16 08:16:31 +00:00
* Tue Feb 16 2016 David King <amigadave@amigadave.com> - 2:3.19.90-1
- Update to 3.19.90
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2:3.19.1-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
2015-10-31 16:37:24 +00:00
* Sat Oct 31 2015 Adam Williamson <awilliam@redhat.com> - 2:3.19.1-2
- bump epoch to keep up with F23
2015-10-26 22:21:50 +00:00
* Mon Oct 26 2015 David King <amigadave@amigadave.com> - 1:3.19.1-1
- Update to 3.19.1
2015-10-12 19:55:44 +00:00
* Mon Oct 12 2015 Kalev Lember <klember@redhat.com> - 1:3.18.1-1
- Update to 3.18.1
2015-09-21 21:13:43 +00:00
* Mon Sep 21 2015 Kalev Lember <klember@redhat.com> - 1:3.18.0-1
- Update to 3.18.0
2015-09-01 08:08:53 +00:00
* Tue Sep 01 2015 David King <amigadave@amigadave.com> - 1:3.17.91-1
- Update to 3.17.91
2015-08-17 17:29:25 +00:00
* Mon Aug 17 2015 Kalev Lember <klember@redhat.com> - 1:3.17.90-1
- Update to 3.17.90
2015-08-17 17:29:59 +00:00
- Use make_install macro
2015-08-17 17:29:25 +00:00
2015-07-21 11:56:06 +00:00
* Tue Jul 21 2015 David King <amigadave@amigadave.com> - 1:3.17.4-1
- Update to 3.17.4
2015-06-23 09:04:20 +00:00
* Tue Jun 23 2015 David King <amigadave@amigadave.com> - 1:3.17.3-1
- Update to 3.17.3
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.17.2-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
2015-05-25 21:42:33 +00:00
* Mon May 25 2015 David King <amigadave@amigadave.com> - 1:3.17.2-1
- Update to 3.17.2
2015-05-11 17:42:52 +00:00
* Mon May 11 2015 David King <amigadave@amigadave.com> - 1:3.16.1-1
- Update to 3.16.1
* Thu Mar 26 2015 Richard Hughes <rhughes@redhat.com> - 1:3.16.0-2
- Add an AppData file for the software center
2015-05-11 17:42:52 +00:00
* Mon Mar 23 2015 Kalev Lember <kalevlember@gmail.com> - 1:3.16.0-1
2015-03-23 19:58:10 +00:00
- Update to 3.16.0
2015-05-11 17:42:52 +00:00
* Mon Mar 02 2015 David King <amigadave@amigadave.com> - 1:3.15.91-1
2015-03-02 22:30:16 +00:00
- Update to 3.15.91
2015-05-11 17:42:52 +00:00
* Mon Feb 16 2015 David King <amigadave@amigadave.com> - 1:3.15.90-1
2015-02-16 23:26:41 +00:00
- Update to 3.15.90
- Use license macro for COPYING
2015-02-16 23:26:41 +00:00
2014-12-10 23:38:33 +00:00
* Wed Dec 10 2014 David King <amigadave@amigadave.com> - 1:3.14.1-3
- Use pkgconfig for BuildRequires
2014-11-10 13:58:32 +00:00
* Mon Nov 10 2014 Matthias Clasen <mclasen@redhat.com> - 1:3.14.1-2
- Drop the gnome-user-docs dependency (#1149511)
2014-10-13 21:18:04 +00:00
* Mon Oct 13 2014 Kalev Lember <kalevlember@gmail.com> - 1:3.14.1-1
- Update to 3.14.1
2014-09-23 11:31:14 +00:00
* Tue Sep 23 2014 Kalev Lember <kalevlember@gmail.com> - 1:3.14.0-2
- Drop unused build deps
2014-09-23 06:27:53 +00:00
* Tue Sep 23 2014 Kalev Lember <kalevlember@gmail.com> - 1:3.14.0-1
- Update to 3.14.0
2014-09-16 08:52:36 +00:00
* Tue Sep 16 2014 Kalev Lember <kalevlember@gmail.com> - 1:3.13.92-1
- Update to 3.13.92
2014-08-19 19:07:32 +00:00
* Tue Aug 19 2014 Kalev Lember <kalevlember@gmail.com> - 1:3.13.90-1
- Update to 3.13.90
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.13.3-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
2014-06-24 17:17:40 +00:00
* Tue Jun 24 2014 Richard Hughes <rhughes@redhat.com> - 1:3.13.3-1
- Update to 3.13.3
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.12.0-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
2014-03-25 08:17:18 +00:00
* Tue Mar 25 2014 Kalev Lember <kalevlember@gmail.com> - 1:3.12.0-1
- Update to 3.12.0
2014-03-05 08:00:02 +00:00
* Wed Mar 05 2014 Richard Hughes <rhughes@redhat.com> - 1:3.11.91-1
- Update to 3.11.91
2013-11-25 19:20:53 +00:00
* Mon Nov 25 2013 Richard Hughes <rhughes@redhat.com> - 1:3.11.1-1
- Update to 3.11.1
2013-10-29 06:44:35 +00:00
* Tue Oct 29 2013 Richard Hughes <rhughes@redhat.com> - 1:3.10.1-1
- Update to 3.10.1
2013-09-24 21:16:42 +00:00
* Tue Sep 24 2013 Kalev Lember <kalevlember@gmail.com> - 1:3.10.0-1
- Update to 3.10.0
2013-09-03 22:43:17 +00:00
* Tue Sep 03 2013 Kalev Lember <kalevlember@gmail.com> - 1:3.9.91-1
- Update to 3.9.91
2013-08-22 00:30:38 +00:00
* Thu Aug 22 2013 Kalev Lember <kalevlember@gmail.com> - 1:3.9.90-1
- Update to 3.9.90
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.8.1-6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
2013-06-22 04:46:39 +00:00
* Fri Jun 21 2013 Matthias Clasen <mclasen@redhat.com> - 1:3.8.1-5
- Trim %%changelog
2013-06-22 03:55:05 +00:00
* Fri Jun 21 2013 Matthias Clasen <mclasen@redhat.com> - 1:3.8.1-4
- Don't install ChangeLog
* Sat May 25 2013 Kalev Lember <kalevlember@gmail.com> - 1:3.8.1-3
- Make yelp-libs dep arch-specific, thanks to Michael Schwendt (#967180)
- Don't create empty /usr/share/gnome/help directory: this should be owned by
individual packages that install files in there (#964421)
- Use configure --disable-static instead of removing the static .a afterwards
* Sat May 18 2013 Peter Robinson <pbrobinson@fedoraproject.org> 1:3.8.1-2
- yelp should depend on yelp-libs not the other way around
2013-05-14 10:17:52 +00:00
* Tue May 14 2013 Richard Hughes <rhughes@redhat.com> - 1:3.8.1-1
- Update to 3.8.1
2013-03-26 03:24:09 +00:00
* Tue Mar 26 2013 Kalev Lember <kalevlember@gmail.com> - 1:3.8.0-1
- Update to 3.8.0
2013-02-22 12:18:59 +00:00
* Fri Feb 22 2013 Kalev Lember <kalevlember@gmail.com> - 1:3.7.90-2
- Remove the desktop file vendor prefix
2013-02-19 18:20:53 +00:00
* Tue Feb 19 2013 Richard Hughes <rhughes@redhat.com> - 1:3.7.90-1
- Update to 3.7.90
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.7.4-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
2013-01-16 15:25:37 +00:00
* Wed Jan 16 2013 Richard Hughes <hughsient@gmail.com> - 1:3.7.4-1
- Update to 3.7.4
2013-01-04 20:15:30 +00:00
* Fri Jan 4 2013 Matthias Clasen <mclasen@redhat.com> - 1:3.7.3-2
- Optionally do the right thing with focus and window placement
2012-12-20 23:29:10 +00:00
* Fri Dec 21 2012 Kalev Lember <kalevlember@gmail.com> - 1:3.7.3-1
- Update to 3.7.3
2012-11-12 22:08:14 +00:00
* Mon Nov 12 2012 Kalev Lember <kalevlember@gmail.com> - 1:3.6.2-1
- Update to 3.6.2
2012-10-16 15:07:11 +00:00
* Tue Oct 16 2012 Kalev Lember <kalevlember@gmail.com> - 1:3.6.1-1
- Update to 3.6.1
2012-09-25 17:41:52 +00:00
* Tue Sep 25 2012 Kalev Lember <kalevlember@gmail.com> - 1:3.6.0-1
- Update to 3.6.0
2012-09-19 15:14:02 +00:00
* Wed Sep 19 2012 Richard Hughes <hughsient@gmail.com> - 1:3.5.92-1
- Update to 3.5.92
2012-09-04 15:39:01 +00:00
* Tue Sep 04 2012 Richard Hughes <hughsient@gmail.com> - 1:3.5.91-1
- Update to 3.5.91
2012-08-22 11:32:49 +00:00
* Wed Aug 22 2012 Richard Hughes <hughsient@gmail.com> - 1:3.5.90-1
- Update to 3.5.90
* Fri Jul 27 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.4.2-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
* Sun Jul 15 2012 Ville Skyttä <ville.skytta@iki.fi> - 1:3.4.2-2
- Call ldconfig at -libs post(un)install time.
- Escape macros in %%changelog.
2012-05-18 12:55:33 +00:00
* Fri May 18 2012 Richard Hughes <hughsient@gmail.com> - 1:3.4.2-1
- Update to 3.4.2
* Tue Apr 24 2012 Kalev Lember <kalevlember@gmail.com> - 1:3.4.1-2
- Silence rpm scriptlet output
2012-04-16 21:20:29 +00:00
* Tue Apr 17 2012 Kalev Lember <kalevlember@gmail.com> - 1:3.4.1-1
- Update to 3.4.1
2012-03-27 15:28:28 +00:00
* Tue Mar 27 2012 Richard Hughes <hughsient@gmail.com> - 1:3.4.0-1
- Update to 3.4.0
2012-03-20 21:44:35 +00:00
* Tue Mar 20 2012 Kalev Lember <kalevlember@gmail.com> - 1:3.3.92-1
- Update to 3.3.92
2012-02-25 21:20:11 +00:00
* Sat Feb 25 2012 Matthias Clasen <mclasen@redhat.com> - 1:3.3.4-1
- Update to 3.3.4
2012-01-18 01:14:53 +00:00
* Tue Jan 17 2012 Matthias Clasen <mclasen@redhat.com> - 1:3.3.3-1
- Update to 3.3.3
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.3.2-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
2011-12-22 04:58:56 +00:00
* Wed Dec 21 2011 Matthias Clasen <mclasen@redhat.com> - 1:3.3.2-1
- Update to 3.3.2
2011-11-03 01:47:13 +00:00
* Wed Nov 2 2011 Matthias Clasen <mclasen@redhat.com> - 1:3.3.1-1
- Update to 3.3.1
2011-10-27 00:30:50 +00:00
* Wed Oct 26 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.2.1-2
- Rebuilt for glibc bug#747377
2011-10-19 04:43:05 +00:00
* Tue Oct 18 2011 Matthias Clasen <mclasen@redhat.com> - 1:3.2.1-1
- Update to 3.2.1
2011-09-28 01:26:27 +00:00
* Tue Sep 27 2011 Ray <rstrode@redhat.com> - 1:3.2.0-1
- Update to 3.2.0
2011-10-19 04:43:05 +00:00
* Wed Sep 21 2011 Matthias Clasen <mclasen@redhat.com> - 1:3.1.4-2
- Fix default uri
2011-09-20 18:41:18 +00:00
* Tue Sep 20 2011 Matthias Clasen <mclasen@redhat.com> - 1:3.1.4-1
- Update to 3.1.4
2011-09-07 00:14:18 +00:00
* Wed Sep 07 2011 Kalev Lember <kalevlember@gmail.com> - 1:3.1.3-1
- Update to 3.1.3
2011-08-18 14:53:08 +00:00
* Thu Aug 16 2011 Matthias Clasen <mclasen@redhat.com> - 1:3.1.2-1
- Update to 3.1.2
2011-07-07 01:03:35 +00:00
* Wed Jul 6 2011 Matthias Clasen <mclasen@redhat.com> - 1:3.1.1-1
- Update to 3.1.1
2011-05-24 14:11:53 +00:00
* Tue May 24 2011 Christopher Aillon <caillon@redhat.com> - 1:3.0.3-1
- Update to 3.0.3
* Sat May 07 2011 Christopher Aillon <caillon@redhat.com> - 1:3.0.2-3
- Update gsettings scriptlet
2011-04-28 11:51:31 +00:00
* Thu Apr 28 2011 Matthias Clasen <mclasen@redhat.com> 1:3.0.2-2
- Fix some strings appearing untranslated (e.g. 'Show Text Cursor')
2011-04-26 01:55:06 +00:00
* Mon Apr 25 2011 Matthias Clasen <mclasen@redhat.com> 1:3.0.2-1
- Update to 3.0.2
2011-04-11 01:48:07 +00:00
* Sun Apr 10 2011 Christopher Aillon <caillon@redhat.com> 1:3.0.1-1
- Update to 3.0.1
2011-04-05 01:08:53 +00:00
* Mon Apr 4 2011 Matthias Clasen <mclasen@redhat.com> 1:3.0.0-1
- Update to 3.0.0
2011-03-22 14:46:45 +00:00
* Tue Mar 22 2011 Matthias Clasen <mclasen@redhat.com> 1:2.91.92-1
- Update to 2.91.92
2011-03-08 03:16:15 +00:00
* Mon Mar 7 2011 Matthias Clasen <mclasen@redhat.com> 1:2.91.91-1
- Update to 2.91.91
2011-02-22 04:31:17 +00:00
* Mon Feb 21 2011 Matthias Clasen <mclasen@redhat.com> 1:2.91.90-1
- Update to 2.91.90
- Drop docbook-dtds dependency
2011-02-11 03:55:16 +00:00
* Thu Feb 10 2011 Matthias Clasen <mclasen@redhat.com> 1:2.91.10-4
- Rebuild against newer gtk
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:2.91.10-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
2011-02-03 02:32:39 +00:00
* Wed Feb 2 2011 Matthias Clasen <mclasen@redhat.com> - 1:2.91.10-2
- Rebuild against new gtk
2011-01-10 21:54:04 +00:00
* Mon Jan 10 2011 Matthias Clasen <mclasen@redhat.com> - 1:2.91.10-1
- Update to 2.91.10
2011-01-10 02:33:16 +00:00
* Sun Jan 9 2011 Matthias Clasen <mclasen@redhat.com> - 1:2.91.9-1
- Update to 2.91.9
2010-12-03 17:09:39 +00:00
* Fri Dec 3 2010 Matthias Clasen <mclasen@redhat.com> - 1:2.31.7-4
- Rebuild against new gtk
2010-08-12 14:37:32 +00:00
* Thu Aug 12 2010 Matthias Clasen <mclasen@redhat.com> - 1:2.31.7-3
- Fix up dependencies for epoch
2010-08-12 00:28:45 +00:00
* Wed Aug 11 2010 Matthias Clasen <mclasen@redhat.com> - 1:2.31.7-2
- Carry over the epoch from F14
2010-07-14 19:13:47 +00:00
* Mon Jul 14 2010 Matthias Clasen <mclasen@redhat.com> - 2.31.7-1
2010-07-12 21:11:52 +00:00
- Update to 2.31.7
2010-07-03 06:07:40 +00:00
* Sat Jul 3 2010 Matthias Clasen <mclasen@redhat.com> - 2.31.6-2
- Rebuild against new webkit
2010-06-30 04:24:05 +00:00
* Wed Jun 30 2010 Matthias Clasen <mclasen@redhat.com> - 2.31.6-1
- Update to 2.31.6
2010-06-23 18:29:19 +00:00
* Wed Jun 23 2010 Matthias Clasen <mclasen@redhat.com> - 2.31.5-2.20100623git
- git snapshot that works with GLib 2.25.9
2010-06-08 16:20:18 +00:00
* Tue Jun 8 2010 Matthias Clasen <mclasen@redhat.com> - 2.31.5-1
- Update to 2.31.5
2010-05-28 04:04:32 +00:00
* Thu May 27 2010 Matthias Clasen <mclasen@redhat.com> - 2.31.4-1
- Update to 2.31.4
* Mon May 24 2010 Matthew Barnes <mbarnes@redhat.com> - 2.30.1-2
- Require gnome-user-docs so that Help->Contents works.
2010-04-27 11:13:48 +00:00
* Tue Apr 27 2010 Matthias Clasen <mclasen@redhat.com> - 2.30.1-1
- Update to 2.30.1
2010-04-09 23:50:20 +00:00
* Fri Apr 9 2010 Matthias Clasen <mclasen@redhat.com> - 2.30.0-2
- Drop libbeagle dep
- Use GConf macros
2010-03-29 18:26:04 +00:00
* Mon Mar 29 2010 Matthias Clasen <mclasen@redhat.com> - 2.30.0-1
- Update to 2.30.0
2010-02-22 17:15:27 +00:00
* Mon Feb 22 2010 Matthias Clasen <mclasen@redhat.com> - 2.29.5-1
- Update to 2.29.5
* Mon Feb 08 2010 Matthew Barnes <mbarnes@redhat.com> - 2.29.4-1
- Update to 2.29.4
- Update version requirements.
2010-01-26 02:30:59 +00:00
* Mon Jan 25 2010 Matthew Barnes <mbarnes@redhat.com> - 2.29.3-1
- Update to 2.29.3
2010-01-22 14:06:30 +00:00
* Fri Jan 22 2010 Matthew Barnes <mbarnes@redhat.com> - 2.29.2-1
- Update to 2.29.2
2010-01-06 04:43:37 +00:00
* Tue Jan 5 2010 Matthew Barnes <mbarnes@redhat.com> - 2.29.1-1
- Update to 2.29.1
2010-01-05 20:14:52 +00:00
* Tue Jan 5 2010 Matthias Clasen <mclasen@redhat.com> - 2.28.1-2
- Use %%global instead of %%define where %%define doesn't work
2010-01-05 20:14:52 +00:00
2009-12-05 00:45:20 +00:00
* Fri Dec 4 2009 Matthias Clasen <mclasen@redhat.com> - 2.28.1-1
- Update to 2.28.1
2009-12-02 21:45:47 +00:00
* Wed Dec 2 2009 Matthias Clasen <mclasen@redhat.com> - 2.28.0-2
- make mono dep more automatic
2009-09-22 00:01:41 +00:00
* Mon Sep 21 2009 Matthias Clasen <mclasen@redhat.com> - 2.28.0-1
- Update to 2.28.0
2009-09-08 01:40:26 +00:00
* Mon Sep 7 2009 Matthias Clasen <mclasen@redhat.com> - 2.27.5-1
- Update to 2.27.5
2009-08-25 02:56:15 +00:00
* Mon Aug 24 2009 Matthias Clasen <mclasen@redhat.com> - 2.27.4-1
- Update to 2.27.4
* Sun Aug 23 2009 Matthias Clasen <mclasen@redhat.com> - 2.27.3-2
- Remove space before ellipsis in menuitems
2009-07-28 05:22:16 +00:00
* Tue Jul 28 2009 Matthias Clasen <mclasen@redhat.com> - 2.27.3-1
- Update to 2.27.3
* Mon Jul 27 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.27.2-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
2009-07-19 02:13:16 +00:00
* Sat Jul 18 2009 Matthias Clasen <mclasen@redhat.com> - 2.27.2-3
- Drop unused direct dependencies
2009-07-02 06:15:26 +00:00
* Thu Jul 2 2009 Matthias Clasen <mclasen@redhat.com> - 2.27.2-2
- Shrink GConf schemas
2009-06-29 12:33:54 +00:00
* Mon Jun 29 2009 Matthew Barnes <mbarnes@redhat.com> - 2.27.2-1
- Update to 2.27.2
- Bump gnome_doc_utils requirement to 0.17.2.
2009-06-29 12:33:54 +00:00
2009-06-16 03:41:04 +00:00
* Mon Jun 15 2009 Matthias Clasen <mclasen@redhat.com> - 2.27.1-1
- Update to 2.27.1
2009-04-28 03:32:55 +00:00
* Mon Apr 27 2009 Christopher Aillon <caillon@redhat.com> - 2.26.0-3
- Rebuild against newer gecko
2009-04-06 05:49:56 +00:00
* Mon Apr 6 2009 Matthias Clasen <mclasen@redhat.com> - 2.26.0-2
- Clean up Requires a bit
2009-03-17 03:34:35 +00:00
* Mon Mar 16 2009 Matthias Clasen <mclasen@redhat.com> - 2.26.0-1
- Update to 2.26.0
2009-03-02 12:24:42 +00:00
* Mon Mar 02 2009 Matthew Barnes <mbarnes@redhat.com> - 2.25.1-1
- Update to 2.25.1
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.24.0-6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
2008-12-22 00:06:09 +00:00
* Sun Dec 21 2008 Christopher Aillon <caillon@redhat.com> - 2.24.0-5
- Rebuild against newer gecko
2008-12-20 13:53:29 +00:00
* Sat Dec 20 2008 Caolán McNamara <caolanm@redhat.com> - 2.24.0-4
- rebuild for gecko
2008-11-21 18:39:14 +00:00
* Fri Nov 21 2008 Matthias Clasen <mclasen@redhat.com> - 2.24.0-3
- %%summary and %%description tweakage
2008-09-24 19:20:20 +00:00
* Wed Sep 24 2008 Christopher Aillon <caillon@redhat.com> - 2.24.0-2
- Rebuild against newer gecko
2008-09-22 17:42:53 +00:00
* Mon Sep 22 2008 Matthias Clasen <mclasen@redhat.com> - 2.24.0-1
- Update ot 2.24.0
2008-09-02 03:20:31 +00:00
* Mon Sep 01 2008 Matthew Barnes <mbarnes@redhat.com> - 2.23.91-1
- Update to 2.23.91
2008-08-22 16:27:45 +00:00
* Fri Aug 22 2008 Matthias Clasen <mclasen@redhat.com> - 2.23.2-1
- Update to 2.23.2
2008-07-22 07:35:57 +00:00
* Tue Jul 22 2008 Martin Stransky <stransky@redhat.com> - 2.23.1-3
- rebuild for xulrunner update
2008-06-20 17:28:46 +00:00
* Fri Jun 20 2008 Matthias Clasen <mclasen@redhat.com> - 2.23.1-2
- Use a standard icon name in the desktop file
2008-06-03 11:12:54 +00:00
* Tue Jun 03 2008 Matthew Barnes <mbarnes@redhat.com> - 2.23.1-1
- Update to 2.23.1
* Mon May 19 2008 Matthew Barnes <mbarnes@redhat.com> - 2.22.1-2
- Require docbook-dtds (RH bug #447209).
2008-04-07 23:31:22 +00:00
* Mon Apr 7 2008 Matthias Clasen <mclasen@redhat.com> - 2.22.1-1
- Update to 2.22.1
* Mon Mar 31 2008 Jon McCann <jmccann@redhat.com> - 2.22.0-4
- Disallow launchers when running under GDM.
2008-03-31 14:31:56 +00:00
* Mon Mar 31 2008 Matthew Barnes <mbarnes@redhat.com> - 2.22.0-3
- Update patch for RH bug #437328.
* Thu Mar 13 2008 Matthew Barnes <mbarnes@redhat.com> - 2.22.0-2
- Add patch for RH bug #437328 (searching with Beagle broken).
2008-03-10 02:29:09 +00:00
* Sun Mar 09 2008 Matthew Barnes <mbarnes@redhat.com> - 2.22.0-1
- Update to 2.22.0
* Thu Feb 28 2008 Martin Stransky <stransky@redhat.com> - 2.21.90-4
- updated xulrunner patch, rebuild against xulrunner
2008-02-19 13:16:50 +00:00
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 2.21.90-3
- Autorebuild for GCC 4.3
2008-02-17 16:14:12 +00:00
* Sun Feb 17 2008 Matthew Barnes <mbarnes@redhat.com> - 2.21.90-2
- Rebuild with GCC 4.3
2008-01-29 01:52:06 +00:00
* Mon Jan 28 2008 Matthew Barnes <mbarnes@redhat.com> - 2.21.90-1
- Update to 2.21.90
* Tue Jan 08 2008 Matthew Barnes <mbarnes@redhat.com> - 2.21.2-2
- Look for new-style xulrunner pkg-config files.
2008-01-29 01:52:06 +00:00
- Build requires gecko-devel-unstable.
2008-01-08 16:15:21 +00:00
* Tue Jan 08 2008 - Bastien Nocera <bnocera@redhat.com> - 2.21.2-1
- Update to 2.21.2
2007-12-31 03:26:31 +00:00
* Sun Dec 30 2007 Jeremy Katz <katzj@redhat.com> - 2.21.1-3
- Rebuild for new xulrunner
2007-12-08 14:44:51 +00:00
* Sat Dec 8 2007 Matthias Clasen <mclasen@redhat.com> - 2.21.1-2
- Rebuild against new libbeagle
2007-12-04 02:32:33 +00:00
* Mon Dec 3 2007 Matthias Clasen <mclasen@redhat.com> - 2.21.1-1
- Update to 2.21.1
2007-12-03 17:28:12 +00:00
* Mon Dec 3 2007 Matthias Clasen <mclasen@redhat.com> - 2.20.0-9
- Rebuild against xulrunner again
2007-11-22 11:31:06 +00:00
* Thu Nov 22 2007 Martin Stransky <stransky@redhat.com> - 2.20.0-8
- rebuild against xulrunner
2007-11-17 03:37:25 +00:00
* Fri Nov 16 2007 Matthias Clasen <mclasen@redhat.com> - 2.20.0-7
- Handle .HP tags in man pages
2007-11-09 13:05:34 +00:00
* Fri Nov 09 2007 Matthew Barnes <mbarnes@redhat.com> - 2.20.0-6
- Rebuild against gecko-libs 1.8.1.9.
2007-11-05 23:17:21 +00:00
* Mon Nov 5 2007 Matthias Clasen <mclasen@redhat.com> - 2.20.0-5
- Fix a crash in search (#361041)
2007-11-05 04:02:36 +00:00
* Sun Nov 4 2007 Matthias Clasen <mclasen@redhat.com> - 2.20.0-4
- Fix a crash when loading the rarian docs
2007-11-01 16:28:20 +00:00
* Thu Nov 01 2007 Matthew Barnes <mbarnes@redhat.com> - 2.20.0-3
- Rebuild against gecko-libs 1.8.1.8.
2007-10-23 02:34:47 +00:00
* Mon Oct 22 2007 Matthias Clasen <mclasen@redhat.com> - 2.20.0-2
- Rebuild against new dbus-glib
2007-09-18 03:07:12 +00:00
* Mon Sep 17 2007 Matthew Barnes <mbarnes@redhat.com> - 2.20.0-1
- Update to 2.20.0
* Thu Aug 28 2007 Matthew Barnes <mbarnes@redhat.com> - 2.19.90-3
- Remove --add-only-show-in from desktop-file-install (RH bug #258821).
2007-08-22 15:03:31 +00:00
* Wed Aug 22 2007 Matthew Barnes <mbarnes@redhat.com> - 2.19.90-2
- Mass rebuild
* Mon Aug 13 2007 Matthew Barnes <mbarnes@redhat.com> - 2.19.90-1
- Update to 2.19.90
- Remove "info-gnutls" patch (fixed upstream).
- Remove patch for GNOME bug #370167 (fixed upstream).
- Remove patch for GNOME bug #430365 (fixed upstream).
- Remove patch for GNOME bug #431078 (fixed upstream).
2007-08-08 18:26:48 +00:00
* Wed Aug 8 2007 Christopher Aillon <caillon@redhat.com> - 2.19.1-4
- Rebuild against newer gecko
2007-08-03 17:05:07 +00:00
* Fri Aug 03 2007 Matthew Barnes <mbarnes@redhat.com> - 2.19.1-3
- Require rarian-devel for building.
2007-08-03 05:06:16 +00:00
* Fri Aug 3 2007 Matthias Clasen <mclasen@redhat.com> - 2.19.1-2
- Update the license field
* Thu Aug 02 2007 Matthew Barnes <mbarnes@redhat.com> - 2.19.1-1
- Update to 2.19.1
- Adapt the "apropos" patch for 2.19.1.
- The "posix-man" patch appears to no longer apply.
- Update dependencies based on configure.ac.
2007-07-25 17:16:02 +00:00
* Wed Jul 25 2007 Jeremy Katz <katzj@redhat.com> - 2.18.1-7
- rebuild for toolchain bug
2007-07-23 22:55:00 +00:00
* Mon Jul 23 2007 Matthias Clasen <mclasen@redhat.com> - 2.18.1-6
- Require gnome-doc-utils-stylesheets instead of gnome-doc-utils
2007-07-20 03:25:26 +00:00
* Fri Jul 20 2007 Kai Engert <kengert@redhat.com> - 2.18.1-5
- Rebuild against newer gecko
2007-05-25 19:47:22 +00:00
* Wed May 25 2007 Christopher Aillon <caillon@redhat.com> - 2.18.1-4
- Rebuild against newer gecko
2007-04-19 02:54:20 +00:00
* Wed Apr 18 2007 Matthias Clasen <mclasen@redhat.com> - 2.18.1-3
- Improve the man parser a bit
- Fix another crash in the info parser
2007-04-16 16:35:28 +00:00
* Tue Apr 17 2007 Matthias Clasen <mclasen@redhat.com> - 2.18.1-2
- Fix a crash in the info parser (#216308)
2007-04-09 17:34:29 +00:00
* Mon Apr 09 2007 Matthew Barnes <mbarnes@redhat.com> - 2.18.1-1
- Update to 2.18.1
2007-03-23 15:45:03 +00:00
* Fri Mar 23 2007 Christopher Aillon <caillon@redhat.com> - 2.18.0-2
- Rebuild against newer gecko
2007-03-13 05:41:52 +00:00
* Tue Mar 13 2007 Matthew Barnes <mbarnes@redhat.com> - 2.18.0-1
- Update to 2.18.0
2007-02-28 12:40:26 +00:00
* Wed Feb 28 2007 Matthew Barnes <mbarnes@redhat.com> - 2.16.2-5
- Rebuild against newer gecko.
2007-02-23 07:45:58 +00:00
* Fri Feb 23 2007 Matthias Clasen <mclasen@redhat.com> 2.16.2-4
- Don't own /usr/share/icons/hicolor
2007-02-13 19:56:13 +00:00
* Tue Feb 13 2007 Bill Nottingham <notting@redhat.com> 2.16.2-3
- own %%{_datadir}/gnome/help (#205799)
2007-02-13 20:11:04 +00:00
- rpmlint silencing:
- add a URL: tag
- add some docs
2007-02-13 19:56:13 +00:00
2006-12-22 20:25:19 +00:00
* Thu Dec 21 2006 Christopher Aillon <caillon@redhat.com> 2.16.2-2
- Rebuild against newer gecko
2006-12-05 16:36:06 +00:00
* Tue Dec 5 2006 Matthias Clasen <mclasen@redhat.com> - 2.16.2-1
- Update to 2.16.2
- Drop obsolete patch
2006-11-03 19:48:29 +00:00
* Fri Nov 3 2006 Matthias Clasen <mclasen@redhat.com> - 2.16.1-6
- Improve the whatis parser
2006-11-03 14:11:32 +00:00
* Fri Nov 3 2006 Matthias Clasen <mclasen@redhat.com> - 2.16.1-5
- Silence %%pre
2006-10-30 04:57:55 +00:00
* Sun Oct 29 2006 Matthias Clasen <mclasen@redhat.com> - 2.16.1-4
- Improve the previous fix
2006-10-30 03:16:39 +00:00
* Sun Oct 29 2006 Matthias Clasen <mclasen@redhat.com> - 2.16.1-3
- Fix some crashes (#212888)
* Fri Oct 27 2006 Christopher Aillon <caillon@redhat.com> - 2.16.1-2
2006-10-27 19:37:32 +00:00
- Rebuild against newer gecko
2006-10-22 04:25:33 +00:00
* Sun Oct 22 2006 Matthias Clasen <mclasen@redhat.com> - 2.16.1-1
- Update to 2.16.1
2006-10-18 17:51:44 +00:00
* Wed Oct 18 2006 Matthias Clasen <mclasen@redhat.com> - 2.16.0-5
- Fix scripts according to the packaging guidelines
* Thu Oct 12 2006 Christopher Aillon <caillon@redhat.com> - 2.16.0-4.fc6
- Update requires to the virtual gecko version instead of a specific app
2006-09-14 19:27:22 +00:00
* Thu Sep 14 2006 Christopher Aillon <caillon@redhat.com> - 2.16.0-3.fc6
- Rebuild
2006-09-06 15:22:14 +00:00
* Wed Sep 6 2006 Matthias Clasen <mclasen@redhat.com> - 2.16.0-2.fc6
- Actually apply the Pango patch
2006-09-05 00:04:00 +00:00
* Mon Sep 4 2006 Matthias Clasen <mclasen@redhat.com> - 2.16.0-1.fc6
- Update to 2.16.0
2006-08-29 17:33:41 +00:00
* Tue Aug 29 2006 Matthias Clasen <mclasen@redhat.com> - 2.15.91-3.fc6
- Use Pango
2006-08-23 19:34:38 +00:00
* Wed Aug 23 2006 Matthew Barnes <mbarnes@redhat.com> - 2.15.91-2
- Rebuild
2006-08-10 15:10:54 +00:00
* Thu Aug 10 2006 Matthew Barnes <mbarnes@redhat.com> - 2.15.91-1
- Update to 2.15.91
2006-07-27 16:20:55 +00:00
* Thu Jul 27 2006 Matthias Clasen <mclasen@redhat.com> - 2.15.5-1
- Update to 2.15.5
- Rebuild against firefox-devel
2006-07-18 16:04:55 +00:00
* Tue Jul 18 2006 Matthias Clasen <mclasen@redhat.com> - 2.15.2-2
- Go back to 2.15.2, since gecko 1.8 is still missing
2006-07-12 09:24:52 +00:00
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 2.15.3-1.1
- rebuild
2006-06-13 04:43:46 +00:00
* Tue Jun 13 2006 Matthias Clasen <mclasen@redhat.com> - 2.15.3-1
- Update to 2.15.3
2006-05-17 15:16:54 +00:00
* Tue May 17 2006 Matthias Clasen <mclasen@redhat.com> - 2.15.2-1
- Update to 2.15.2
* Mon May 15 2006 Matthew Barnes <mbarnes@redhat.com> - 2.15.1-3
- Bump mozilla_version from 1.7.12 to 1.7.13 (closes #190880).
* Mon May 15 2006 Matthew Barnes <mbarnes@redhat.com> - 2.15.1-2
- Add build requirements: startup-notification-devel
libgnomeprintui22-devel
libXt-devel
2006-05-10 03:21:44 +00:00
* Tue May 9 2006 Matthias Clasen <mclasen@redhat.com> - 2.15.1-1
- Update to 2.15.1
2006-04-10 13:44:05 +00:00
* Mon Apr 10 2006 Matthias Clasen <mclasen@redhat.com> - 2.14.1-2
- Update to 2.14.1
2006-03-13 05:32:41 +00:00
* Mon Mar 13 2006 Matthias Clasen <mclasen@redhat.com> - 2.14.0-1
- Update to 2.14.0
2006-02-27 13:47:41 +00:00
* Mon Feb 27 2006 Matthias Clasen <mclasen@redhat.com> - 2.13.6-1
- Update to 2.13.6
2006-02-13 02:01:58 +00:00
* Sun Feb 12 2006 Matthias Clasen <mclasen@redhat.com> - 2.13.5-2
- Turn on info and man support for test3
2006-02-13 01:26:39 +00:00
* Sun Feb 12 2006 Matthias Clasen <mclasen@redhat.com> - 2.13.5-1
- Update to 2.13.5
2006-02-11 06:37:18 +00:00
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 2.13.4-1.2
- bump again for double-long bug on ppc(64)
2006-02-07 14:43:40 +00:00
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 2.13.4-1.1
- rebuilt for new gcc4.1 snapshot and glibc changes
2006-01-31 05:20:51 +00:00
* Tue Jan 31 2006 Matthias Clasen <mclasen@redhat.com> - 2.13.4-1
- Update to 2.13.4
2006-01-19 18:13:32 +00:00
* Thu Jan 19 2006 Matthias Clasen <mclasen@redhat.com> - 2.13.3-1
- Update to 2.13.3
- enable search
2006-01-18 13:53:00 +00:00
* Wed Jan 18 2006 Matthias Clasen <mclasen@redhat.com> - 2.13.2-3
2006-01-18 14:44:15 +00:00
- Disable search, since it doesn't compile against
current beagle
2006-01-18 13:53:00 +00:00
* Thu Dec 15 2005 David Malcolm <dmalcolm@redhat.com> - 2.13.2-2
- Patched to include DocBook mimetype in desktop file, and added preun and post
hooks to update-desktop-database (#175880)
- Patched to ensure that Yelp recognizes that it can handle the mimetype of the
documentation as reported by gnomevfs (also #175880)
2005-12-15 06:19:30 +00:00
* Thu Dec 15 2005 Matthias Clasen <mclasen@redhat.com> 2.13.2-1
- Update to 2.13.2
2005-12-09 22:43:57 +00:00
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
- rebuilt
2005-11-30 19:45:10 +00:00
* Wed Nov 30 2005 Matthias Clasen <mclasen@redhat.com> - 2.13.1-6
- Update to 2.13.1
* Wed Oct 19 2005 Jeremy Katz <katzj@redhat.com> - 2.12.1-5
- build on ppc64 now that we have mozilla there again
2005-10-18 19:03:01 +00:00
* Tue Oct 18 2005 Christopher Aillon <caillon@redhat.com> - 2.12.1-4
- Rebuild
2005-10-17 19:03:12 +00:00
* Mon Oct 17 2005 Matthias Clasen <mclasen@redhat.com> - 2.12.1-3
- Include the category General|Linux|Distributions|Other on the
title page
2005-10-17 18:09:58 +00:00
* Mon Oct 17 2005 Matthias Clasen <mclasen@redhat.com> - 2.12.1-2
- Fix a double-free bug
2005-09-30 03:42:56 +00:00
* Thu Sep 29 2005 Matthias Clasen <mclasen@redhat.com> - 2.12.1-1
- Update to 2.12.1
2005-09-08 17:37:27 +00:00
* Thu Sep 8 2005 Matthias Clasen <mclasen@redhat.com> - 2.12.0-1
- Update to 2.12.0
2005-08-18 02:39:12 +00:00
* Wed Aug 17 2005 Jeremy Katz <katzj@redhat.com> - 2.11.1-5
- rebuild
2005-08-17 12:59:15 +00:00
* Wed Aug 17 2005 Ray Strode <rstrode@redhat.com> 2.11.1-4
- rebuild
2005-07-31 17:52:28 +00:00
* Sun Jul 31 2005 Christopher Aillon <caillon@redhat.com> 2.11.1-3
- Rebuild against newer mozilla
2005-07-20 03:28:12 +00:00
* Tue Jul 19 2005 Christopher Aillon <caillon@redhat.com> 2.11.1-2
- Rebuild against newer mozilla
2005-07-13 18:47:26 +00:00
* Wed Jul 13 2005 Matthias Clasen <mclasen@redhat.com> 2.11.1-1
- Newer upstream version
* Thu May 19 2005 Ray Strode <rstrode@redhat.com> 2.10.0-1
- Update to 2.10.0 (bug 157752, 146862).
2005-05-19 15:42:09 +00:00
* Thu May 19 2005 Christopher Aillon <caillon@redhat.com> 2.9.3-7
- Depend on mozilla 1.7.8
* Thu Apr 28 2005 Ray Strode <rstrode@redhat.com> 2.9.3-6
- Disable man support
- Disable info support
- Don't try to install schemas during install (bug 154035)
2005-04-18 17:19:00 +00:00
* Mon Apr 18 2005 Ray Strode <rstrode@redhat.com> 2.9.3-5
- Depend on mozilla 1.7.7
2005-04-04 23:23:57 +00:00
* Mon Apr 4 2005 Ray Strode <rstrode@redhat.com> 2.9.3-4
- rebuilt
2005-03-10 05:13:51 +00:00
* Wed Mar 9 2005 Christopher Aillon <caillon@redhat.com> 2.9.3-3
- Depend on mozilla 1.7.6
2005-03-05 09:14:07 +00:00
* Sat Mar 5 2005 Christopher Aillon <caillon@redhat.com> 2.9.3-2
- Rebuild against GCC 4.0
2005-01-28 20:45:25 +00:00
* Fri Jan 28 2005 Matthias Clasen <mclasen@redhat.com> 2.9.3-1
- Update to 2.9.3
2004-12-20 20:13:30 +00:00
* Mon Dec 20 2004 Christopher Aillon <caillon@redhat.com> 2.6.5-1
- Update to 2.6.5
2004-11-06 11:59:51 +00:00
* Sat Nov 6 2004 Marco Pesenti Gritti <mpg@redhat.com> 2.6.4-1
- Update to 2.6.4
2004-09-22 22:37:20 +00:00
* Wed Sep 22 2004 Christopher Aillon <caillon@redhat.com> 2.6.3-1
- Update to 2.6.3
* Fri Sep 03 2004 Matthias Clasen <mclasen@redhat.com> 2.6.2-2
- fix an translation problem
* Tue Aug 31 2004 Alex Larsson <alexl@redhat.com> 2.6.2-1
- update to 2.6.2
* Wed Jun 30 2004 Christopher Aillon <caillon@redhat.com> 2.6.1-1
- Update to 2.6.1
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
- rebuilt
* Thu Apr 1 2004 Alex Larsson <alexl@redhat.com> 2.6.0-1
- update to 2.6.0
* Mon Mar 15 2004 Alex Larsson <alexl@redhat.com> 2.5.90-2
- Fix requirements
* Wed Mar 10 2004 Alex Larsson <alexl@redhat.com> 2.5.90-1
- update to 2.5.90
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
- rebuilt
* Wed Feb 25 2004 Alexander Larsson <alexl@redhat.com> 2.5.6-1
- update to 2.5.6
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
- rebuilt
* Wed Jan 28 2004 Alexander Larsson <alexl@redhat.com> 2.5.3-1
- update to 2.5.3
* Wed Dec 24 2003 Tim Waugh <twaugh@redhat.com> 2.4.0-2
- Fix g_strdup_printf usage in info2html (bug #111200, patch from
Miloslav Trmac).
* Tue Sep 9 2003 Alexander Larsson <alexl@redhat.com> 2.4.0-1
- update to 2.4.0 (only code change is bugfix from me)
- Fixed the utf8 manpage patch (#91689)
* Wed Aug 27 2003 Alexander Larsson <alexl@redhat.com> 2.3.6-2
- info and manpages are utf8
* Wed Aug 20 2003 Alexander Larsson <alexl@redhat.com> 2.3.6-1
- Update for gnome 2.3
* Wed Jul 9 2003 Alexander Larsson <alexl@redhat.com> 2.2.3-1.E
- Rebuild
* Mon Jul 7 2003 Alexander Larsson <alexl@redhat.com> 2.2.3-1
- update to 2.2.3
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
- rebuilt
* Fri Feb 14 2003 Jeremy Katz <katzj@redhat.com> 2.2.0-3
- fix buildrequires
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
- rebuilt
* Tue Jan 21 2003 Alexander Larsson <alexl@redhat.com> 2.2.0-1
- Update to 2.2.0
- Add libglade dependency
* Tue Jan 7 2003 Alexander Larsson <alexl@redhat.com> 2.1.4-1
- Updated to 2.1.4
* Mon Nov 18 2002 Tim Powers <timp@redhat.com>
- rebuild for all arches
* Mon Aug 12 2002 Alexander Larsson <alexl@redhat.com>
- Remove the strange copyright on the start page. Fixes #69106
* Thu Aug 8 2002 Havoc Pennington <hp@redhat.com>
- 1.0.2
- include libexecdir stuff
* Sat Jul 27 2002 Havoc Pennington <hp@redhat.com>
- rebuild with new gail
- 1.0.1
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
- automated rebuild
* Tue Jun 18 2002 Havoc Pennington <hp@redhat.com>
- put all the binaries in the file list... why is this package so hard?
* Mon Jun 17 2002 Havoc Pennington <hp@redhat.com>
- put images in file list, this thing will be non-ugly yet
* Sun Jun 16 2002 Havoc Pennington <hp@redhat.com>
- 1.0
- use desktop-file-install to install/munge .desktop files
- put the sgml stuff in file list
* Fri Jun 07 2002 Havoc Pennington <hp@redhat.com>
- rebuild in different environment
* Wed Jun 5 2002 Havoc Pennington <hp@redhat.com>
- 0.10
* Sun May 26 2002 Tim Powers <timp@redhat.com>
- automated rebuild
* Tue May 21 2002 Havoc Pennington <hp@redhat.com>
- rebuild in different environment
* Tue May 21 2002 Havoc Pennington <hp@redhat.com>
- 0.8
* Fri May 3 2002 Havoc Pennington <hp@redhat.com>
- 0.6.1
* Fri Apr 19 2002 Havoc Pennington <hp@redhat.com>
- 0.6
* Wed Jan 30 2002 Owen Taylor <otaylor@redhat.com>
- Rebuild for new gnome2 libraries
* Mon Jan 28 2002 Alex Larsson <alexl@redhat.com>
- Initial build.