Author: ansgar-guest
Date: 2008-02-17 23:07:26 +0000 (Sun, 17 Feb 2008)
New Revision: 5809

Modified:
   packages/trunk/whichwayisup/debian/
   packages/trunk/whichwayisup/debian/changelog
   packages/trunk/whichwayisup/debian/control
   packages/trunk/whichwayisup/debian/patches/font_path.patch
   packages/trunk/whichwayisup/debian/rules
   packages/trunk/whichwayisup/debian/whichwayisup.desktop
   packages/trunk/whichwayisup/debian/whichwayisup.links
Log:
* Switch to DejaVu fonts (Closes: #461296)
* New upstream release
  + Support for fullscreen mode (Closes: #431385)
* debian/control:
  + Remove Homepage semi-field from description
  + Change XS-Vcs-* to Vcs-*
  + Bump Debian Standards version to 3.7.3
  + Add myself to uploaders
* debian/rules:
  + Call dh_desktop
* debian/whichwayisup.desktop:
  + Remove deprecated Encoding key
* Include /usr/share/quilt/quilt.make instead of calling it


Property changes on: packages/trunk/whichwayisup/debian
___________________________________________________________________
Name: svn-bp:origUrl
   + http://pkg-games.alioth.debian.org/tarballs/whichwayisup_0.7.9.orig.tar.gz

Modified: packages/trunk/whichwayisup/debian/changelog
===================================================================
--- packages/trunk/whichwayisup/debian/changelog        2008-02-17 22:56:36 UTC 
(rev 5808)
+++ packages/trunk/whichwayisup/debian/changelog        2008-02-17 23:07:26 UTC 
(rev 5809)
@@ -1,4 +1,4 @@
-whichwayisup (0.7.0-2) UNRELEASED; urgency=low
+whichwayisup (0.7.9-1) UNRELEASED; urgency=low
 
   [ Miriam Ruiz ]
   * Fixed URL to GPL v2 in debian/copyright
@@ -8,8 +8,25 @@
   [ Jon Dowland ]
   * Add Homepage: to source control stanza
 
- -- Jon Dowland <[EMAIL PROTECTED]>  Mon, 03 Dec 2007 17:38:16 +0000
+  [ Evgeni Golov ]
+  * Switch to DejaVu fonts (Closes: #461296)
 
+  [ Ansgar Burchardt ]
+  * New upstream release
+    + Support for fullscreen mode (Closes: #431385)
+  * debian/control:
+    + Remove Homepage semi-field from description
+    + Change XS-Vcs-* to Vcs-*
+    + Bump Debian Standards version to 3.7.3
+    + Add myself to uploaders
+  * debian/rules:
+    + Call dh_desktop
+  * debian/whichwayisup.desktop:
+    + Remove deprecated Encoding key
+  * Include /usr/share/quilt/quilt.make instead of calling it
+
+ -- Ansgar Burchardt <[EMAIL PROTECTED]>  Mon, 18 Feb 2008 00:01:50 +0100
+
 whichwayisup (0.7.0-1) unstable; urgency=low
 
   [ Miriam Ruiz ]

Modified: packages/trunk/whichwayisup/debian/control
===================================================================
--- packages/trunk/whichwayisup/debian/control  2008-02-17 22:56:36 UTC (rev 
5808)
+++ packages/trunk/whichwayisup/debian/control  2008-02-17 23:07:26 UTC (rev 
5809)
@@ -2,20 +2,18 @@
 Section: games
 Priority: extra
 Maintainer: Debian Games Team <[EMAIL PROTECTED]> 
-Uploaders: Miriam Ruiz <[EMAIL PROTECTED]>
+Uploaders: Miriam Ruiz <[EMAIL PROTECTED]>, Ansgar Burchardt <[EMAIL 
PROTECTED]>
 Build-Depends: debhelper (>= 5), quilt
-Standards-Version: 3.7.2
-XS-Vcs-Svn: svn://svn.debian.org/svn/pkg-games/packages/trunk/whichwayisup/
-XS-Vcs-Browser: 
http://svn.debian.org/wsvn/pkg-games/packages/trunk/whichwayisup/?op=log
+Standards-Version: 3.7.3
+Vcs-Svn: svn://svn.debian.org/svn/pkg-games/packages/trunk/whichwayisup/
+Vcs-Browser: 
http://svn.debian.org/wsvn/pkg-games/packages/trunk/whichwayisup/?op=log
 Homepage: http://hectigo.net/puskutraktori/whichwayisup/
 
 Package: whichwayisup
 Architecture: all
-Depends: ttf-bitstream-vera, python, python-pygame, python-pyogg, 
${misc:Depends}
+Depends: ttf-dejavu-core, python, python-pygame, python-pyogg, ${misc:Depends}
 Description: 2D platform game with a slight rotational twist
  Which Way Is Up, a traditional and challenging 2D platform game with a
  slight rotational twist. Help a mysterious big-eared salaryman named Guy
  find his keys in a labyrinth of dangers and bad dialogue.
- .
-  Homepage: http://hectigo.net/puskutraktori/whichwayisup/
 

Modified: packages/trunk/whichwayisup/debian/patches/font_path.patch
===================================================================
--- packages/trunk/whichwayisup/debian/patches/font_path.patch  2008-02-17 
22:56:36 UTC (rev 5808)
+++ packages/trunk/whichwayisup/debian/patches/font_path.patch  2008-02-17 
23:07:26 UTC (rev 5809)
@@ -5,7 +5,7 @@
  
    pygame.font.init()
 -  smallfont = pygame.font.Font(data.filepath(os.path.join("misc", 
"Vera.ttf")), FONT_SIZE)
-+  smallfont = 
pygame.font.Font(data.filepath(os.path.join("/usr/share/fonts/truetype/ttf-bitstream-vera",
 "Vera.ttf")), FONT_SIZE)
++  smallfont = 
pygame.font.Font(data.filepath(os.path.join("/usr/share/fonts/truetype/ttf-dejavu",
 "DejaVuSans.ttf")), FONT_SIZE)
    cached_text_images = {}
    cached_images = {}
    cached_images["key_z"] = pygame.image.load(data.picpath("key", "z"))

Modified: packages/trunk/whichwayisup/debian/rules
===================================================================
--- packages/trunk/whichwayisup/debian/rules    2008-02-17 22:56:36 UTC (rev 
5808)
+++ packages/trunk/whichwayisup/debian/rules    2008-02-17 23:07:26 UTC (rev 
5809)
@@ -3,6 +3,8 @@
 # Uncomment this to turn on verbose mode.
 #export DH_VERBOSE=1
 
+include /usr/share/quilt/quilt.make
+
 CFLAGS = -Wall -g
 
 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
@@ -12,9 +14,8 @@
 endif
 
 configure: configure-stamp
-configure-stamp:
+configure-stamp: $(QUILT_STAMPFN)
        dh_testdir
-       $(MAKE) -f /usr/share/quilt/quilt.make patch
        touch $@
 
 build: build-stamp
@@ -22,11 +23,10 @@
        dh_testdir
        touch $@
 
-clean:
+clean: unpatch
        dh_testdir
        dh_testroot
        rm -f build-stamp configure-stamp
-       $(MAKE) -f /usr/share/quilt/quilt.make unpatch
        dh_clean 
 
 install: build
@@ -47,6 +47,7 @@
        dh_install
        dh_installmenu
        dh_installman
+       dh_desktop
        dh_link
        dh_strip
        dh_compress

Modified: packages/trunk/whichwayisup/debian/whichwayisup.desktop
===================================================================
--- packages/trunk/whichwayisup/debian/whichwayisup.desktop     2008-02-17 
22:56:36 UTC (rev 5808)
+++ packages/trunk/whichwayisup/debian/whichwayisup.desktop     2008-02-17 
23:07:26 UTC (rev 5809)
@@ -1,6 +1,5 @@
 [Desktop Entry]
 Type=Application
-Encoding=UTF-8
 Name=Which Way is Up
 GenericName=whichwayisup
 Comment=2D platform game with a slight rotational twist

Modified: packages/trunk/whichwayisup/debian/whichwayisup.links
===================================================================
--- packages/trunk/whichwayisup/debian/whichwayisup.links       2008-02-17 
22:56:36 UTC (rev 5808)
+++ packages/trunk/whichwayisup/debian/whichwayisup.links       2008-02-17 
23:07:26 UTC (rev 5809)
@@ -1 +1,2 @@
-usr/share/games/whichwayisup/game.sh usr/games/whichwayisup
\ No newline at end of file
+usr/share/games/whichwayisup/game.sh usr/games/whichwayisup
+


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

Reply via email to