- Add patch for Gnome.org bug #211058 for Trever Adams to test.

This commit is contained in:
Matthew Barnes 2006-06-27 20:44:47 +00:00
parent ae09cddd49
commit 5929c80844
2 changed files with 25 additions and 2 deletions

View File

@ -0,0 +1,16 @@
--- evolution-2.7.3/filter/filter-datespec.c.filter-datespec 2005-08-09 19:29:27.000000000 -0400
+++ evolution-2.7.3/filter/filter-datespec.c 2006-06-27 15:56:18.000000000 -0400
@@ -82,6 +82,13 @@
{ 604800, ngettext("1 week ago", "%d weeks ago"), 52.0 },
{ 2419200, ngettext("1 month ago", "%d months ago"), 12.0 },
{ 31557600, ngettext("1 year ago", "%d years ago"), 1000.0 },
+ { -1, ngettext("1 second in the future", "%d seconds in the future"), 59.0 },
+ { -60, ngettext("1 minute in the future", "%d minutes in the future"), 59.0 },
+ { -3600, ngettext("1 hour in the future", "%d hours in the future"), 23.0 },
+ { -86400, ngettext("1 day in the future", "%d days in the future"), 31.0 },
+ { -604800, ngettext("1 week in the future", "%d weeks in the future"), 52.0 },
+ { -2419200, ngettext("1 month in the future", "%d months in the future"), 12.0 },
+ { -31557600, ngettext("1 year in the future", "%d years in the future"), 1000.0 },
};
/* now we let the compiler see the real function call */

View File

@ -47,7 +47,7 @@
Name: evolution Name: evolution
Version: 2.7.3 Version: 2.7.3
Release: 4 Release: 5
License: GPL License: GPL
Group: Applications/Productivity Group: Applications/Productivity
Summary: GNOME's next-generation groupware suite Summary: GNOME's next-generation groupware suite
@ -116,12 +116,15 @@ Patch809: evolution-2.6.0-prototypes.patch
# Gnome.org #343331 # Gnome.org #343331
Patch900: evolution-2.7.2.1-quit-resize-crash.patch Patch900: evolution-2.7.2.1-quit-resize-crash.patch
# Gnome.org #345677 # Gnome.org #345677 - fixed upstream
Patch901: evolution-2.7.3-no-boolean-in-schemas.patch Patch901: evolution-2.7.3-no-boolean-in-schemas.patch
# RH bug #157505 # RH bug #157505
Patch902: evolution-2.7.3-candidate-window-position.patch Patch902: evolution-2.7.3-candidate-window-position.patch
# Gnome.org #211058 - for Trever Adams to test
Patch903: evolution-2.7.3-filter-datespec.patch
### Dependencies ### ### Dependencies ###
Requires: scrollkeeper >= 0.1.4 Requires: scrollkeeper >= 0.1.4
@ -276,6 +279,7 @@ Development files needed for building things which link against evolution.
%patch900 -p1 -b .quit-resize-crash %patch900 -p1 -b .quit-resize-crash
%patch901 -p1 -b .no-boolean-in-schemas %patch901 -p1 -b .no-boolean-in-schemas
%patch902 -p1 -b .candidate-window-position %patch902 -p1 -b .candidate-window-position
%patch903 -p1 -b .filter-datespec
mkdir -p krb5-fakeprefix/include mkdir -p krb5-fakeprefix/include
mkdir -p krb5-fakeprefix/lib mkdir -p krb5-fakeprefix/lib
@ -666,6 +670,9 @@ rm -rf $RPM_BUILD_ROOT
%{_libdir}/evolution/%{evo_major}/libmenus.so %{_libdir}/evolution/%{evo_major}/libmenus.so
%changelog %changelog
* Tue Jun 27 2006 Matthew Barnes <mbarnes@redhat.com> - 2.7.3-5
- Add patch for Gnome.org bug #211058 for Trever Adams to test.
* Mon Jun 26 2006 Matthew Barnes <mbarnes@redhat.com> - 2.7.3-4 * Mon Jun 26 2006 Matthew Barnes <mbarnes@redhat.com> - 2.7.3-4
- Add patch for RH bug #157505 for QE testing. - Add patch for RH bug #157505 for QE testing.