[pangzero] 09/68: pangzero (1.1-1) unstable; urgency=low

Markus Koschany apo at moszumanska.debian.org
Wed Jun 8 06:58:33 UTC 2016


This is an automated email from the git hooks/post-receive script.

apo pushed a commit to branch master
in repository pangzero.

commit f060fbf8fed83cba25bca31fdca902f3a65f0819
Author: Sam Hocevar <sho at debian.org>
Date:   Tue Feb 20 15:22:18 2007 +0000

    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
---
 debian/changelog                         | 11 +++++++++
 debian/control                           |  4 ++--
 debian/patches/100_rotozoom_patches.diff | 38 ++++++++++++++++++++++++++++++++
 debian/patches/series                    |  1 +
 debian/rules                             |  2 ++
 5 files changed, 54 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index b7c1e39..52ecb4d 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -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
diff --git a/debian/control b/debian/control
index 86cd66b..aa20870 100644
--- a/debian/control
+++ b/debian/control
@@ -2,8 +2,8 @@ Source: pangzero
 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
diff --git a/debian/patches/100_rotozoom_patches.diff b/debian/patches/100_rotozoom_patches.diff
new file mode 100644
index 0000000..eda3906
--- /dev/null
+++ b/debian/patches/100_rotozoom_patches.diff
@@ -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 );
+   }
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 0000000..01b5892
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+100_rotozoom_patches.diff
diff --git a/debian/rules b/debian/rules
index 3c579ed..9357c75 100755
--- a/debian/rules
+++ b/debian/rules
@@ -18,6 +18,7 @@ endif
 
 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 @@ clean:
 	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

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-games/pangzero.git



More information about the Pkg-games-commits mailing list