r10164 - in packages/trunk/openarena/debian: . patches

Gonéri Le Bouder goneri at alioth.debian.org
Fri Aug 21 22:12:22 UTC 2009


Author: goneri
Date: 2009-08-21 22:12:22 +0000 (Fri, 21 Aug 2009)
New Revision: 10164

Added:
   packages/trunk/openarena/debian/README.source
   packages/trunk/openarena/debian/patches/delban_0_segfault.diff
Modified:
   packages/trunk/openarena/debian/changelog
   packages/trunk/openarena/debian/patches/series
Log:
* Segfault when deleting non-existent ban address 0, thanks Guillaume
  Delacour (Closes: #532212)
* Standards version: 3.8.3, no changes
* add README.source to explain how the quilt patch system works


Added: packages/trunk/openarena/debian/README.source
===================================================================
--- packages/trunk/openarena/debian/README.source	                        (rev 0)
+++ packages/trunk/openarena/debian/README.source	2009-08-21 22:12:22 UTC (rev 10164)
@@ -0,0 +1,17 @@
+The openarena package uses quilt to maintain local changes to
+the openarena distribution.  The Debian-specific patches are maintained
+in the debian/patches/ directory.
+
+To apply all the patches, preparing the source for building, use:
+  debian/rules patch
+
+To revert the patches, preparing to build a source package, use:
+  debian/rules unpatch
+
+You do not need to manually execute these targets when building
+the package; they are part of the debian/rules target chain.
+
+For more information on the quilt integration with Debian packages,
+as well as editing, adding or removing patches, please see
+the quilt documentation; in recent versions of the Debian package of
+quilt, start at the /usr/share/doc/quilt/README.source file.

Modified: packages/trunk/openarena/debian/changelog
===================================================================
--- packages/trunk/openarena/debian/changelog	2009-08-21 22:10:50 UTC (rev 10163)
+++ packages/trunk/openarena/debian/changelog	2009-08-21 22:12:22 UTC (rev 10164)
@@ -1,3 +1,12 @@
+openarena (0.8.1-5) unstable; urgency=low
+
+  * Segfault when deleting non-existent ban address 0, thanks Guillaume
+    Delacour (Closes: #532212)
+  * Standards version: 3.8.3, no changes
+  * add README.source to explain how the quilt patch system works 
+
+ -- Gonéri Le Bouder <goneri at rulezlan.org>  Fri, 21 Aug 2009 20:16:35 +0200
+
 openarena (0.8.1-4) unstable; urgency=low
 
   [ Gonéri Le Bouder ]

Added: packages/trunk/openarena/debian/patches/delban_0_segfault.diff
===================================================================
--- packages/trunk/openarena/debian/patches/delban_0_segfault.diff	                        (rev 0)
+++ packages/trunk/openarena/debian/patches/delban_0_segfault.diff	2009-08-21 22:12:22 UTC (rev 10164)
@@ -0,0 +1,11 @@
+--- openarena-0.8.1.orig/code/server/sv_ccmds.c
++++ openarena-0.8.1/code/server/sv_ccmds.c
+@@ -752,7 +752,7 @@
+ 
+ 	todel = atoi(Cmd_Argv(1));
+ 
+-	if(todel < 0 || todel > serverBansCount)
++	if(todel <= 0 || todel > serverBansCount)
+ 		return;
+ 	
+ 	for(index = count = 0; index < serverBansCount; index++)

Modified: packages/trunk/openarena/debian/patches/series
===================================================================
--- packages/trunk/openarena/debian/patches/series	2009-08-21 22:10:50 UTC (rev 10163)
+++ packages/trunk/openarena/debian/patches/series	2009-08-21 22:12:22 UTC (rev 10164)
@@ -1,3 +1,4 @@
+delban_0_segfault.diff
 10_fix_build_and_binary_on_alpha.diff
 10_remove_upstream_build_flags.diff
 #20_dont_build_shipped_jpeg.diff




More information about the Pkg-games-commits mailing list