Mailinglist Archive: opensuse-commit (1262 mails)
| < Previous | Next > |
commit bombermaze
- From: root@xxxxxxx (h_root)
- Date: Thu, 7 Sep 2006 01:09:17 +0200 (CEST)
- Message-id: <20060906230917.2127E18AC0F@xxxxxxxxxxxxxxx>
Hello community,
here is the log from the commit of package bombermaze
checked in at Thu Sep 7 01:09:17 CEST 2006.
--------
--- GNOME/bombermaze/bombermaze.changes 2006-01-25 21:31:18.000000000 +0100
+++ bombermaze/bombermaze.changes 2006-09-05 17:06:47.000000000 +0200
@@ -1,0 +2,6 @@
+Tue Sep 5 17:05:27 CEST 2006 - anosek@xxxxxxx
+
+- fixed compiler warning: integer operation result is out of range
+ (range.patch)
+
+-------------------------------------------------------------------
New:
----
bombermaze-range.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ bombermaze.spec ++++++
--- /var/tmp/diff_new_pack.oz7gua/_old 2006-09-07 01:08:56.000000000 +0200
+++ /var/tmp/diff_new_pack.oz7gua/_new 2006-09-07 01:08:56.000000000 +0200
@@ -1,11 +1,11 @@
#
# spec file for package bombermaze (Version 0.6.6)
#
-# Copyright (c) 2005 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2006 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
# package are under the same license as the package itself.
#
-# Please submit bugfixes or comments via http://www.suse.de/feedback/
+# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
# norootforbuild
@@ -19,14 +19,15 @@
Autoreqprov: on
Version: 0.6.6
-Release: 500
-Summary: Bomberman clone for GNOME
+Release: 517
+Summary: Bomberman Clone for GNOME
Source: bombermaze-%{version}.tar.bz2
Patch: bombermaze-array_new.diff
Patch1: bombermaze-regen.diff
Patch2: bombermaze-codecleanup.diff
Patch3: bombermaze-po_install.diff
Patch4: bombermaze-dynamic_ALL_LINGUAS.diff
+Patch5: bombermaze-range.patch
URL: http://www.freesoftware.fsf.org/bombermaze/
BuildRoot: %{_tmppath}/%{name}-%{version}-build
@@ -46,6 +47,7 @@
%patch2
%patch3
%patch4
+%patch5
rm po/*.gmo
mv po/no.po po/nb.po
@@ -86,6 +88,9 @@
%changelog -n bombermaze
+* Tue Sep 05 2006 - anosek@xxxxxxx
+- fixed compiler warning: integer operation result is out of range
+ (range.patch)
* Wed Jan 25 2006 - mls@xxxxxxx
- converted neededforbuild to BuildRequires
* Tue Oct 25 2005 - pth@xxxxxxx
++++++ bombermaze-range.patch ++++++
--- src/map.cc
+++ src/map.cc
@@ -1437,7 +1437,7 @@
case CHAR_SQUARE_RANDOM:
r = rand();
if (r < RAND_MAX / 3) status = SQUARE_WALL;
- else if (r < RAND_MAX * 2/3) status = SQUARE_BRICK;
+ else if (r < (RAND_MAX / 3) * 2) status = SQUARE_BRICK;
else status = SQUARE_EMPTY;
break;
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
---------------------------------------------------------------------
To unsubscribe, e-mail: opensuse-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: opensuse-commit+help@xxxxxxxxxxxx
| < Previous | Next > |