commit orage for openSUSE:Factory
Hello community, here is the log from the commit of package orage for openSUSE:Factory checked in at Tue Mar 23 22:29:18 CET 2010. -------- --- orage/orage.changes 2010-03-18 10:18:13.000000000 +0100 +++ /mounts/work_src_done/STABLE/orage/orage.changes 2010-03-23 12:06:12.000000000 +0100 @@ -1,0 +2,6 @@ +Tue Mar 23 10:47:42 UTC 2010 - puzel@novell.com + +- fix broken build: copy README.SUSE to build directory +- add orage-4.6.1-fix-undefined-operation.patch + +------------------------------------------------------------------- calling whatdependson for head-i586 New: ---- orage-4.6.1-fix-undefined-operation.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ orage.spec ++++++ --- /var/tmp/diff_new_pack.rmrLTW/_old 2010-03-23 22:28:52.000000000 +0100 +++ /var/tmp/diff_new_pack.rmrLTW/_new 2010-03-23 22:28:52.000000000 +0100 @@ -23,12 +23,13 @@ BuildRequires: xfce4-panel-devel Summary: Time-managing application for the Xfce desktop environment Version: 4.6.1 -Release: 2 +Release: 3 License: GPLv2+ Url: http://www.xfce.org Source: %{name}-%{version}.tar.bz2 Source1: README.SUSE Patch0: %{name}-shared-libical.patch +Patch1: orage-4.6.1-fix-undefined-operation.patch Group: Productivity/Office/Organizers BuildRoot: %{_tmppath}/%{name}-%{version}-build Provides: xfcalendar = %{version} @@ -50,8 +51,10 @@ %prep %setup -q +cp %{SOURCE1} . # rm -rf libical # %patch0 +%patch1 -p1 %build %configure ++++++ orage-4.6.1-fix-undefined-operation.patch ++++++ --- src/day-view.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: orage-4.6.1/src/day-view.c =================================================================== --- orage-4.6.1.orig/src/day-view.c 2009-04-15 00:58:27.000000000 +0200 +++ orage-4.6.1/src/day-view.c 2010-03-23 11:56:19.000000000 +0100 @@ -896,7 +896,7 @@ static void build_day_view_table(day_win } /* some rare locales show weekday in the default date, so we need to * make it correct. Safer would be to call mktime() */ - tm_date.tm_wday = ++tm_date.tm_wday%7; + tm_date.tm_wday = (tm_date.tm_wday+1)%7; } fill_hour_arrow(dw, days+1); g_free(today); ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... -- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@Hilbert.suse.de