From 4ab22a5eae8199726bc0e51bc88254150cc4ce3b Mon Sep 17 00:00:00 2001 From: CentOS Sources Date: Aug 02 2019 16:25:42 +0000 Subject: import gnome-menus-3.13.3-10.el8 --- diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..fa572d2 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/gnome-menus-3.13.3.tar.xz diff --git a/.gnome-menus.metadata b/.gnome-menus.metadata new file mode 100644 index 0000000..7d194dd --- /dev/null +++ b/.gnome-menus.metadata @@ -0,0 +1 @@ +667e451d2a12395bf59606ecd4165df8143a76c6 SOURCES/gnome-menus-3.13.3.tar.xz diff --git a/SOURCES/fix-multiple-desktops-in-xdg-current-desktop.patch b/SOURCES/fix-multiple-desktops-in-xdg-current-desktop.patch new file mode 100644 index 0000000..1c98497 --- /dev/null +++ b/SOURCES/fix-multiple-desktops-in-xdg-current-desktop.patch @@ -0,0 +1,200 @@ +From b4546ab43c2c7ef6fb6cb7e5db83dc3975b56e8e Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Alberts=20Muktup=C4=81vels?= +Date: Mon, 27 Oct 2014 18:41:34 +0200 +Subject: [PATCH 1/2] desktop-entries: support multiple desktops in + XDG_CURRENT_DESKTOP + +This is based on glib commit: +5a5e16e93c4f11e635918ecdb41681f63fd05a39 +--- + libmenu/desktop-entries.c | 110 ++++++++++++++++++++++------------------------ + 1 file changed, 52 insertions(+), 58 deletions(-) + +diff --git a/libmenu/desktop-entries.c b/libmenu/desktop-entries.c +index 326f311..bd4f886 100644 +--- a/libmenu/desktop-entries.c ++++ b/libmenu/desktop-entries.c +@@ -85,32 +85,27 @@ unix_basename_from_path (const char *path) + return path; + } + +-static const char * +-get_current_desktop (void) ++static const gchar * const * ++get_current_desktops (void) + { +- static char *current_desktop = NULL; ++ static gchar **result; + +- /* Support XDG_CURRENT_DESKTOP environment variable; this can be used +- * to abuse gnome-menus in non-GNOME desktops. */ +- if (!current_desktop) ++ if (g_once_init_enter (&result)) + { +- const char *desktop; ++ const gchar *desktops; ++ gchar **tmp; + +- desktop = g_getenv ("XDG_CURRENT_DESKTOP"); ++ desktops = g_getenv ("XDG_CURRENT_DESKTOP"); + +- /* Note: if XDG_CURRENT_DESKTOP is set but empty, do as if it +- * was not set */ +- if (!desktop || desktop[0] == '\0') +- current_desktop = g_strdup ("GNOME"); +- else +- current_desktop = g_strdup (desktop); +- } ++ if (desktops) ++ desktops = ""; + +- /* Using "*" means skipping desktop-related checks */ +- if (g_strcmp0 (current_desktop, "*") == 0) +- return NULL; ++ tmp = g_strsplit (desktops, ":", 0); ++ ++ g_once_init_leave (&result, tmp); ++ } + +- return current_desktop; ++ return (const gchar **) result; + } + + static GIcon * +@@ -151,52 +146,58 @@ key_file_get_icon (GKeyFile *key_file) + static gboolean + key_file_get_show_in (GKeyFile *key_file) + { +- const gchar *current_desktop; +- gchar **strv; ++ const gchar * const *current_desktops; ++ gchar **only_show_in; ++ gchar **not_show_in; + gboolean show_in = TRUE; +- int i; +- +- current_desktop = get_current_desktop (); +- if (!current_desktop) +- return TRUE; +- +- strv = g_key_file_get_string_list (key_file, +- DESKTOP_ENTRY_GROUP, +- "OnlyShowIn", +- NULL, +- NULL); +- if (strv) ++ gint i; ++ ++ current_desktops = get_current_desktops (); ++ only_show_in = g_key_file_get_string_list (key_file, ++ DESKTOP_ENTRY_GROUP, ++ "OnlyShowIn", ++ NULL, ++ NULL); ++ not_show_in = g_key_file_get_string_list (key_file, ++ DESKTOP_ENTRY_GROUP, ++ "NotShowIn", ++ NULL, ++ NULL); ++ ++ for (i = 0; current_desktops[i]; i++) + { +- show_in = FALSE; +- for (i = 0; strv[i]; i++) ++ gint j; ++ ++ if (only_show_in) + { +- if (!strcmp (strv[i], current_desktop)) ++ show_in = FALSE; ++ for (j = 0; only_show_in[j]; j++) + { +- show_in = TRUE; +- break; ++ if (g_str_equal (only_show_in[j], current_desktops[i])) ++ { ++ show_in = TRUE; ++ goto out; ++ } + } + } +- } +- else +- { +- strv = g_key_file_get_string_list (key_file, +- DESKTOP_ENTRY_GROUP, +- "NotShowIn", +- NULL, +- NULL); +- if (strv) ++ ++ if (not_show_in) + { + show_in = TRUE; +- for (i = 0; strv[i]; i++) ++ for (j = 0; not_show_in[j]; j++) + { +- if (!strcmp (strv[i], current_desktop)) ++ if (g_str_equal (not_show_in[j], current_desktops[i])) + { + show_in = FALSE; ++ goto out; + } + } + } + } +- g_strfreev (strv); ++ ++out: ++ g_strfreev (only_show_in); ++ g_strfreev (not_show_in); + + return show_in; + } +@@ -579,14 +580,7 @@ gboolean + desktop_entry_get_show_in (DesktopEntry *entry) + { + if (entry->type == DESKTOP_ENTRY_DESKTOP) +- { +- const char *current_desktop = get_current_desktop (); +- +- if (current_desktop == NULL) +- return TRUE; +- else +- return g_desktop_app_info_get_show_in (((DesktopEntryDesktop*)entry)->appinfo, current_desktop); +- } ++ return g_desktop_app_info_get_show_in (((DesktopEntryDesktop*)entry)->appinfo, NULL); + return ((DesktopEntryDirectory*)entry)->showin; + } + +-- +2.4.3 + + +From 4befe76fbdb76aa6a986297ef71d1601b2ced42e Mon Sep 17 00:00:00 2001 +From: Josselin Mouette +Date: Sun, 14 Dec 2014 20:36:36 +0100 +Subject: [PATCH 2/2] desktop-entries: fix trivial bug in handling of multiple + desktops in XDG_CURRENT_DESKTOP. + +https://bugzilla.gnome.org/show_bug.cgi?id=741505 +--- + libmenu/desktop-entries.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/libmenu/desktop-entries.c b/libmenu/desktop-entries.c +index bd4f886..a463d79 100644 +--- a/libmenu/desktop-entries.c ++++ b/libmenu/desktop-entries.c +@@ -97,7 +97,7 @@ get_current_desktops (void) + + desktops = g_getenv ("XDG_CURRENT_DESKTOP"); + +- if (desktops) ++ if (!desktops) + desktops = ""; + + tmp = g_strsplit (desktops, ":", 0); +-- +2.4.3 + diff --git a/SPECS/gnome-menus.spec b/SPECS/gnome-menus.spec new file mode 100644 index 0000000..15f62a5 --- /dev/null +++ b/SPECS/gnome-menus.spec @@ -0,0 +1,536 @@ +%global enable_debugging 0 + +Summary: A menu system for the GNOME project +Name: gnome-menus +Version: 3.13.3 +Release: 10%{?dist} +License: LGPLv2+ +Group: System Environment/Libraries +URL: http://www.gnome.org/ + +#VCS: git:git://git.gnome.org/gnome-menus +Source0: http://download.gnome.org/sources/gnome-menus/3.13/%{name}-%{version}.tar.xz + +Patch0: fix-multiple-desktops-in-xdg-current-desktop.patch + +Requires: redhat-menus +BuildRequires: gawk +BuildRequires: gettext +BuildRequires: glib2-devel +BuildRequires: pkgconfig +BuildRequires: intltool +BuildRequires: gobject-introspection-devel + +%description +gnome-menus is an implementation of the draft "Desktop +Menu Specification" from freedesktop.org. This package +also contains the GNOME menu layout configuration files, +.directory files and assorted menu related utility programs, +Python bindings, and a simple menu editor. + +%package devel +Summary: Libraries and include files for the GNOME menu system +Group: Development/Libraries +Requires: %{name}%{?_isa} = %{version}-%{release} + +%description devel +This package provides the necessary development libraries for +writing applications that use the GNOME menu system. + +%prep +%setup -q +%patch0 -p1 -b .fix-xdg-current-desktop-handling + +%build +%configure --disable-static \ + --enable-introspection \ +%if %{enable_debugging} + --enable-debug=yes +%else + --enable-debug=no +%endif + +make %{?_smp_mflags} + + +%install +make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p" +find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' + +%find_lang gnome-menus-3.0 + +%post -p /sbin/ldconfig + +%postun -p /sbin/ldconfig + +%files -f gnome-menus-3.0.lang +%doc AUTHORS NEWS COPYING.LIB +%{_sysconfdir}/xdg/menus/gnome-applications.menu +%{_libdir}/lib*.so.* +%{_datadir}/desktop-directories/* +%{_libdir}/girepository-1.0/GMenu-3.0.typelib + +%files devel +%{_libdir}/lib*.so +%{_libdir}/pkgconfig/* +%{_includedir}/gnome-menus-3.0 +%{_datadir}/gir-1.0/GMenu-3.0.gir + +%changelog +* Fri Aug 03 2018 Charalampos Stratakis - 3.13.3-10 +- Remove python2-devel dependency + +* Wed Feb 07 2018 Fedora Release Engineering - 3.13.3-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Wed Aug 02 2017 Fedora Release Engineering - 3.13.3-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + +* Wed Jul 26 2017 Fedora Release Engineering - 3.13.3-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Fri Feb 10 2017 Fedora Release Engineering - 3.13.3-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Wed Feb 03 2016 Fedora Release Engineering - 3.13.3-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Thu Jun 18 2015 Florian Müllner - 3.13.3-4 +- Fix handling of multiple desktops in XDG_CURRENT_DESKTOP + +* Wed Jun 17 2015 Fedora Release Engineering - 3.13.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Sat Aug 16 2014 Fedora Release Engineering - 3.13.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + +* Sun Aug 10 2014 Kalev Lember - 3.13.3-1 +- Update to 3.13.3 +- Tighten -devel deps + +* Tue Jul 22 2014 Kalev Lember - 3.10.1-4 +- Rebuilt for gobject-introspection 1.41.4 + +* Sat Jun 07 2014 Fedora Release Engineering - 3.10.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Wed Jan 08 2014 Adam Williamson - 3.10.1-2 +- patch up to current git master (should fix annoying crashes) + +* Tue Oct 29 2013 Richard Hughes - 3.10.1-1 +- Update to 3.10.1 + +* Sat Aug 03 2013 Fedora Release Engineering - 3.8.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + +* Sat Mar 30 2013 Kalev Lember - 3.8.0-2 +- Fix gnome-calculator to show up in the menus again + +* Tue Mar 26 2013 Kalev Lember - 3.8.0-1 +- Update to 3.8.0 + +* Fri Feb 22 2013 Kalev Lember - 3.7.90-1 +- Update to 3.7.90 +- Drop the downstream patch for changing the release notes categories + +* Thu Feb 14 2013 Fedora Release Engineering - 3.6.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Tue Jan 15 2013 Matthias Clasen - 3.6.2-1 +- Update to 3.6.2 + +* Wed Nov 14 2012 Kalev Lember - 3.6.1-1 +- Update to 3.6.1 + +* Thu Oct 18 2012 Florian Müllner - 3.6.0-2 +- Use gnome-applications.menu instead of applications-gnome.menu, + in order to be able to use XDG_MENU_PREFIX instead of a downstream + patch to gnome-shell + +* Tue Sep 25 2012 Matthias Clasen - 3.6.0-1 +- Update to 3.6.0 + +* Wed Sep 19 2012 Richard Hughes - 3.5.92-1 +- Update to 3.5.92 + +* Tue Aug 07 2012 Richard Hughes - 3.5.5-1 +- Update to 3.5.5 + +* Thu Jul 19 2012 Fedora Release Engineering - 3.5.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Tue Jul 17 2012 Richard Hughes - 3.5.4-1 +- Update to 3.5.4 + +* Tue Jun 26 2012 Matthias Clasen - 3.5.3-1 +- Update to 3.5.3 + +* Thu Jun 07 2012 Richard Hughes - 3.5.2-1 +- Update to 3.5.2 + +* Fri May 18 2012 Richard Hughes - 3.4.2-1 +- Update to 3.4.2 + +* Tue Mar 27 2012 Kalev Lember - 3.4.0-1 +- Update to 3.4.0 + +* Tue Feb 21 2012 Peter Robinson - 3.3.5-2 +- Drop the rpath change as it's fixed upstream and the associated circular dep hack + +* Tue Feb 7 2012 Matthias Clasen - 3.3.5-1 +- Update to 3.3.5 + +* Fri Jan 13 2012 Fedora Release Engineering - 3.3.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Wed Nov 2 2011 Matthias Clasen - 3.3.1-1 +- Update to 3.3.1 + +* Wed Sep 28 2011 Ray - 3.2.0.1-1 +- Update to 3.2.0.1 + +* Tue Sep 27 2011 Ray - 3.2.0-1 +- Update to 3.2.0 + +* Mon Sep 19 2011 Matthias Clasen - 3.1.92-1 +- Update to 3.1.92 + +* Tue Aug 30 2011 Matthias Clasen - 3.1.90-1 +- Update to 3.1.90 + +* Fri Aug 24 2011 Matthias Clasen - 3.1.5-3 +- Sync with F16 + +* Tue Apr 26 2011 Matthias Clasen - 3.0.1-1 +- Update to 3.0.1 + +* Mon Apr 11 2011 Colin Walters - 3.0.0-2 +- Ship applications-gnome.desktop; we don't want GNOME 3 to use redhat-menus. +- Disable introspection, we're not using it right now + +* Mon Apr 4 2011 Matthias Clasen 3.0.0-1 +- Update to 3.0.0 + +* Mon Mar 7 2011 Matthias Clasen 2.91.91-1 +- Update to 2.91.91 + +* Tue Feb 08 2011 Fedora Release Engineering - 2.30.4-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Wed Sep 29 2010 Matthias Clasen 2.30.4-1 +- Update to 2.30.4 + +* Wed Sep 29 2010 jkeating - 2.30.0-5 +- Rebuilt for gcc bug 634757 + +* Fri Sep 10 2010 Parag Nemade 2.30.0-4 +- Merge-review cleanup (#225823) + +* Wed Jul 21 2010 David Malcolm - 2.30.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild + +* Wed Apr 7 2010 Matthias Clasen 2.30.0-2 +- Keep release notes out of Applications>Other + +* 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 + +* Thu Feb 11 2010 Matthias Clasen 2.29.6-1 +- Update to 2.29.6 + +* Thu Sep 24 2009 Matthias Clasen 2.28.0-2 +- Remove obsolete configure option + +* Mon Sep 21 2009 Matthias Clasen 2.28.0-1 +- Update to 2.28.0 + +* Wed Sep 9 2009 Matthias Clasen 2.27.92-1 +- Update to 2.27.92 + +* Fri Jul 24 2009 Fedora Release Engineering - 2.27.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Wed Jul 15 2009 Matthias Clasen 2.27.4-1 +- Update to 2.27.4 + +* Tue Jun 30 2009 Matthias Clasen 2.26.2-1 +- Update to 2.26.2 +- See http://download.gnome.org/sources/gnome-menus/2.26/gnome-menus-2.26.2.news + +* Sun Jun 14 2009 Matthias Clasen 2.26.1-2 +- Minor directory ownership cleanup + +* Mon Apr 13 2009 Matthias Clasen 2.26.1-1 +- Update to 2.26.1 +- See http://download.gnome.org/sources/gnome-menus/2.26/gnome-menus-2.26.1.news + +* Mon Mar 16 2009 Matthias Clasen 2.26.0-1 +- Update to 2.26.0 + +* Tue Feb 24 2009 Fedora Release Engineering - 2.25.91-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Tue Feb 17 2009 Matthias Clasen 2.25.91-1 +- Update to 2.25.91 + +* Tue Jan 20 2009 Matthias Clasen 2.25.5-1 +- Update to 2.25.5 + +* Thu Dec 4 2008 Ignacio Vazquez-Abrams - 2.25.2-3 +- Rebuild for Python 2.6 + +* Wed Dec 3 2008 Matthias Clasen 2.25.2-2 +- Update to 2.25.2 + +* Sat Nov 29 2008 Ignacio Vazquez-Abrams - 2.24.1-2 +- Rebuild for Python 2.6 + +* Wed Oct 22 2008 Matthias Clasen - 2.24.1-1 +- Update to 2.24.1 + +* Mon Oct 20 2008 Matthias Clasen - 2.24.0-2 +- Fix a translation error in Marathi + +* Mon Sep 22 2008 Matthias Clasen - 2.24.0-1 +- Update to 2.24.0 + +* Mon Sep 8 2008 Matthias Clasen - 2.23.92-1 +- Update to 2.23.92 + +* Tue Sep 2 2008 Matthias Clasen - 2.23.91-1 +- Update to 2.23.91 + +* Tue Aug 5 2008 Matthias Clasen - 2.23.6-1 +- Update to 2.23.6 + +* Fri Aug 1 2008 Matthias Clasen - 2.23.5-2 +- Use standard icon names + +* Tue Jul 22 2008 Matthias Clasen - 2.23.5-1 +- Update to 2.23.5 + +* Wed Jun 18 2008 Matthias Clasen - 2.23.4-1 +- Update to 2.23.4 + +* Wed Jun 4 2008 Matthias Clasen - 2.23.3-1 +- Update to 2.23.3 + +* Fri Apr 25 2008 Matthias Clasen - 2.23.1-1 +- Update to 2.23.1 + +* Mon Apr 7 2008 Matthias Clasen - 2.22.1-1 +- Update to 2.22.1 + +* Mon Mar 10 2008 Matthias Clasen - 2.22.0-1 +- Update to 2.22.0 + +* Tue Feb 26 2008 Matthias Clasen - 2.21.92-1 +- Update to 2.21.92 + +* Tue Feb 12 2008 Matthias Clasen - 2.21.91-1 +- Update to 2.21.91 + +* Tue Jan 29 2008 Matthias Clasen - 2.21.90-1 +- Update to 2.21.90 + +* Mon Jan 14 2008 Matthias Clasen - 2.21.4-1 +- Update to 2.21.4 + +* Wed Jan 09 2008 - Bastien Nocera - 2.21.3-2 +- Add upstream patch to allow building with the new GIO file + monitoring API + +* Sat Dec 22 2007 Matthias Clasen - 2.21.3-1 +- Update to 2.21.3 +- Use gio for file monitoring + +* Mon Nov 12 2007 Matthias Clasen - 2.21.2-1 +- Update to 2.21.2 + +* Mon Oct 15 2007 Matthias Clasen - 2.20.1-1 +- Update to 2.20.1 (translation updates) + +* Mon Sep 17 2007 Matthias Clasen - 2.20.0-1 +- Update to 2.20.0 + +* Tue Sep 4 2007 Matthias Clasen - 2.19.92-1 +- Update to 2.19.92 + +* Thu Aug 23 2007 Adam Jackson - 2.19.90-2 +- Rebuild for build ID +- BuildRequires: gawk + +* Mon Aug 13 2007 Matthias Clasen - 2.19.90-1 +- Update to 2.19.90 + +* Thu Aug 2 2007 Matthias Clasen - 2.19.6-2 +- Update license field + +* Mon Jul 30 2007 Matthias Clasen - 2.19.6-1 +- Update to 2.19.6 + +* Sun Jul 8 2007 Matthias Clasen - 2.19.5-1 +- Update to 2.19.5 + +* Sun Jun 17 2007 Matthias Clasen - 2.19.4-1 +- Update to 2.19.4 +- Drop upstreamed patch + +* Thu Jun 14 2007 Colin Walters - 2.19.3-2 +- Add patch gnome-menus-pythread-bgo442747.patch + +* Mon Jun 4 2007 Matthias Clasen - 2.19.3-1 +- Update to 2.19.3 + +* Sat May 19 2007 Matthias Clasen - 2.19.2-1 +- Update to 2.19.2 + +* Tue Mar 13 2007 Matthias Clasen - 2.18.0-1 +- Update to 2.18.0 + +* Tue Feb 27 2007 Matthias Clasen - 2.17.92-1 +- Update to 2.17.92 +- Drop obsolete patch + +* Thu Feb 15 2007 Matthias Clasen - 2.17.91-2 +- Show the Preferences menu + +* Tue Feb 13 2007 Matthias Clasen - 2.17.91-1 +- Update to 2.17.91 + +* Mon Jan 29 2007 Adam Jackson - 2.17.5-2 +- Fix the redhat-menus Requires: to a version where there's no + System.directory conflict. + +* Wed Jan 10 2007 Matthias Clasen - 2.17.5-1 +- Update to 2.17.5 +- Remove traces of gmenu-simple-editor + +* Thu Dec 7 2006 Jeremy Katz - 2.17.2-2 +- rebuild for python 2.5 + +* Mon Nov 6 2006 Matthias Clasen - 2.17.2-1 +- Update to 2.17.2 +- Don't ship static libraries +- Fix python packaging + +* Sat Oct 21 2006 Matthias Clasen - 2.16.1-1 +- Update to 2.16.1 + +* Tue Sep 5 2006 Ray Strode - 2.16.0-2.fc6 +- Remove menu editor (bug 205210) + +* Mon Sep 4 2006 Matthias Clasen - 2.16.0-1.fc6 +- Update to 2.16.0 + +* Mon Aug 21 2006 Matthias Clasen - 2.15.91-2.fc6 +- Add Requires to the -devel package + +* Sat Aug 12 2006 Matthias Clasen - 2.15.91-1.fc6 +- Update to 2.15.91 + +* Thu Aug 2 2006 Matthias Clasen - 2.15.90-1.fc6 +- Update to 2.15.90 + +* Wed Jul 12 2006 Matthias Clasen - 2.15.4.1-1 +- Update to 2.15.4.1 + +* Wed Jul 12 2006 Jesse Keating - 2.14.0-4.1 +- rebuild + +* Fri Jun 9 2006 Matthias Clasen - 2.14.0-4 +- More missing BuildRequires + +* Tue Jun 6 2006 Matthias Clasen - 2.14.0-3 +- Add a BuildRequires for perl-XML-Parser + +* Mon Apr 13 2006 Matthias Clasen - 2.14.0-2 +- Update to 2.14.0 +- Drop upstreamed patch + +* Fri Feb 10 2006 Jesse Keating - 2.13.5-5.2 +- bump again for double-long bug on ppc(64) + +* Tue Feb 07 2006 Jesse Keating - 2.13.5-5.1 +- rebuilt for new gcc4.1 snapshot and glibc changes + +* Mon Feb 6 2006 Ray Strode 2.13.5-5 +- break infinite loop + +* Wed Feb 1 2006 Ray Strode 2.13.5-4 +- don't ship upstream Desktop.directory files + +* Fri Jan 27 2006 Ray Strode 2.13.5-3 +- ship upstream .directory files + +* Thu Jan 19 2006 Matthias Clasen 2.13.5-2 +- Add a BuildRequires for gamin + +* Tue Jan 17 2006 Matthias Clasen 2.13.5-1 +- Update to 2.13.5 + +* Fri Dec 09 2005 Jesse Keating +- rebuilt + +* Tue Sep 6 2005 Mark McLoughlin 2.12.0-1 +- Update to 2.12.0 + +* Mon Aug 22 2005 Mark McLoughlin 2.11.92-1 +- Update to 2.11.92 + +* Thu Aug 18 2005 Mark McLoughlin 2.11.91-3 +- Fix infinite loop in patch for gnome #313624 + +* Thu Aug 18 2005 Mark McLoughlin 2.11.91-2 +- Add patch to fix "duplicate entries after upgrade" issue (gnome #313624) + +* Tue Aug 16 2005 Mark McLoughlin 2.11.91-1 +- Update to 2.11.91 +- Backport patch from HEAD to hopefully fix crasher (rh #165977) + +* Wed Aug 03 2005 Ray Strode - 2.11.90-1 +- Update to upstream version 2.11.90 + +* Mon Jul 11 2005 Matthias Clasen 2.11.1.1-2 +- Undo the split into tiny subpackages, instead move + the Python bindings and the editor into the main package. +- Fix dependencies + +* Fri Jul 8 2005 Matthias Clasen 2.11.1.1-1 +- Update to 2.11.1.1 +- Split off subpackages for python bindings and editor + +* Fri Apr 22 2005 Matthias Clasen 2.10.1-3 +- Call ldconfig in %%post (#155734) +- Add some BuildRequires + +* Wed Apr 6 2005 Mark McLoughlin 2.10.1-2 +- Backport patch from CVS to fix large memory leak on re-loading + the menus (gnome #172472) + +* Wed Mar 23 2005 Mark McLoughlin 2.10.1-1 +- Update to 2.10.1 + +* Thu Mar 17 2005 Ray Strode - 2.10.0-1 +- Update to upstream version 2.10.0 + +* Fri Mar 4 2005 Jeremy Katz - 2.9.90-4 +- fix 64bit pointer problem that caused the panel to crash + +* Wed Mar 2 2005 Mark McLoughlin 2.9.90-3 +- Turn off debugging by default +- Rebuild with gcc4 + +* Tue Feb 1 2005 Matthias Clasen - 2.9.90-2 +- Don't include .directory and .menu files, + we want those from redhat-menus + +* Mon Jan 31 2005 Matthias Clasen - 2.9.90-1 +- Initial build. +