Author: evgeni
Date: 2009-10-20 09:58:33 +0000 (Tue, 20 Oct 2009)
New Revision: 10438

Added:
   packages/trunk/blocks-of-the-undead/debian/README.source
Modified:
   packages/trunk/blocks-of-the-undead/debian/changelog
   packages/trunk/blocks-of-the-undead/debian/control
   packages/trunk/blocks-of-the-undead/debian/patches/01-sleep_a_bit.patch
   
packages/trunk/blocks-of-the-undead/debian/patches/02_accept_mousepress_as_anykey.patch
   packages/trunk/blocks-of-the-undead/debian/rules
Log:
* debian/control:
  + Update my e-mail address.
  + Standards-Version: 3.8.3
  + Add ${misc:Depends} to -data Depends as suggested by lintian.
* debian/rules:
  + Update config.{sub,guess} to prevent FTBFS on avr32.
    Closes: #550111
* debian/README.source:
  + Add README.source for quilt.
* debian/patches/*:
  + Add descriptions to the patches according to DEP3.



Added: packages/trunk/blocks-of-the-undead/debian/README.source
===================================================================
--- packages/trunk/blocks-of-the-undead/debian/README.source                    
        (rev 0)
+++ packages/trunk/blocks-of-the-undead/debian/README.source    2009-10-20 
09:58:33 UTC (rev 10438)
@@ -0,0 +1,2 @@
+This package uses quilt for patch handling.
+Please read /usr/share/doc/quilt/README.source for further information.

Modified: packages/trunk/blocks-of-the-undead/debian/changelog
===================================================================
--- packages/trunk/blocks-of-the-undead/debian/changelog        2009-10-19 
23:44:50 UTC (rev 10437)
+++ packages/trunk/blocks-of-the-undead/debian/changelog        2009-10-20 
09:58:33 UTC (rev 10438)
@@ -2,8 +2,19 @@
 
   * debian/patches/02_accept_mousepress_as_anykey.patch:
     + Update the patch to accept a mousepress during the splashscreen too.
+  * debian/control:
+    + Update my e-mail address.
+    + Standards-Version: 3.8.3
+    + Add ${misc:Depends} to -data Depends as suggested by lintian.
+  * debian/rules:
+    + Update config.{sub,guess} to prevent FTBFS on avr32.
+      Closes: #550111
+  * debian/README.source:
+    + Add README.source for quilt.
+  * debian/patches/*:
+    + Add descriptions to the patches according to DEP3.
 
- -- Evgeni Golov <[email protected]>  Sun, 26 Oct 2008 08:40:31 +0100
+ -- Evgeni Golov <[email protected]>  Tue, 20 Oct 2009 11:55:38 +0200
 
 blocks-of-the-undead (1.0-2) unstable; urgency=low
 

Modified: packages/trunk/blocks-of-the-undead/debian/control
===================================================================
--- packages/trunk/blocks-of-the-undead/debian/control  2009-10-19 23:44:50 UTC 
(rev 10437)
+++ packages/trunk/blocks-of-the-undead/debian/control  2009-10-20 09:58:33 UTC 
(rev 10438)
@@ -2,10 +2,10 @@
 Section: games
 Priority: optional
 Maintainer: Debian Games Team <[email protected]>
-Uploaders: Evgeni Golov <[email protected]>
+Uploaders: Evgeni Golov <[email protected]>
 Build-Depends: debhelper (>= 7.0.13), autotools-dev, quilt (>= 0.40),
  libsdl1.2-dev, libsdl-gfx1.2-dev, libsdl-image1.2-dev, libsdl-mixer1.2-dev, 
libsdl-ttf2.0-dev
-Standards-Version: 3.8.0
+Standards-Version: 3.8.3
 Homepage: http://www.gamecreation.org/games/blocks-of-the-undead
 Vcs-Browser: 
http://svn.debian.org/wsvn/pkg-games/packages/trunk/blocks-of-the-undead/?op=log
 Vcs-Svn: 
svn://svn.debian.org/svn/pkg-games/packages/trunk/blocks-of-the-undead/
@@ -19,7 +19,7 @@
  around.
 
 Package: blocks-of-the-undead-data
-Depends: ttf-dejavu-core
+Depends: ${misc:Depends}, ttf-dejavu-core
 Architecture: all
 Description: Tetris Attack clone with spooky undertones - data files
  Blocks of the Undead is a puzzle game.

Modified: 
packages/trunk/blocks-of-the-undead/debian/patches/01-sleep_a_bit.patch
===================================================================
--- packages/trunk/blocks-of-the-undead/debian/patches/01-sleep_a_bit.patch     
2009-10-19 23:44:50 UTC (rev 10437)
+++ packages/trunk/blocks-of-the-undead/debian/patches/01-sleep_a_bit.patch     
2009-10-20 09:58:33 UTC (rev 10438)
@@ -1,3 +1,9 @@
+Description: Sleep between handling events
+ These can't accour that often and without a sleep we use way too much CPU.
+Forwarded: no
+Author: Evgeni Golov <[email protected]>
+Last-Update: 2008-10-18
+
 --- BlocksOfTheUndead-1.0/TetrisAttack/src/CTetrisGame.cpp     2005-01-17 
05:49:02.000000000 +0100
 +++ BlocksOfTheUndead-1.0.patched/TetrisAttack/src/CTetrisGame.cpp     
2008-10-18 21:17:42.000000000 +0200
 @@ -159,6 +159,7 @@

Modified: 
packages/trunk/blocks-of-the-undead/debian/patches/02_accept_mousepress_as_anykey.patch
===================================================================
--- 
packages/trunk/blocks-of-the-undead/debian/patches/02_accept_mousepress_as_anykey.patch
     2009-10-19 23:44:50 UTC (rev 10437)
+++ 
packages/trunk/blocks-of-the-undead/debian/patches/02_accept_mousepress_as_anykey.patch
     2009-10-20 09:58:33 UTC (rev 10438)
@@ -1,3 +1,10 @@
+Description: a mousepress is also an anykey
+ When the use is asked to "press any key", accept a mousepress to,
+ so the user does not have touse the keyboard in a mouse-driven game.
+Forwarded: no
+Author: Evgeni Golov <[email protected]>
+Last-Update: 2008-10-26
+
 Index: blocks-of-the-undead-1.0/TetrisAttack/src/CTetrisGame.cpp
 ===================================================================
 --- blocks-of-the-undead-1.0.orig/TetrisAttack/src/CTetrisGame.cpp     
2008-10-26 08:33:57.000000000 +0100

Modified: packages/trunk/blocks-of-the-undead/debian/rules
===================================================================
--- packages/trunk/blocks-of-the-undead/debian/rules    2009-10-19 23:44:50 UTC 
(rev 10437)
+++ packages/trunk/blocks-of-the-undead/debian/rules    2009-10-20 09:58:33 UTC 
(rev 10438)
@@ -5,12 +5,16 @@
 build: build-stamp
 build-stamp: $(QUILT_STAMPFN)
        dh build --before configure
+       # update config.{sub,guess} to fix FTBFS on avr32 (#550111)
+       cp /usr/share/misc/config.sub .
+       cp /usr/share/misc/config.guess .
        dh_auto_configure -- --datadir=/usr/share/games --bindir=/usr/games 
--disable-animview
        dh build --after configure
        touch $@
 
 clean: unpatch
        dh clean
+       dh_clean config.guess config.sub
 
 install: install-stamp
 install-stamp: build


_______________________________________________
Pkg-games-commits mailing list
[email protected]
http://lists.alioth.debian.org/mailman/listinfo/pkg-games-commits

Reply via email to