r5835 - in packages/trunk/warzone2100/debian: . patches

Paul Wise pabs at alioth.debian.org
Tue Feb 19 04:33:43 UTC 2008


Author: pabs
Date: 2008-02-19 04:33:42 +0000 (Tue, 19 Feb 2008)
New Revision: 5835

Removed:
   packages/trunk/warzone2100/debian/patches/fix-bogus-eof.patch
Modified:
   packages/trunk/warzone2100/debian/changelog
   packages/trunk/warzone2100/debian/copyright
   packages/trunk/warzone2100/debian/patches/series
Log:
  - Drop fix-bogus-eof.patch (applied upstream)
* Fix some issues with the copyright information

Modified: packages/trunk/warzone2100/debian/changelog
===================================================================
--- packages/trunk/warzone2100/debian/changelog	2008-02-18 20:21:58 UTC (rev 5834)
+++ packages/trunk/warzone2100/debian/changelog	2008-02-19 04:33:42 UTC (rev 5835)
@@ -1,8 +1,10 @@
 warzone2100 (2.1~beta1-1) UNRELEASED; urgency=low
 
   * New upstream beta release
+    - Drop fix-bogus-eof.patch (applied upstream)
   * Relax build-dependency on automake to satisfy lintian
   * Drop LGPL/GPL blurbs since they are not needed
+  * Fix some issues with the copyright information
 
  -- Paul Wise <pabs at debian.org>  Tue, 19 Feb 2008 00:34:57 +0900
 

Modified: packages/trunk/warzone2100/debian/copyright
===================================================================
--- packages/trunk/warzone2100/debian/copyright	2008-02-18 20:21:58 UTC (rev 5834)
+++ packages/trunk/warzone2100/debian/copyright	2008-02-19 04:33:42 UTC (rev 5835)
@@ -21,6 +21,7 @@
     Roman C. <troman> : Programming and Scripting + Scripting-engine rewrite and AI
     Denis Dupeyron <charun> : Programming
     Bruce V. Edwards <cathuria> : 2D/3D Graphics
+    Don Edwards : 2D Graphics support
     Mike Gilmore <Chojun> : Programming
     -- <Hatsjoe> : 2D Graphics
     Carl Hee <Watermelon> : Programming + Multiturrets
@@ -140,7 +141,7 @@
  General Public License and is *not* in the public domain.
 
 Files: data/texpages/bdrops/07-bdrop.png
-Copyright: 2007-2008 <cathuria>
+Copyright: 2007-2008 Bruce V. Edwards
 License: CC-BY-3.0
  Creative Commons Attribution 3.0 License Agreement
  

Deleted: packages/trunk/warzone2100/debian/patches/fix-bogus-eof.patch
===================================================================
--- packages/trunk/warzone2100/debian/patches/fix-bogus-eof.patch	2008-02-18 20:21:58 UTC (rev 5834)
+++ packages/trunk/warzone2100/debian/patches/fix-bogus-eof.patch	2008-02-19 04:33:42 UTC (rev 5835)
@@ -1,11 +0,0 @@
---- lib/ivis_common/imdload.c.orig
-+++ lib/ivis_common/imdload.c
-@@ -730,7 +730,7 @@
- 		ch = *pFileData++;
- 
- 		// Run up to the dot or till the buffer is filled. Leave room for the extension.
--		for( i = 0; i < PATH_MAX-5 && (ch = *pFileData++) != EOF && ch != '.'; i++ )
-+		for( i = 0; i < PATH_MAX-5 && (ch = *pFileData++) != '\0' && ch != '.'; i++ )
- 		{
-  			texfile[i] = (char)ch;
- 		}

Modified: packages/trunk/warzone2100/debian/patches/series
===================================================================
--- packages/trunk/warzone2100/debian/patches/series	2008-02-18 20:21:58 UTC (rev 5834)
+++ packages/trunk/warzone2100/debian/patches/series	2008-02-19 04:33:42 UTC (rev 5835)
@@ -1 +0,0 @@
-fix-bogus-eof.patch -p0




More information about the Pkg-games-commits mailing list