Author: bdefreese Date: 2009-03-20 19:41:13 +0000 (Fri, 20 Mar 2009) New Revision: 9237
Added: packages/trunk/bouncy/debian/patches/glvertex.patch Modified: packages/trunk/bouncy/debian/changelog packages/trunk/bouncy/debian/copyright packages/trunk/bouncy/debian/patches/series Log: * Minor syntax changes to debian/copyright. * glvertex.patch - Use glVertexXX instead of glVertex. (Closes: #516558). Modified: packages/trunk/bouncy/debian/changelog =================================================================== --- packages/trunk/bouncy/debian/changelog 2009-03-20 19:22:45 UTC (rev 9236) +++ packages/trunk/bouncy/debian/changelog 2009-03-20 19:41:13 UTC (rev 9237) @@ -8,6 +8,8 @@ [ Barry deFreese ] * Update my e-mail address. + * Minor syntax changes to debian/copyright. + * glvertex.patch - Use glVertexXX instead of glVertex. (Closes: #516558). * Bump Standards Version to 3.8.1. (No changes needed). -- Barry deFreese <[email protected]> Fri, 20 Mar 2009 15:21:49 -0400 Modified: packages/trunk/bouncy/debian/copyright =================================================================== --- packages/trunk/bouncy/debian/copyright 2009-03-20 19:22:45 UTC (rev 9236) +++ packages/trunk/bouncy/debian/copyright 2009-03-20 19:41:13 UTC (rev 9237) @@ -7,10 +7,10 @@ Copyright: - Artwork and code: Copyright (c) 2006 Richard Jones <[email protected]> - pyglyph: Copyright (c) 2006 Alex Holkner - euclid.py: Copyright (c) 2006 Alex Holkner - Vera TrueType Fonts: Copyright (c) 2003 Bitstream, Inc + Artwork and code: Copyright (C) 2006 Richard Jones <[email protected]> + pyglyph: Copyright (C) 2006 Alex Holkner + euclid.py: Copyright (C) 2006 Alex Holkner + Vera TrueType Fonts: Copyright (C) 2003 Bitstream, Inc License: @@ -36,7 +36,7 @@ euclid graphics maths module - Copyright (c) 2006 Alex Holkner + Copyright (C) 2006 Alex Holkner [email protected] This library is free software; you can redistribute it and/or modify it @@ -59,7 +59,7 @@ pyglyph: - Copyright (c) 2006 Alex Holkner + Copyright (C) 2006 Alex Holkner Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files @@ -131,5 +131,5 @@ <[email protected]>. -The Debian packaging is (C) 2007, Miriam Ruiz <[email protected]> and +The Debian packaging is Copyright (C) 2007, Miriam Ruiz <[email protected]> and is licensed under the GPL, see above. Added: packages/trunk/bouncy/debian/patches/glvertex.patch =================================================================== --- packages/trunk/bouncy/debian/patches/glvertex.patch (rev 0) +++ packages/trunk/bouncy/debian/patches/glvertex.patch 2009-03-20 19:41:13 UTC (rev 9237) @@ -0,0 +1,137 @@ +Index: bouncy-0.6.20071104/farmer.py +=================================================================== +--- bouncy-0.6.20071104.orig/farmer.py 2009-03-20 15:23:58.000000000 -0400 ++++ bouncy-0.6.20071104/farmer.py 2009-03-20 15:24:22.000000000 -0400 +@@ -189,7 +189,7 @@ + glColor(1, 0, 0) + glBegin(GL_LINE_STRIP) + for node in self.path.nodes: +- glVertex(node.l[0] + s, 0, node.l[1] + s) ++ glVertex3f(node.l[0] + s, 0, node.l[1] + s) + glEnd() + glEnable(GL_DEPTH_TEST) + +Index: bouncy-0.6.20071104/leveledit.py +=================================================================== +--- bouncy-0.6.20071104.orig/leveledit.py 2009-03-20 15:24:52.000000000 -0400 ++++ bouncy-0.6.20071104/leveledit.py 2009-03-20 15:25:21.000000000 -0400 +@@ -292,11 +292,11 @@ + glColor(1., 1., 1., .3) + glBegin(GL_LINES) + for x in range(left, left + self.width + 4*scale, 4*scale): +- glVertex(x, top, 30) +- glVertex(x, top+self.height + 4*scale, 30) ++ glVertex3f(x, top, 30) ++ glVertex3f(x, top+self.height + 4*scale, 30) + for y in range(top, top + self.height + 4*scale, 4*scale): +- glVertex(left, y, 30) +- glVertex(left+self.width + 4*scale, y, 30) ++ glVertex3f(left, y, 30) ++ glVertex3f(left+self.width + 4*scale, y, 30) + glEnd() + glPopMatrix() + glDisable(GL_BLEND) +Index: bouncy-0.6.20071104/map.py +=================================================================== +--- bouncy-0.6.20071104.orig/map.py 2009-03-20 15:25:28.000000000 -0400 ++++ bouncy-0.6.20071104/map.py 2009-03-20 15:26:10.000000000 -0400 +@@ -99,10 +99,10 @@ + glPushMatrix() + glTranslate(x+s, 0, z+s) + glBegin(GL_QUADS) +- glVertex(-s,0,-s) +- glVertex(-s,0,s) +- glVertex(s,0,s) +- glVertex(s,0,-s) ++ glVertex3f(-s,0,-s) ++ glVertex3f(-s,0,s) ++ glVertex3f(s,0,s) ++ glVertex3f(s,0,-s) + glEnd() + glPopMatrix() + +@@ -112,10 +112,10 @@ + self.rabbit.position.z) + glTranslate(x+s, 0, z+s) + glBegin(GL_QUADS) +- glVertex(-s,1,-s) +- glVertex(-s,1,s) +- glVertex(s,1,s) +- glVertex(s,1,-s) ++ glVertex3f(-s,1,-s) ++ glVertex3f(-s,1,s) ++ glVertex3f(s,1,s) ++ glVertex3f(s,1,-s) + glEnd() + glPopMatrix() + +@@ -126,10 +126,10 @@ + self.farmer.position.z) + glTranslate(x+s, 0, z+s) + glBegin(GL_QUADS) +- glVertex(-s,1,-s) +- glVertex(-s,1,s) +- glVertex(s,1,s) +- glVertex(s,1,-s) ++ glVertex3f(-s,1,-s) ++ glVertex3f(-s,1,s) ++ glVertex3f(s,1,s) ++ glVertex3f(s,1,-s) + glEnd() + glPopMatrix() + glEnable(GL_LIGHTING) +@@ -338,10 +338,10 @@ + + glColor4f(.5, .5, .5, .5) + glBegin(GL_QUADS) +- glVertex(0, 0, 5) +- glVertex(404, 0, 5) +- glVertex(404, 138, 5) +- glVertex(0, 138, 5) ++ glVertex3f(0, 0, 5) ++ glVertex3f(404, 0, 5) ++ glVertex3f(404, 138, 5) ++ glVertex3f(0, 138, 5) + glEnd() + + glPushMatrix() +Index: bouncy-0.6.20071104/pyglyph/font.py +=================================================================== +--- bouncy-0.6.20071104.orig/pyglyph/font.py 2009-03-20 15:26:47.000000000 -0400 ++++ bouncy-0.6.20071104/pyglyph/font.py 2009-03-20 15:27:34.000000000 -0400 +@@ -369,13 +369,13 @@ + glBegin(GL_QUADS) + for renderbox, texbox in boxes: + glTexCoord2f(texbox[0], texbox[1]) +- glVertex(renderbox[0], renderbox[1]) ++ glVertex2d(renderbox[0], renderbox[1]) + glTexCoord2f(texbox[2], texbox[1]) +- glVertex(renderbox[2], renderbox[1]) ++ glVertex2d(renderbox[2], renderbox[1]) + glTexCoord2f(texbox[2], texbox[3]) +- glVertex(renderbox[2], renderbox[3]) ++ glVertex2d(renderbox[2], renderbox[3]) + glTexCoord2f(texbox[0], texbox[3]) +- glVertex(renderbox[0], renderbox[3]) ++ glVertex2d(renderbox[0], renderbox[3]) + glEnd() + + def _pow2(n): +Index: bouncy-0.6.20071104/ui.py +=================================================================== +--- bouncy-0.6.20071104.orig/ui.py 2009-03-20 15:27:49.000000000 -0400 ++++ bouncy-0.6.20071104/ui.py 2009-03-20 15:28:09.000000000 -0400 +@@ -71,9 +71,9 @@ + glColor(0, 0, 0, min(1, float(ts)/ts_max)) + else: + glColor(0, 0, 0, max(0, 1 - float(ts)/ts_max)) +- glVertex(0, 0, 0) +- glVertex(0, y, 0) +- glVertex(x, y, 0) +- glVertex(x, 0, 0) ++ glVertex3f(0, 0, 0) ++ glVertex3f(0, y, 0) ++ glVertex3f(x, y, 0) ++ glVertex3f(x, 0, 0) + glEnd() + Modified: packages/trunk/bouncy/debian/patches/series =================================================================== --- packages/trunk/bouncy/debian/patches/series 2009-03-20 19:22:45 UTC (rev 9236) +++ packages/trunk/bouncy/debian/patches/series 2009-03-20 19:41:13 UTC (rev 9237) @@ -1,2 +1,3 @@ env.patch use_dejavu_fonts.patch +glvertex.patch _______________________________________________ Pkg-games-commits mailing list [email protected] http://lists.alioth.debian.org/mailman/listinfo/pkg-games-commits

