From 0116a53a637e561c2ab0f2966b5550d210beaa0e Mon Sep 17 00:00:00 2001 From: Ting-Wei Lan Date: Wed, 10 Dec 2014 23:42:27 +0800 Subject: epiphany-reduce-tab-width: epiphany 3.14.2-2 --- epiphany-reduce-tab-width/INSTALL.md | 3 + epiphany-reduce-tab-width/README.md | 2 + .../epiphany/epiphany-default-bookmarks.patch | 16 + .../epiphany/epiphany-disable-DRI3.patch | 27 + .../epiphany/epiphany-reduce-tab-width.patch | 28 + epiphany-reduce-tab-width/epiphany/epiphany.spec | 1165 ++++++++++++++++++++ 6 files changed, 1241 insertions(+) create mode 100644 epiphany-reduce-tab-width/INSTALL.md create mode 100644 epiphany-reduce-tab-width/README.md create mode 100644 epiphany-reduce-tab-width/epiphany/epiphany-default-bookmarks.patch create mode 100644 epiphany-reduce-tab-width/epiphany/epiphany-disable-DRI3.patch create mode 100644 epiphany-reduce-tab-width/epiphany/epiphany-reduce-tab-width.patch create mode 100644 epiphany-reduce-tab-width/epiphany/epiphany.spec (limited to 'epiphany-reduce-tab-width') diff --git a/epiphany-reduce-tab-width/INSTALL.md b/epiphany-reduce-tab-width/INSTALL.md new file mode 100644 index 0000000..e916b80 --- /dev/null +++ b/epiphany-reduce-tab-width/INSTALL.md @@ -0,0 +1,3 @@ +Use the command `sudo yum --disablerepo="*" +--enablerepo="lantw44-epiphany-reduce-tab-width" epiphany` to replace the +official packages with the patched packages. diff --git a/epiphany-reduce-tab-width/README.md b/epiphany-reduce-tab-width/README.md new file mode 100644 index 0000000..87059e4 --- /dev/null +++ b/epiphany-reduce-tab-width/README.md @@ -0,0 +1,2 @@ +Reduce the minimum tab width in the GNOME Web browser, so you can see more tabs +on the screen without scrolling. diff --git a/epiphany-reduce-tab-width/epiphany/epiphany-default-bookmarks.patch b/epiphany-reduce-tab-width/epiphany/epiphany-default-bookmarks.patch new file mode 100644 index 0000000..b04bbb7 --- /dev/null +++ b/epiphany-reduce-tab-width/epiphany/epiphany-default-bookmarks.patch @@ -0,0 +1,16 @@ +diff -up epiphany-3.11.92/src/bookmarks/ephy-bookmarks.c.default-bookmarks epiphany-3.11.92/src/bookmarks/ephy-bookmarks.c +--- epiphany-3.11.92/src/bookmarks/ephy-bookmarks.c.default-bookmarks 2014-02-04 10:55:03.000000000 -0500 ++++ epiphany-3.11.92/src/bookmarks/ephy-bookmarks.c 2014-03-20 12:50:04.377875262 -0400 +@@ -116,6 +116,12 @@ ephy_bookmarks_init_defaults (EphyBookma + { + int i; + ++ if (g_file_test ("/usr/share/bookmarks/default-bookmarks.html", G_FILE_TEST_EXISTS)) ++ { ++ ephy_bookmarks_import_mozilla (eb, "/usr/share/bookmarks/default-bookmarks.html"); ++ return; ++ } ++ + for (i = 0; i < G_N_ELEMENTS (default_topics); i++) + { + ephy_bookmarks_add_keyword (eb, _(default_topics[i])); diff --git a/epiphany-reduce-tab-width/epiphany/epiphany-disable-DRI3.patch b/epiphany-reduce-tab-width/epiphany/epiphany-disable-DRI3.patch new file mode 100644 index 0000000..385b646 --- /dev/null +++ b/epiphany-reduce-tab-width/epiphany/epiphany-disable-DRI3.patch @@ -0,0 +1,27 @@ +From 64454729e88d3cb5888657e16666c2f62619f6e6 Mon Sep 17 00:00:00 2001 +From: Michael Catanzaro +Date: Thu, 13 Nov 2014 10:57:36 -0600 +Subject: [PATCH] Disable DRI3 + +DRI3 is broken in Fedora, so we need this workaround. +--- + src/ephy-main.c | 3 +++ + 1 file changed, 3 insertions(+) + +diff --git a/src/ephy-main.c b/src/ephy-main.c +index 12704ea..2dd214c 100644 +--- a/src/ephy-main.c ++++ b/src/ephy-main.c +@@ -238,6 +238,9 @@ main (int argc, + int status; + EphyFileHelpersFlags flags; + ++ /* Fedora enables DRI3 which breaks many web sites, e.g. DuckDuckGo and YouTube. */ ++ g_setenv ("LIBGL_DRI3_DISABLE", "1", FALSE); ++ + #ifdef ENABLE_NLS + /* Initialize the i18n stuff */ + bindtextdomain (GETTEXT_PACKAGE, GNOMELOCALEDIR); +-- +1.9.3 + diff --git a/epiphany-reduce-tab-width/epiphany/epiphany-reduce-tab-width.patch b/epiphany-reduce-tab-width/epiphany/epiphany-reduce-tab-width.patch new file mode 100644 index 0000000..4c414c6 --- /dev/null +++ b/epiphany-reduce-tab-width/epiphany/epiphany-reduce-tab-width.patch @@ -0,0 +1,28 @@ +diff --git a/src/ephy-notebook.c b/src/ephy-notebook.c +index 2643522..6a9c1b1 100644 +--- a/src/ephy-notebook.c ++++ b/src/ephy-notebook.c +@@ -37,7 +37,7 @@ + #include + #include + +-#define TAB_WIDTH_N_CHARS 15 ++#define TAB_WIDTH_N_CHARS 5 + + #define AFTER_ALL_TABS -1 + #define NOT_IN_APP_WINDOWS -2 +@@ -561,12 +561,12 @@ build_tab_label (EphyNotebook *nb, EphyEmbed *embed) + GtkWidget *box; + EphyWebView *view; + +- box = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 4); ++ box = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0); + gtk_widget_show (box); + + /* set hbox spacing and label padding (see below) so that there's an + * equal amount of space around the label */ +- hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 6); ++ hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 2); + gtk_widget_show (hbox); + gtk_widget_set_halign (hbox, GTK_ALIGN_CENTER); + gtk_box_pack_start (GTK_BOX (box), hbox, TRUE, TRUE, 0); diff --git a/epiphany-reduce-tab-width/epiphany/epiphany.spec b/epiphany-reduce-tab-width/epiphany/epiphany.spec new file mode 100644 index 0000000..d372e12 --- /dev/null +++ b/epiphany-reduce-tab-width/epiphany/epiphany.spec @@ -0,0 +1,1165 @@ +Name: epiphany +Epoch: 1 +Version: 3.14.2 +Release: 2%{?dist} +Summary: Web browser for GNOME (Copr: lantw44/epiphany-reduce-tab-width) + +License: GPLv2+ and CC-BY-SA +URL: https://wiki.gnome.org/Apps/Web +Source0: http://download.gnome.org/sources/epiphany/3.14/%{name}-%{version}.tar.xz + +# Fedora bookmarks +Patch0: epiphany-default-bookmarks.patch +# DRI3 is currently only used in Fedora. It breaks DuckDuckGo, YouTube, et. al. +Patch1: epiphany-disable-DRI3.patch +# Reduce the minimum tab width +Patch2: epiphany-reduce-tab-width.patch + +BuildRequires: desktop-file-utils +BuildRequires: gcr-devel >= 3.5.5 +BuildRequires: glib2-devel >= 2.38.0 +BuildRequires: gtk3-devel >= 3.13.0 +BuildRequires: webkitgtk4-devel >= 2.5.2 +BuildRequires: libxml2-devel, libxslt-devel +BuildRequires: iso-codes-devel +BuildRequires: gnome-common +BuildRequires: gnome-desktop3-devel +BuildRequires: libsecret-devel >= 0.14 +BuildRequires: gettext-devel +BuildRequires: avahi-gobject-devel +BuildRequires: intltool +BuildRequires: itstool +BuildRequires: libnotify-devel +BuildRequires: libsoup-devel +BuildRequires: libwnck3-devel +BuildRequires: nss-devel +BuildRequires: gsettings-desktop-schemas-devel +BuildRequires: gobject-introspection-devel +BuildRequires: sqlite-devel + +Requires: %{name}-runtime%{?_isa} = %{epoch}:%{version}-%{release} + +Requires(post): desktop-file-utils +Requires(postun): desktop-file-utils + +# https://mail.gnome.org/archives/epiphany-list/2012-October/msg00006.html +Obsoletes: epiphany-extensions < 3.7.0 +Obsoletes: epiphany-devel < 1:3.7.90 + +%description +Copr: lantw44/epiphany-reduce-tab-width +Note: This is a modified package. Install it if you want to reduce the tab width +of the GNOME web browser. + +Epiphany is the web browser for the GNOME desktop. Its goal is to be +simple and easy to use. Epiphany ties together many GNOME components +in order to let you focus on the Web content, instead of the browser +application. + +%package runtime +Summary: Epiphany runtime suitable for web applications +Requires: gsettings-desktop-schemas +Requires: iso-codes + +%description runtime +This package provides a runtime for web applications without actually +installing the epiphany application itself. + +%prep +%setup -q +%patch0 -p1 -b .default-bookmarks +%patch1 -p1 -b .disable-dri3 +%patch2 -p1 -b .reduce-tab-width + +%build +%configure --with-distributor-name=Fedora +make %{?_smp_mflags} + +%install +make install DESTDIR=$RPM_BUILD_ROOT +desktop-file-validate $RPM_BUILD_ROOT%{_datadir}/applications/*.desktop +%find_lang %{name} --with-gnome + +%post +update-desktop-database %{_datadir}/applications &> /dev/null || : + +%postun +update-desktop-database %{_datadir}/applications &> /dev/null || : + +%postun runtime +if [ $1 -eq 0 ]; then + glib-compile-schemas %{_datadir}/glib-2.0/schemas &> /dev/null || : +fi + +%posttrans runtime +glib-compile-schemas %{_datadir}/glib-2.0/schemas &> /dev/null || : + +%files -f %{name}.lang +%{_libexecdir}/epiphany-search-provider +%{_datadir}/appdata/epiphany.appdata.xml +%{_datadir}/applications/epiphany.desktop +%dir %{_datadir}/gnome-shell/ +%dir %{_datadir}/gnome-shell/search-providers/ +%{_datadir}/gnome-shell/search-providers/epiphany-search-provider.ini +%{_datadir}/dbus-1/services/org.gnome.Epiphany.service + +%files runtime +%doc README NEWS COPYING COPYING.README AUTHORS +%{_datadir}/glib-2.0/schemas/org.gnome.epiphany.gschema.xml +%{_datadir}/glib-2.0/schemas/org.gnome.Epiphany.enums.xml +%{_datadir}/GConf/gsettings/epiphany.convert +%{_bindir}/epiphany +%{_bindir}/ephy-profile-migrator +%{_libdir}/epiphany/ +%{_datadir}/epiphany +%{_mandir}/man*/* + +%changelog +* Thu Nov 13 2014 Michael Catanzaro - 1:3.14.2-2 +- Add patch to disable DRI3 + +* Mon Nov 10 2014 Kalev Lember - 1:3.14.2-1 +- Update to 3.14.2 + +* Tue Oct 14 2014 Kalev Lember - 1:3.14.1-1 +- Update to 3.14.1 + +* Wed Sep 24 2014 Kalev Lember - 1:3.14.0-1 +- Update to 3.14.0 + +* Wed Sep 17 2014 Kalev Lember - 1:3.13.91-1 +- Update to 3.13.91 + +* Fri Aug 29 2014 Michael Catanzaro - 1:3.13.90-1 +- Update to 3.13.90 + +* Sun Aug 24 2014 Michael Catanzaro - 1:3.12.1-7.20140822gitb0af36e +- Restore desktop-file-utils requirements for update-desktop-database scriplets + +* Sat Aug 23 2014 Kalev Lember - 1:3.12.1-6.20140822gitb0af36e +- Add epoch to -runtime subpackage requires + +* Sat Aug 23 2014 Michael Catanzaro - 1:3.12.1-5.20140822gitb0af36e +- Spec file fixes pointed of by Kalev: + - Restore calls to update-desktop-database "cleaned up" in the last build + - Tighten -runtime subpackage requirement + - Move runtime dependencies to -runtime subpackage + - Call glib-compile-schemas in -runtime subpackage's scriptlets + +* Fri Aug 22 2014 Michael Catanzaro - 1:3.12.1-4.20140822gitb0af36e +- Update to git snapshot +- Fix license to GPLv2+ and CC-BY-SA, was GPLv2+ and GFDL prior to 3.10 +- Switch to webkitgtk4 +- Add epiphany-fix-adblock.patch +- Drop non-applied epiphany-homepage.patch, homepages were removed long ago +- Do not attempt (and fail!) to customize the user agent, this is undesired +- Spec file cleanups + +* Sat Aug 16 2014 Fedora Release Engineering - 1:3.12.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + +* Sat Jun 07 2014 Fedora Release Engineering - 1:3.12.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Thu May 15 2014 Kalev Lember - 1:3.12.1-1 +- Update to 3.12.1 + +* Wed May 07 2014 Kalev Lember - 1:3.12.0-3 +- Drop gnome-icon-theme dependency + +* Wed May 07 2014 Kalev Lember - 1:3.12.0-2 +- Backport a fix for a crash with some password forms + +* Tue Mar 25 2014 Richard Hughes - 1:3.12.0-1 +- Update to 3.12.0 + +* Thu Mar 20 2014 Matthias Clasen - 1:3.11.92-2 +- Make the default bookmarks patch more robust; no need + to crash just because fedora-bookmarks is not installed + +* Tue Mar 18 2014 Richard Hughes - 1:3.11.92-1 +- Update to 3.11.92 + +* Tue Mar 04 2014 Richard Hughes - 1:3.11.91-1 +- Update to 3.11.91 + +* Wed Feb 19 2014 Richard Hughes - 1:3.11.90-1 +- Update to 3.11.90 + +* Wed Feb 19 2014 Richard Hughes - 1:3.11.4-2 +- Rebuilt for gnome-desktop soname bump + +* Fri Feb 07 2014 Kalev Lember - 1:3.11.4-1 +- Update to 3.11.4 + +* Mon Feb 03 2014 Richard Hughes - 1:3.11.3-2 +- Split out a -runtime subpackage to avoid making the gnome-software application + depend on the epiphany application. + +* Tue Jan 14 2014 Richard Hughes - 1:3.11.3-1 +- Update to 3.11.3 + +* Wed Jan 08 2014 Richard Hughes - 1:3.11.2-1 +- Update to 3.11.2 + +* Tue Nov 19 2013 Richard Hughes - 1:3.11.1-1 +- Update to 3.11.1 + +* Mon Nov 18 2013 Richard Hughes - 1:3.10.2-1 +- Update to 3.10.2 + +* Mon Oct 28 2013 Richard Hughes - 1:3.10.1-1 +- Update to 3.10.1 + +* Wed Sep 25 2013 Kalev Lember - 1:3.10.0-1 +- Update to 3.10.0 + +* Tue Sep 03 2013 Kalev Lember - 1:3.9.90-1 +- Update to 3.9.90 +- Install the appdata and gnome-shell search provider + +* Thu Aug 15 2013 Kalev Lember - 1:3.9.3-1 +- Update to 3.9.3 + +* Sat Aug 03 2013 Fedora Release Engineering - 1:3.9.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + +* Fri May 31 2013 Debarshi Ray - 1:3.9.2-1 +- Update to 3.9.2 + +* Wed Apr 17 2013 Kalev Lember - 1:3.8.1-1 +- Update to 3.8.1 + +* Wed Mar 27 2013 Kalev Lember - 1:3.8.0-2 +- Rebuilt for libwebkit2gtk soname bump + +* Tue Mar 26 2013 Richard Hughes - 1:3.8.0-1 +- Update to 3.8.0 + +* Wed Mar 20 2013 Richard Hughes - 1:3.7.92-1 +- Update to 3.7.92 + +* Mon Mar 11 2013 Debarshi Ray - 1:3.7.91-1 +- Replace the BuildRequires on libgnome-keyring-devel with libsecret-devel. + +* Fri Mar 8 2013 Matthias Clasen - 1:3.7.91-1 +- Update to 3.7.91 + +* Fri Feb 22 2013 Kalev Lember - 1:3.7.90-2 +- Get rid of MOZ_OPT_FLAGS handling + +* Fri Feb 22 2013 Kalev Lember - 1:3.7.90-1 +- Update to 3.7.90 +- Remove and obsolete the -devel subpackage + +* Wed Feb 20 2013 Kalev Lember - 1:3.7.5-2 +- Rebuilt for libgnome-desktop soname bump + +* Thu Feb 07 2013 Richard Hughes - 1:3.7.5-1 +- Update to 3.7.5 + +* Wed Feb 06 2013 Kalev Lember - 1:3.7.3-2 +- Rebuilt for libgcr soname bump + +* Fri Dec 21 2012 Kalev Lember - 1:3.7.3-1 +- Update to 3.7.3 + +* Fri Nov 09 2012 Kalev Lember - 1:3.7.1-1 +- Update to 3.7.1 +- Adjust for the extension support removal +- Obsolete epiphany-extensions: the most popular extensions will get moved + into Epiphany proper +- Clean up unneeded BRs and -devel package requires + +* Wed Oct 17 2012 Kalev Lember - 1:3.6.1-2 +- Remove last traces of gconf + +* Tue Oct 16 2012 Kalev Lember - 1:3.6.1-1 +- Update to 3.6.1 + +* Thu Oct 4 2012 Matthias Clasen - 1:3.6.0-2 +- Update to 3.6.0 + +* Wed Sep 05 2012 Kalev Lember - 1:3.5.91.1-1 +- Update to 3.5.91.1 + +* Tue Aug 28 2012 Richard Hughes - 1:3.5.90-1 +- Update to 3.5.90 + +* Tue Aug 07 2012 Richard Hughes - 1:3.5.5-1 +- Update to 3.5.5 + +* Fri Jul 27 2012 Fedora Release Engineering - 1:3.5.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Wed Jul 18 2012 Kalev Lember - 1:3.5.4-1 +- Update to 3.5.4 + +* Tue Jun 26 2012 Richard Hughes - 1:3.5.3-1 +- Update to 3.5.3 + +* Sun May 06 2012 Kalev Lember - 3.5.1-1 +- Update to 3.5.1 + +* Wed Apr 25 2012 Peter Robinson - 1:3.4.1-2 +- Add dependency on gnome-icon-theme-symbolic as there's hardcoded references to icons there + +* Thu Apr 19 2012 Kalev Lember - 1:3.4.1-1 +- Update to 3.4.1 +- Silence the rpm scriptlet output + +* Fri Mar 30 2012 Debarshi Ray - 1:3.4.0.1-2 +- Update %%{major_version}. +- Resolves #808401 + +* Tue Mar 27 2012 Matthias Clasen - 1:3.4.0.1-1 +- Update to 3.4.0.1 + +* Tue Mar 27 2012 Richard Hughes - 1:3.4.0-1 +- Update to 3.4.0 + +* Wed Mar 21 2012 Kalev Lember - 3.3.92-1 +- Update to 3.3.92 + +* Fri Mar 9 2012 Matthias Clasen - 3.3.91-1 +- Update to 3.3.91 + +* Sun Feb 26 2012 Matthias Clasen - 3.3.90-1 +- Update to 3.3.90 + +* Tue Feb 7 2012 Matthias Clasen - 3.3.5-1 +- Update to 3.3.5 + +* Thu Jan 19 2012 Matthias Clasen - 3.3.4.1-1 +- Update to 3.3.4.1 + +* Wed Jan 18 2012 Matthias Clasen - 3.3.4-1 +- Update to 3.3.4 + +* Fri Jan 13 2012 Fedora Release Engineering - 1:3.3.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Tue Dec 20 2011 Matthias Clasen - 3.3.3-1 +- Update to 3.3.3 +- Drop homepage patch; the setting no longer exists + +* Wed Nov 30 2011 Bastien Nocera 3.3.2-2 +- Remove obsolete BRs, there's no Python support anymore + +* Thu Nov 24 2011 Tomas Bzatek - 1:3.3.2-1 +- Update to 3.3.2 + +* Wed Oct 26 2011 Fedora Release Engineering - 1:3.2.1-2 +- Rebuilt for glibc bug#747377 + +* Wed Oct 19 2011 Matthias Clasen - 1:3.2.1-1 +- Update to 3.2.1 + +* Tue Sep 27 2011 Ray - 1:3.2.0-1 +- Update to 3.2.0 + +* Tue Sep 27 2011 Ray - 1:3.1.92-1 +- Update to 3.1.92 + +* Wed Sep 7 2011 Matthias Clasen 3.1.91.1-1 +- Update to 3.1.91.1 + +* Wed Sep 07 2011 Kalev Lember 3.1.91-1 +- Update to 3.1.91 + +* Wed Aug 31 2011 Kalev Lember 3.1.90-1 +- Update to 3.1.90 + +* Thu Aug 18 2011 Matthias Clasen 3.1.5-1 +- Update to 3.1.5 + +* Tue Jul 05 2011 Bastien Nocera 3.1.3-1 +- Update to 3.1.3 + +* Fri Jun 17 2011 Tomas Bzatek - 3.1.2-1 +- Update to 3.1.2 + +* Thu May 12 2011 Christopher Aillon - 1:3.0.3-1 +- Update to 3.0.3 + +* Sun May 8 2011 Christopher Aillon - 1:3.0.2-1 +- Update to 3.0.2 + +* Tue Apr 26 2011 Matthias Clasen - 1:3.0.1-1 +- Update to 3.0.1 + +* Tue Apr 5 2011 Christopher Aillon 1:3.0.0-2 +- devel package no longer needs gnome-desktop-devel + +* Mon Apr 4 2011 Christopher Aillon 1:3.0.0-1 +- Update to 3.0.0 + +* Thu Mar 24 2011 Dan Williams 1:2.91.92-2 +- Rebuild for NM 0.9 + +* Tue Mar 22 2011 Matthias Clasen 1:2.91.92-1 +- Update to 2.91.92 + +* Sat Mar 12 2011 Christopher Aillon 1:2.91.91.1-1 +- Update to 2.91.91.1 + +* Tue Mar 8 2011 Matthias Clasen 1:2.91.91-1 +- Update to 2.91.91 + +* Tue Feb 22 2011 Matthias Clasen 1:2.91.90-1 +- Update to 2.91.90 + +* Fri Feb 11 2011 Matthias Clasen 1:2.91.6-4 +- Rebuild against newer gtk + +* Tue Feb 08 2011 Fedora Release Engineering - 1:2.91.6-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Wed Feb 2 2011 Christopher Aillon - 1:2.91.6-2 +- Rebuild + +* Wed Feb 2 2011 Matthias Clasen - 1:2.91.6-1 +- Update to 2.91.6 + +* Tue Jan 11 2011 Matthias Clasen - 1:2.91.5-1 +- Update to 2.91.5 + +* Sun Jan 9 2011 Matthias Clasen - 1:2.91.4.1-1 +- Update to 2.91.4.1 + +* Fri Dec 3 2010 Matthias Clasen - 1:2.91.3-1 +- Update to 2.91.3 + +* Thu Nov 11 2010 Matthias Clasen - 1:2.91.2.1-1 +- Update to 2.91.2.1 +- Remove space-saving hacks + +* Thu Sep 23 2010 Matthias Clasen - 1:2.31.5-4 +- Rebuild with new webkitgtk3 + +* Mon Aug 23 2010 Matthias Clasen - 1:2.31.5-3 +- Co-own /usr/share/gtk-doc + +* Wed Aug 11 2010 Matthias Clasen - 1:2.31.5-2 +- Add an epoch to stay ahead of F14 + +* Wed Jul 14 2010 Matthias Clasen - 2.31.5-1 +- Update to 2.31.5 + +* Mon Jul 12 2010 Colin Walters - 2.31.3-3 +- Rebuild against new gobject-introspection + +* Fri Jul 2 2010 Matthias Clasen 2.31.3-2 +- Rebuild against new webkitgtk + +* Tue Jun 8 2010 Matthias Clasen 2.31.3-1 +- Update to 2.31.3 + +* Fri May 28 2010 Matthias Clasen 2.31.2-1 +- Update to 2.31.2 + +* Sun Apr 18 2010 Matthias Clasen 2.30.2-1 +- Update to 2.30.2 +- Use GConf macros + +* Mon Mar 29 2010 Matthias Clasen 2.30.0-1 +- Update to 2.30.0 + +* Tue Mar 09 2010 Bastien Nocera 2.29.92-1 +- Update to 2.29.92 + +* Mon Feb 22 2010 Matthias Clasen 2.29.91-1 +- Update to 2.29.91 + +* Wed Feb 10 2010 Bastien Nocera 2.29.90.1-1 +- Update to 2.29.90.1 + +* Tue Jan 26 2010 Matthias Clasen 2.29.6-1 +- Update to 2.29.6 + +* Sun Jan 17 2010 Matthias Clasen 2.29.5-1 +- Update to 2.29.5 + +* Wed Dec 09 2009 Bastien Nocera 2.29.3-2 +- Remove gnome-vfs2-devel dependency for the devel package + +* Tue Dec 01 2009 Bastien Nocera 2.29.3-1 +- Update to 2.29.3 + +* Wed Sep 23 2009 Matthias Clasen - 2.28.0-1 +- Update to 2.28.0 + +* Mon Sep 14 2009 Bastien Nocera 2.27.92-2 +- Call nspluginwrapper's config tool if available + +* Tue Sep 8 2009 Matthias Clasen - 2.27.92-1 +- Update to 2.27.92 + +* Tue Aug 25 2009 Matthias Clasen - 2.27.91-1 +- Update to 2.27.91 + +* Tue Aug 11 2009 Matthias Clasen - 2.27.90-1 +- Update to 2.27.90 + +* Mon Aug 10 2009 Matthias Clasen - 2.27.5-2 +- Fix a mnemonic mishap + +* Tue Jul 28 2009 Matthias Clasen - 2.27.5-1 +- Update to 2.27.5 + +* Fri Jul 24 2009 Fedora Release Engineering - 2.27.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Mon Jul 13 2009 Matthias Clasen - 2.27.4-1 +- Update to 2.27.4 + +* Tue Jun 16 2009 Matthias Clasen - 2.27.3-1 +- Update to 2.27.3 + +* Mon Jun 1 2009 Matthias Clasen - 2.27.2-1 +- Update to 2.27.2 +- Build against webkit instead of gecko + +* Fri May 22 2009 Michael Schwendt - 2.26.1-4 +- Include /usr/include/epiphany directory (#473651). + +* Mon Apr 27 2009 Christopher Aillon - 2.26.1-3 +- Rebuild against newer gecko + +* Mon Apr 27 2009 Matthias Clasen - 2.26.1-2 +- Don't drop schemas translations from po files + +* Mon Apr 13 2009 Matthias Clasen - 2.26.1-1 +- Update to 2.26.1 +- See http://download.gnome.org/sources/epiphany/2.26/epiphany-2.26.1.changes + +* Thu Mar 19 2009 Jan Horak - 2.26.0-2 +- Rebuild against newer gecko +- Fix the missing headers by patch + +* Tue Mar 17 2009 Matthias Clasen - 2.26.0-1 +- Update to 2.26.0 + +* Thu Feb 26 2009 Matthias Clasen - 2.25.91-3 +- Fix the build + +* Tue Feb 24 2009 Fedora Release Engineering - 2.25.91-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Wed Feb 18 2009 Matthias Clasen - 2.25.91-1 +- Update to 2.25.91 + +* Wed Feb 4 2009 Christopher Aillon 2.25.5-1 +- Update to 2.25.5 + +* Wed Jan 14 2009 Matěj Cepl 2.24.2.1-5 +- Make epiphany own directories for plugins and extensions + (#479921). + +* Tue Jan 06 2009 Christopher Aillon - 2.24.2.1-4 +- Rebuild against newer gecko + +* Tue Dec 23 2008 Matthias Clasen - 2.24.2.1-3 +- Rebuild against newer gecko + +* Wed Dec 17 2008 Matthias Clasen - 2.24.2.1-2 +- Rebuild against new gnome-desktop + +* Fri Dec 5 2008 Matthias Clasen - 2.24.2.1-1 +- Update to 2.24.2.1 + +* Sun Nov 30 2008 Ignacio Vazquez-Abrams - 2.24.1-5 +- Rebuild for Python 2.6 + +* Fri Nov 21 2008 Matthias Clasen - 2.24.1-4 +- Tweak description + +* Thu Nov 13 2008 Matthias Clasen - 2.24.1-3 +- Rebuild against newer gecko + +* Thu Nov 13 2008 Matthias Clasen - 2.24.1-2 +- Rebuild + +* Mon Oct 20 2008 Matthias Clasen - 2.24.1-1 +- Update to 2.24.1 + +* Thu Oct 9 2008 Matthias Clasen - 2.24.0.1-4 +- Save some more space + +* Thu Sep 25 2008 Matthias Clasen - 2.24.0.1-3 +- Save some space + +* Tue Sep 23 2008 Matthias Clasen - 2.24.0.1-2 +- Update to 2.24.0.1 + +* Tue Sep 23 2008 Matthias Clasen - 2.24.0-1 +- Update to 2.24.0 + +* Tue Sep 2 2008 Matthias Clasen - 2.23.91-1 +- Update to 2.23.91 + +* Wed Jul 23 2008 Christopher Aillon - 2.23.5-2 +- Rebuild against newer gecko + +* Tue Jul 22 2008 Matthias Clasen - 2.23.5-1 +- Update to 2.23.5 + +* Thu Jul 17 2008 Tom "spot" Callaway 2.22.2-2 +- fix license tag + +* Wed May 28 2008 Matthias Clasen - 2.22.2-1 +- Update to 2.22.2 + +* Mon Apr 7 2008 Christopher Aillon - 2.22.1.1-1 +- Update to 2.22.1.1 + +* Thu Apr 3 2008 Christopher Aillon - 2.22.0-4 +- Update the Source URL + +* Mon Mar 31 2008 Christopher Aillon - 2.22.0-3 +- Initialize plugins before we startup XPCOM, thanks to Bastien Nocera + +* Tue Mar 18 2008 Christopher Aillon - 2.22.0-2 +- Update the homepage + +* Mon Mar 10 2008 Christopher Aillon - 2.22.0-1 +- Update to 2.22.0 + +* Fri Mar 7 2008 Christopher Aillon - 2.21.92-3 +- Update the xulrunner patch and tweak the useragent + +* Tue Feb 26 2008 Christopher Aillon - 2.21.92-2 +- Stop shipping LowContrastLargePrint icons + +* Tue Feb 26 2008 Christopher Aillon - 2.21.92-1 +- Update to 2.21.92 +- Update the xulrunner patch +- BR: avahi-gobject-devel +- Fix the file list + +* Wed Feb 6 2008 Matthias Clasen - 2.21.90-2 +- Fix some cosmetic packaging issues + +* Tue Jan 29 2008 Matthias Clasen - 2.21.90-1 +- Update to 2.21.90 + +* Sat Jan 12 2008 Christopher Aillon - 2.21.5-0.1.svn7856 +- Update to newer svn, and update the xulrunner 1.9 patch + +* Wed Jan 2 2008 Christopher Aillon - 2.21.5-0.1.svn7844 +- Update to svn to build against xulrunner 1.9 + +* Mon Dec 17 2007 Christopher Aillon - 2.21.4-1 +- Update to 2.21.4 + +* Thu Nov 29 2007 Martin Stransky +- Polished the wrapper patch + +* Tue Nov 27 2007 Matthias Clasen - 2.20.2-1 +- Update to 2.20.2 + +* Tue Nov 27 2007 Christopher Aillon - 2.20.1-6 +- Rebuild against newer gecko + +* Mon Nov 19 2007 Martin Stransky - 2.20.1-5 +- Updated wrapper patch + +* Sat Nov 10 2007 Matthias Clasen - 2.20.1-4 +- Rebuild against newer gecko + +* Tue Oct 23 2007 Matthias Clasen - 2.20.1-3 +- Rebuild against new dbus-glib + +* Tue Oct 16 2007 - Bastien Nocera - 2.20.1-2 +- Add patch to allow epiphany to use the plugins wrapped by + nspluginwrapper (#334751) + +* Tue Oct 16 2007 Matthias Clasen - 2.20.1-1 +- Update to 2.20.1 + +* Mon Oct 15 2007 Matthias Clasen - 2.20.0-2 +- Fix network status monitoring with new NM (#332771) + +* Mon Sep 17 2007 Matthias Clasen - 2.20.0-1 +- Update to 2.20.0 + +* Tue Sep 4 2007 Matthias Clasen - 2.19.91-1 +- Update to 2.19.91 + +* Fri Aug 24 2007 Adam Jackson - 2.19.90-2 +- Rebuild for build ID + +* Mon Aug 13 2007 Matthias Clasen - 2.19.90-1 +- Update to 2.19.90 + +* Wed Aug 8 2007 Christopher Aillon - 2.19.6-3 +- Rebuild against newer gecko + +* Mon Aug 6 2007 Matthias Clasen - 2.19.6-2 +- Update license field +- Use %%find_lang for help files, too + +* Mon Jul 30 2007 Matthias Clasen - 2.19.6-1 +- Update to 2.19.6 + +* Wed Jul 25 2007 Jesse Keating - 2.19.5-4 +- Rebuild for RH #249435 + +* Mon Jul 23 2007 Matthias Clasen - 2.19.5-3 +- Port to new GTK+ tooltips API + +* Fri Jul 20 2007 Kai Engert - 2.19.5-2 +- Rebuild against newer gecko + +* Tue Jul 10 2007 Matthias Clasen 2.19.5-1 +- Update to 2.19.5 + +* Fri May 25 2007 Christopher Aillon 2.19.2-2 +- Rebuild against newer gecko + +* Mon May 21 2007 Matthias Clasen 2.19.2-1 +- Update to 2.19.2 + +* Sun Apr 15 2007 Christopher Aillon 2.18.1-2 +- Use the system default bookmarks +- Remove no longer needed autotools BRs + +* Tue Apr 10 2007 Christopher Aillon 2.18.1-1 +- Update to 2.18.1 + +* Fri Mar 23 2007 Christopher Aillon 2.18.0-3 +- Rebuild against newer gecko + +* Fri Mar 16 2007 Bastien Nocera 2.18.0-2 +- Have ephy pick up on the 64-bit plugins (#204547) + +* Tue Feb 27 2007 Matthias Clasen 2.17.92-1 +- Update to 2.17.92 + +* Tue Feb 13 2007 Matthias Clasen 2.17.91-1 +- Update to 2.17.91 + +* Tue Jan 23 2007 Matthias Clasen 2.17.90-1 +- Update to 2.17.90 + +* Thu Jan 11 2007 Matthias Clasen 2.17.5-1 +- Update to 2.17.5 + +* Thu Dec 21 2006 Christopher Aillon 2.17.4-2 +- Rebuild against newer gecko + +* Tue Dec 19 2006 Matthias Clasen - 2.17.4-1 +- Update to 2.17.4 + +* Thu Dec 7 2006 Matthias Clasen - 2.17.3-3 +- Fix Requires in -devel (#218863) + +* Thu Dec 7 2006 Jeremy Katz - 2.17.3-2 +- rebuild for python 2.5 + +* Tue Dec 5 2006 Matthias Clasen - 2.17.3-1 +- Update to 2.17.3 + +* Mon Nov 6 2006 Matthias Clasen - 2.17.2-1 +- Update to 2.17.2 + +* Fri Oct 27 2006 Christopher Aillon - 2.16.1-2 +- Rebuild against newer gecko + +* Sat Oct 21 2006 Matthias Clasen - 2.16.1-1 +- Update to 2.16.1 + +* Thu Oct 12 2006 Christopher Aillon - 2.16.0-4.fc6 +- Remove console spew about pango; it's no longer relevant. + +* Thu Oct 12 2006 Christopher Aillon - 2.16.0-3.fc6 +- Update requires to the virtual gecko version instead of a specific app + +* Thu Sep 14 2006 Christopher Aillon - 2.16.0-2.fc6 +- Rebuild + +* Sun Sep 3 2006 Matthias Clasen - 2.16.0-1.fc6 +- Update to 2.16.0 + +* Wed Aug 30 2006 Matthias Clasen - 2.15.92-3.fc6 +- Install the fonts and pango schemas (#204602) + +* Tue Aug 29 2006 Matthias Clasen - 2.15.92-2.fc6 +- Use Pango by default +- Add a BR for perl-XML-Parser + +* Mon Aug 21 2006 Matthias Clasen - 2.15.92-1.fc6 +- Update to 2.15.92 + +* Sun Aug 13 2006 Matthias Clasen - 2.15.91-2.fc6 +- Rebuild + +* Sun Aug 13 2006 Matthias Clasen - 2.15.91-1.fc6 +- Update to 2.15.91 + +* Tue Aug 8 2006 Jesse Keating - 2.15.4-2 +- bump + +* Sat Jul 29 2006 Matthias Clasen - 2.15.4-1 +- Update to 2.15.4 +- Rebuild against firefox-devel + +* Tue Jul 18 2006 Matthias Clasen - 2.15.1-2 +- Go back to 2.15.1, since gecko 1.8 is still missing + +* Wed Jul 12 2006 Jesse Keating - 2.15.2-1.1 +- rebuild + +* Wed May 17 2006 Matthias Clasen - 2.15.2-1 +- Update to 2.15.2 + +* Wed May 10 2006 Matthias Clasen - 2.15.1-1 +- Update to 2.15.1 + +* Thu May 4 2006 Dan Williams - 2.14.1-3 +- Rebuild for a mozilla update + +* Mon Apr 10 2006 Matthias Clasen - 2.14.1-2 +- Update to 2.14.1 + +* Sun Mar 12 2006 Ray Strode - 2.14.0-1 +- Update to 2.14.0 + +* Mon Feb 27 2006 Matthias Clasen - 1.9.8-1 +- Update to 1.9.8 + +* Mon Feb 13 2006 Christopher Aillon - 1.9.7-1 +- Update to 1.9.7 + +* Mon Feb 13 2006 Jesse Keating - 1.9.6-3.1 +- rebump for build order issues during double-long bump + +* Sat Feb 11 2006 Matthias Clasen - 1.9.6-3 +- turn on zeroconf and NetworkManager support + +* Tue Feb 07 2006 Jesse Keating - 1.9.6-2.1 +- rebuilt for new gcc4.1 snapshot and glibc changes + +* Sun Feb 5 2006 Matthias Clasen 1.9.6-2 +- Update requires + +* Tue Jan 31 2006 Matthias Clasen 1.9.6-1 +- Update to 1.9.6 + +* Fri Jan 20 2006 Matthias Clasen 1.9.5.1-1 +- Update to 1.9.5.1 + +* Mon Jan 2 2006 Christopher Aillon 1.9.4-1 +- Update to 1.9.4 + +* Thu Dec 15 2005 Matthias Clasen 1.9.3.1-1 +- Update to 1.9.3.1 + +* Fri Dec 09 2005 Jesse Keating +- rebuilt + +* Fri Dec 2 2005 Matthias Clasen - 1.9.2-1 +- Update to 1.9.2 +- Package plugins + +* Tue Oct 18 2005 Christopher Aillon - 1.8.2-3 +- Build on ppc64 + +* Tue Oct 18 2005 Christopher Aillon - 1.8.2-2 +- Rebuild + +* Thu Oct 6 2005 Christopher Aillon - 1.8.2-1 +- Update to 1.8.2 + +* Mon Sep 5 2005 Christopher Aillon - 1.8.0-1 +- Update to 1.8.0 + +* Mon Aug 29 2005 Christopher Aillon - 1.7.6-1 +- Update to 1.7.6 + +* Tue Aug 23 2005 Christopher Aillon - 1.7.5-1 +- Update to 1.7.5 + +* Mon Aug 15 2005 Christopher Aillon - 1.7.4-2 +- Rebuild + +* Tue Aug 9 2005 Christopher Aillon - 1.7.4-1 +- Update to 1.7.4 + +* Sat Jul 30 2005 Christopher Aillon - 1.7.3-2 +- Rebuild against new mozilla + +* Tue Jul 26 2005 Christopher Aillon - 1.7.3-1 +- Update to 1.7.3 + +* Tue Jul 19 2005 Christopher Aillon - 1.7.2-2 +- Rebuild against new mozilla + +* Mon Jul 11 2005 Christopher Aillon - 1.7.2-1 +- Update to 1.7.2 + +* Tue Jul 5 2005 Christopher Aillon - 1.7.1-3 +- Add the packages needed for building against -devel to its Requires: +- Add builds for ia64 s390(x) + +* Thu Jun 16 2005 Christopher Aillon - 1.7.1-2 +- Specfile cleanup +- Make the devel package depend on the main package + +* Fri Jun 10 2005 Christopher Aillon - 1.7.1-1 +- Update to 1.7.1 + +* Fri May 13 2005 Christopher Aillon - 1.6.3-1 +- Update to 1.6.3 + +* Fri May 13 2005 Christopher Aillon - 1.6.1-3 +- Depend on mozilla 1.7.8 + +* Sat Apr 16 2005 Christopher Aillon - 1.6.1-2 +- Depend on mozilla 1.7.7 + +* Wed Apr 6 2005 Elliot Lee - 1.6.1-1 +- Update to 1.6.1 + +* Wed Mar 9 2005 Christopher Aillon - 1.5.8-3 +- Depend on mozilla 1.7.6 + +* Sat Mar 5 2005 Christopher Aillon - 1.5.8-2 +- Rebuild + +* Thu Mar 3 2005 Marco Pesenti Gritti - 1.5.8-1 +- Update to 1.5.8 + +* Mon Feb 28 2005 Matthias Clasen - 1.5.7-1 +- Update to 1.5.7 + +* Wed Feb 9 2005 Matthias Clasen - 1.5.6-1 +- Update to 1.5.6 + +* Wed Feb 2 2005 Matthias Clasen - 1.5.5-1 +- Update to 1.5.5 + +* Mon Dec 20 2004 Marco Pesenti Gritti - 1.4.7-2 +- Add the manual to the package + +* Mon Dec 20 2004 Marco Pesenti Gritti - 1.4.7-1 +- Update to 1.4.7 + +* Mon Dec 20 2004 Marco Pesenti Gritti - 1.4.6-2 +- Depend on mozilla 1.7.5 + +* Mon Dec 20 2004 Marco Pesenti Gritti - 1.4.6-1 +- Update to 1.4.6 + +* Tue Nov 9 2004 Marco Pesenti Gritti - 1.4.4-6 +- Add docs + +* Thu Nov 4 2004 Marco Pesenti Gritti - 1.4.4-5 +- Update the desktop files database. Fix #135566 + +* Mon Oct 18 2004 Christopher Aillon 1.4.4-4 +- Put back ppc + +* Tue Oct 12 2004 Marco Pesenti Gritti - 1.4.4-3 +- Remove generic name patch, epiphany is no more default + +* Tue Oct 12 2004 Marco Pesenti Gritti - 1.4.4-2 +- Disable direct handling of downloads by external applications + +* Mon Oct 11 2004 Marco Pesenti Gritti - 1.4.4-1 +- Add a devel package for extensions development + +* Mon Oct 11 2004 Marco Pesenti Gritti - 1.4.4-0 +- Update to 1.4.4 + +* Thu Oct 07 2004 Marco Pesenti Gritti - 1.4.3-0 +- Remove mozilla 1.7.3 compatibility patch +- Do not disable the nautilus view, it has been removed upstream + +* Sun Sep 26 2004 Christopher Blizzard - 1.4.0-0.3.6 +- Don't require a specific mozilla rpm release, only the version + +* Fri Sep 24 2004 Christopher Blizzard - 1.4.0-0.3.5 +- Change .desktop file name to "Web Browser" instead of "Epiphany..." + +* Fri Sep 24 2004 Christopher Blizzard - 1.4.0-0.3.4 +- Include epiphany's default .desktop file - don't remove it. + +* Fri Sep 24 2004 Christopher Blizzard - 1.4.0-0.3.3 +- Make sure to include the epoch for the mozilla version. + +* Fri Sep 24 2004 Christopher Blizzard - 1.4.0-0.3.2 +- Add patch to get this epiphany building with moz 1.7.3. + +* Fri Sep 24 2004 Christopher Blizzard - 1.4.0-0.3.1 +- Don't query for the mozilla version, use an explicit version number + +* Fri Sep 24 2004 Christopher Blizzard - 1.4.0-0.3.0 +- Update to 1.4.0 + +* Fri Sep 24 2004 Mark McLoughlin - 1.3.8-0.3.3 +- Remove the bookmarks editor from the menu (bug #132549) + +* Wed Sep 22 2004 Christopher Aillon 1.3.8-0.3.2 +- Rebuilt to pick up new mozilla changes +- Drop ppc from the build since mozilla doesn't build there anymore. + +* Fri Sep 03 2004 Christopher Blizzard +- Bump release and rebuild. + +* Wed Sep 01 2004 Christopher Blizzard +- Update to 1.3.8 + +* Tue Aug 17 2004 Christopher Blizzard +- Update to 1.3.5. +- Remove epiphany-bin - it's not there anymore. +- Change to .bz2 source tarball. + +* Mon Aug 09 2004 Christopher Aillon +- Rebuild + +* Tue Aug 03 2004 Christopher Blizzard +- Update to 1.2.7 +- Disable nautilus view since it's broken + +* Wed Jun 23 2004 Christopher Blizzard +- Update to 1.2.6 + +* Tue Jun 22 2004 Christopher Blizzard +- Update to 1.2.5 + +* Tue Jun 15 2004 Elliot Lee +- rebuilt + +* Wed May 05 2004 Warren Togami - 1.2.4-1 +- update to 1.2.4 stable + +* Wed Mar 10 2004 Christopher Blizzard - 1.1.12-0 +- Update to 1.1.12 +- remove jrb patch for file chooser api changes since it appears + to have been merged upstream + +* Fri Mar 5 2004 Jeremy Katz - 1.1.10-2 +- rebuild + +* Thu Mar 4 2004 Jeremy Katz - 1.1.10-1 +- 1.1.10 +- add patch from jrb for file-chooser api changes + +* Tue Mar 02 2004 Elliot Lee +- rebuilt + +* Sun Feb 22 2004 Jeremy Katz 1.1.9-1 +- update to 1.1.9 +- reenable nautilus view + +* Thu Feb 19 2004 Christopher Blizzard 1.0.7-3 +- disable the nautilus view. doesn't seem to work anymore. + +* Fri Feb 13 2004 Elliot Lee +- rebuilt + +* Tue Jan 20 2004 Jeremy Katz 1.0.7-1 +- 1.0.7 + +* Tue Dec 02 2003 Christopher Blizzard 1.0.4-3 +- Add a BuildRequires for nautilus so that the view is built properly. + +* Mon Oct 27 2003 Jakub Jelinek 1.0.4-2 +- link epiphany-bin with -Wl,-rpath,/usr/lib/mozilla-1.4.1,--enable-new-dtags + to make it prelinkable + +* Fri Oct 24 2003 Jeremy Katz 1.0.4-1 +- 1.0.4 + +* Fri Oct 24 2003 Christopher Blizzard 1.0.1-3 +- Enable the nautilus view + +* Fri Oct 10 2003 Christopher Blizzard 1.0.1-2 +- Add patch to set the home page to the release notes + +* Mon Oct 6 2003 Jeremy Katz 1.0.1-1 +- 1.0.1 + +* Fri Sep 26 2003 Chris Blizzard 1.0-2 +- Updates for Mozilla 1.4.1 + +* Tue Sep 9 2003 Jeremy Katz 1.0-1 +- 1.0 + +* Wed Sep 3 2003 Jeremy Katz 0.9.3-1 +- 0.9.3 + +* Mon Aug 25 2003 Jeremy Katz 0.9.2-1 +- 0.9.2 + +* Mon Aug 11 2003 Jeremy Katz 0.8.4-1 +- 0.8.4 + +* Sun Aug 10 2003 Jeremy Katz 0.8.3-1 +- 0.8.3 + +* Sun Aug 3 2003 Jeremy Katz 0.8.2-1 +- 0.8.2 + +* Fri Jul 25 2003 Christopher Blizzard 0.8.0-2 +- Add ppc to the list of arches. + +* Tue Jul 15 2003 Matt Wilson 0.8.0-1 +- 0.8.0 + +* Fri Jul 11 2003 Christopher Blizzard 0.7.3-3 +- be sure to include the mozilla rpm in the build deps since it's + queried + +* Tue Jul 01 2003 Elliot Lee 0.7.3-2 +- Fix mozilla dep for new epoch + +* Sun Jun 29 2003 Jeremy Katz 0.7.3-1 +- 0.7.3 + +* Sat Jun 28 2003 Jeremy Katz 0.7.2-1 +- update to 0.7.2 + +* Sun Jun 8 2003 Jeremy Katz 0.7.0-4 +- fix crash on startup in egg-menu-merge on x86_64 + +* Sat Jun 7 2003 Jeremy Katz 0.7.0-3 +- fix build on x86_64 + +* Sat Jun 7 2003 Jeremy Katz 0.7.0-2 +- fix build with gcc 3.3 + +* Sat Jun 7 2003 Jeremy Katz 0.7.0-1 +- update to 0.7.0 + +* Mon Jun 2 2003 Elliot Lee 0.6.1-2 +- Rebuild to fix broken mozilla dep, patch for mozilla 1.4 + +* Mon May 19 2003 Jeremy Katz 0.6.1-1 +- 0.6.1 + +* Fri May 9 2003 Jeremy Katz 0.6.0-4 +- add patch to fix gint/gpointer conversion bugs for 64bit arches + +* Fri May 9 2003 Jeremy Katz 0.6.0-3 +- only build on arches mozilla is built on + +* Fri May 9 2003 Jeremy Katz 0.6.0-2 +- rebuild against new mozilla, make mozilla requires dynamic + +* Sun May 4 2003 Jeremy Katz 0.6.0-1 +- update to 0.6.0 +- fix tyop in %%postun + +* Wed Apr 16 2003 Bill Nottingham 0.5.0-3 +- make it build with mozilla-1.4 (shouldn't affect moz-1.2/moz-1.3 builds) + +* Mon Apr 14 2003 Jeremy Katz 0.5.0-2 +- add some buildrequires, prereq GConf2 +- disable building nautilus view + +* Sun Apr 13 2003 Jeremy Katz +- Initial build. + + -- cgit v1.2.3