r2425 - in packages/trunk/pangzero/debian: . patches

Samuel Hocevar sho at alioth.debian.org
Tue Feb 20 16:22:19 CET 2007


Author: sho
Date: 2007-02-20 16:22:18 +0100 (Tue, 20 Feb 2007)
New Revision: 2425

Added:
   packages/trunk/pangzero/debian/patches/
   packages/trunk/pangzero/debian/patches/100_rotozoom_patches.diff
   packages/trunk/pangzero/debian/patches/series
Modified:
   packages/trunk/pangzero/debian/changelog
   packages/trunk/pangzero/debian/control
   packages/trunk/pangzero/debian/rules
Log:
pangzero (1.1-1) unstable; urgency=low

  * New upstream release (Closes: #408307).
  * debian/control:
    + Build-depend on quilt for patch management.
  * debian/patches/100_rotozoom_calls.diff:
    + New patch to fix ?\226?\128?\156uninitialized value in subroutine entry?\226?\128?\157 errors
      (Closes: #407743, #408851).

 -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Tue, 20 Feb 2007 14:20:20 +0100


Modified: packages/trunk/pangzero/debian/changelog
===================================================================
--- packages/trunk/pangzero/debian/changelog	2007-02-20 13:09:32 UTC (rev 2424)
+++ packages/trunk/pangzero/debian/changelog	2007-02-20 15:22:18 UTC (rev 2425)
@@ -1,3 +1,14 @@
+pangzero (1.1-1) unstable; urgency=low
+
+  * New upstream release (Closes: #408307).
+  * debian/control:
+    + Build-depend on quilt for patch management.
+  * debian/patches/100_rotozoom_calls.diff:
+    + New patch to fix “uninitialized value in subroutine entry” errors
+      (Closes: #407743, #408851).
+
+ -- Sam Hocevar (Debian packages) <sam+deb at zoy.org>  Tue, 20 Feb 2007 14:20:20 +0100
+
 pangzero (0.17-1) unstable; urgency=low
 
   * Initial release. Closes: #381631

Modified: packages/trunk/pangzero/debian/control
===================================================================
--- packages/trunk/pangzero/debian/control	2007-02-20 13:09:32 UTC (rev 2424)
+++ packages/trunk/pangzero/debian/control	2007-02-20 15:22:18 UTC (rev 2425)
@@ -2,8 +2,8 @@
 Section: games
 Priority: extra
 Maintainer: Debian Games Team <pkg-games-devel at lists.alioth.debian.org>
-Uploaders: Miriam Ruiz <little_miry at yahoo.es>
-Build-Depends: debhelper (>= 5), autotools-dev, libsdl-perl
+Uploaders: Miriam Ruiz <little_miry at yahoo.es>, Sam Hocevar (Debian packages) <sam+deb at zoy.org>
+Build-Depends: debhelper (>= 5), quilt, autotools-dev, libsdl-perl
 Standards-Version: 3.7.2
 
 Package: pangzero

Added: packages/trunk/pangzero/debian/patches/100_rotozoom_patches.diff
===================================================================
--- packages/trunk/pangzero/debian/patches/100_rotozoom_patches.diff	2007-02-20 13:09:32 UTC (rev 2424)
+++ packages/trunk/pangzero/debian/patches/100_rotozoom_patches.diff	2007-02-20 15:22:18 UTC (rev 2425)
@@ -0,0 +1,38 @@
+--- pangzero-1.1/bin/pangzero	2006-12-15 11:04:14 +0100
++++ pangzero	2007-02-10 15:59:53 +0100
+@@ -2379,7 +2379,7 @@ sub RenderBorder {
+         -flags=>::SDL_SWSURFACE(), -width => 128, -height => 16, -depth => 32);
+     $srcrect1->x(16); $srcrect1->y(0); $srcrect1->width(128); $srcrect1->height(16);
+     $borderSurface->blit( $srcrect1, $zoom, new SDL::Rect );
+-    $::RotoZoomer->zoom( $zoom, $ScreenWidth / 128, 1);
++    $::RotoZoomer->zoom( $zoom, $ScreenWidth / 128, 1, 0);
+     $dstrect->x(16); $dstrect->y(0);
+     $zoom->blit( 0, $targetSurface, $dstrect );
+     
+@@ -2388,7 +2388,7 @@ sub RenderBorder {
+         -flags=>::SDL_SWSURFACE(), -width => 16, -height => 128, -depth => 32);
+     $srcrect1->x(0); $srcrect1->y(16); $srcrect1->height(128); $srcrect1->width(16);
+     $borderSurface->blit( $srcrect1, $zoom, new SDL::Rect );
+-    $::RotoZoomer->zoom( $zoom, 1, $ScreenHeight / 128);
++    $::RotoZoomer->zoom( $zoom, 1, $ScreenHeight / 128, 0);
+     $dstrect->x(0); $dstrect->y(16);
+     $zoom->blit( 0, $targetSurface, $dstrect );
+   }
+@@ -2429,7 +2429,7 @@ sub RenderBorder {
+         -flags=>::SDL_SWSURFACE(), -width => 128, -height => 16, -depth => 32);
+     $srcrect1->x(16); $srcrect1->y(0); $srcrect1->width(128); $srcrect1->height(16);
+     $borderSurface->blit( $srcrect1, $zoom, new SDL::Rect );
+-    $::RotoZoomer->zoom( $zoom, $ScreenWidth / 128, 1);
++    $::RotoZoomer->zoom( $zoom, $ScreenWidth / 128, 1, 0);
+     $dstrect->x(16); $dstrect->y(0);
+     $zoom->blit( 0, $targetSurface, $dstrect );
+     
+@@ -2438,7 +2438,7 @@ sub RenderBorder {
+         -flags=>::SDL_SWSURFACE(), -width => 16, -height => 128, -depth => 32);
+     $srcrect1->x(0); $srcrect1->y(16); $srcrect1->height(128); $srcrect1->width(16);
+     $borderSurface->blit( $srcrect1, $zoom, new SDL::Rect );
+-    $::RotoZoomer->zoom( $zoom, 1, $ScreenHeight / 128);
++    $::RotoZoomer->zoom( $zoom, 1, $ScreenHeight / 128, 0);
+     $dstrect->x(0); $dstrect->y(16);
+     $zoom->blit( 0, $targetSurface, $dstrect );
+   }

Added: packages/trunk/pangzero/debian/patches/series
===================================================================
--- packages/trunk/pangzero/debian/patches/series	2007-02-20 13:09:32 UTC (rev 2424)
+++ packages/trunk/pangzero/debian/patches/series	2007-02-20 15:22:18 UTC (rev 2425)
@@ -0,0 +1 @@
+100_rotozoom_patches.diff

Modified: packages/trunk/pangzero/debian/rules
===================================================================
--- packages/trunk/pangzero/debian/rules	2007-02-20 13:09:32 UTC (rev 2424)
+++ packages/trunk/pangzero/debian/rules	2007-02-20 15:22:18 UTC (rev 2425)
@@ -18,6 +18,7 @@
 
 config.status: configure
 	dh_testdir
+	QUILT_PATCHES=debian/patches quilt push -a || test $$? = 2
 ifneq "$(wildcard /usr/share/misc/config.sub)" ""
 	cp -f /usr/share/misc/config.sub config.sub
 endif
@@ -43,6 +44,7 @@
 	rm -f build-stamp 
 	-$(MAKE) distclean
 	-rm -f config.sub config.guess config.log config.status
+	QUILT_PATCHES=debian/patches quilt pop -a -R || test $$? = 2
 	dh_clean 
 
 install: build




More information about the Pkg-games-commits mailing list