r9214 - in packages/trunk/oneisenough/debian: . patches

Barry deFreese bdefreese at alioth.debian.org
Thu Mar 19 02:16:22 UTC 2009


Author: bdefreese
Date: 2009-03-19 02:16:22 +0000 (Thu, 19 Mar 2009)
New Revision: 9214

Modified:
   packages/trunk/oneisenough/debian/changelog
   packages/trunk/oneisenough/debian/copyright
   packages/trunk/oneisenough/debian/patches/font_path.patch
Log:
  * Add description to quilt patch.
  * Fix minor syntax issues in debian/copyright.


Modified: packages/trunk/oneisenough/debian/changelog
===================================================================
--- packages/trunk/oneisenough/debian/changelog	2009-03-19 01:53:20 UTC (rev 9213)
+++ packages/trunk/oneisenough/debian/changelog	2009-03-19 02:16:22 UTC (rev 9214)
@@ -8,6 +8,8 @@
 
   [ Barry deFreese ]
   * Add myself to uploaders.
+  * Add description to quilt patch.
+  * Fix minor syntax issues in debian/copyright.
   * Fix typo in package description. (Closes: #499628).
   * Bump Standards Version to 3.8.1. (No changes needed).
 

Modified: packages/trunk/oneisenough/debian/copyright
===================================================================
--- packages/trunk/oneisenough/debian/copyright	2009-03-19 01:53:20 UTC (rev 9213)
+++ packages/trunk/oneisenough/debian/copyright	2009-03-19 02:16:22 UTC (rev 9214)
@@ -9,15 +9,15 @@
 
 Copyright: 
 
-    Copyright (c) 2007 Olli Etuaho
+    Copyright (C) 2007 Olli Etuaho
 
 Copyright for bin/data/Vera.ttf:
 
-    Copyright (c) 2003 by Bitstream, Inc.
+    Copyright (C) 2003 by Bitstream, Inc.
 
 Copyright for bin/data/Vera.ttf:
 
-    Copyright (c) 2003 by Bitstream, Inc.
+    Copyright (C) 2003 by Bitstream, Inc.
 
 License:
 
@@ -82,5 +82,5 @@
 further information, contact: fonts at gnome dot org. 
 
 
-The Debian packaging is (C) 2007, Richard Hartmann
+The Debian packaging is Copyright (C) 2007, Richard Hartmann
 <richih-debian at net.in.tum.de> and is licensed under the GPL, see above.

Modified: packages/trunk/oneisenough/debian/patches/font_path.patch
===================================================================
--- packages/trunk/oneisenough/debian/patches/font_path.patch	2009-03-19 01:53:20 UTC (rev 9213)
+++ packages/trunk/oneisenough/debian/patches/font_path.patch	2009-03-19 02:16:22 UTC (rev 9214)
@@ -1,22 +1,24 @@
+Description: Change font to use ttf-dejavu instead of Vera.
+
 --- a/bin/game.py
 +++ b/bin/game.py
 @@ -14,7 +14,7 @@
- from camp import Camp
- 
- pygame.font.init()
--smallfont = pygame.font.Font(os.path.join("data","Vera.ttf"), 14)
-+smallfont = pygame.font.Font(os.path.join("/usr/share/fonts/truetype/ttf-dejavu","DejaVuSansMono.ttf"), 14)
- 
- dismiss_delay = 0
- 
+ from camp import Camp
+ 
+ pygame.font.init()
+-smallfont = pygame.font.Font(os.path.join("data","Vera.ttf"), 14)
++smallfont = pygame.font.Font(os.path.join("/usr/share/fonts/truetype/ttf-dejavu","DejaVuSansMono.ttf"), 14)
+ 
+ dismiss_delay = 0
+ 
 --- a/bin/mainmenu.py
 +++ b/bin/mainmenu.py
 @@ -8,7 +8,7 @@
- from locals import *
- import game
- 
--smallfont = pygame.font.Font(os.path.join("data","Vera.ttf"), 22)
-+smallfont = pygame.font.Font(os.path.join("/usr/share/fonts/truetype/ttf-dejavu","DejaVuSansMono.ttf"), 22)
- 
- def render_score(screen, score):
-   image = smallfont.render(str(score), 1, (0,0,0))
+ from locals import *
+ import game
+ 
+-smallfont = pygame.font.Font(os.path.join("data","Vera.ttf"), 22)
++smallfont = pygame.font.Font(os.path.join("/usr/share/fonts/truetype/ttf-dejavu","DejaVuSansMono.ttf"), 22)
+ 
+ def render_score(screen, score):
+   image = smallfont.render(str(score), 1, (0,0,0))




More information about the Pkg-games-commits mailing list