Author: bdefreese Date: 2009-03-19 19:44:59 +0000 (Thu, 19 Mar 2009) New Revision: 9228
Added: packages/trunk/donkey-bolonkey/debian/watch Modified: packages/trunk/donkey-bolonkey/debian/changelog packages/trunk/donkey-bolonkey/debian/control packages/trunk/donkey-bolonkey/debian/copyright packages/trunk/donkey-bolonkey/debian/patches/01_remove_strip.patch packages/trunk/donkey-bolonkey/debian/patches/02_fix_datapath.patch packages/trunk/donkey-bolonkey/debian/patches/series packages/trunk/donkey-bolonkey/debian/postinst Log: * New upstream release. (Closes: #498810). * Update my e-mail address. * Add watch file with comments about upstream naming. * Version GPL path in copyright and fix some syntax issues. * Add set -e in postinst. * Refresh patches against new source. * Bump Standards Version to 3.8.1. Refresh changelog. Modified: packages/trunk/donkey-bolonkey/debian/changelog =================================================================== --- packages/trunk/donkey-bolonkey/debian/changelog 2009-03-19 19:12:49 UTC (rev 9227) +++ packages/trunk/donkey-bolonkey/debian/changelog 2009-03-19 19:44:59 UTC (rev 9228) @@ -1,9 +1,19 @@ -donkey-bolonkey (2001-6) UNRELEASED; urgency=low +donkey-bolonkey (2008-1) unstable; urgency=low + [ Paul Wise ] * Update upstream homepage - -- Paul Wise <[email protected]> Sat, 31 Jan 2009 19:48:07 +0900 + [ Barry deFreese ] + * New upstream release. (Closes: #498810). + * Update my e-mail address. + * Add watch file with comments about upstream naming. + * Version GPL path in copyright and fix some syntax issues. + * Add set -e in postinst. + * Refresh patches against new source. + * Bump Standards Version to 3.8.1. + -- Barry deFreese <[email protected]> Thu, 19 Mar 2009 15:16:53 -0400 + donkey-bolonkey (2001-5.1) unstable; urgency=medium * Fix data path (Closes: #488433) Modified: packages/trunk/donkey-bolonkey/debian/control =================================================================== --- packages/trunk/donkey-bolonkey/debian/control 2009-03-19 19:12:49 UTC (rev 9227) +++ packages/trunk/donkey-bolonkey/debian/control 2009-03-19 19:44:59 UTC (rev 9228) @@ -2,9 +2,9 @@ Section: games Priority: extra Maintainer: Debian Games Team <[email protected]> -Uploaders: Barry deFreese <[email protected]> +Uploaders: Barry deFreese <[email protected]> Build-Depends: debhelper (>= 5), quilt, liballegro4.2-dev -Standards-Version: 3.7.3 +Standards-Version: 3.8.1 Homepage: http://www.davidcapello.com.ar/dkbk/ Vcs-Svn: svn://svn.debian.org/svn/pkg-games/packages/trunk/donkey-bolonkey/ Vcs-Browser: http://svn.debian.org/wsvn/pkg-games/packages/trunk/donkey-bolonkey/?op=log Modified: packages/trunk/donkey-bolonkey/debian/copyright =================================================================== --- packages/trunk/donkey-bolonkey/debian/copyright 2009-03-19 19:12:49 UTC (rev 9227) +++ packages/trunk/donkey-bolonkey/debian/copyright 2009-03-19 19:44:59 UTC (rev 9228) @@ -8,10 +8,10 @@ Upstream Author: David A. Capello <[email protected]> +Copyright: Copyright (C) 2001 David A. Capello + License: - Copyright (C) 2001 David A. Capello - This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or @@ -26,5 +26,5 @@ along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -The Debian packaging is (C) 2007, Gürkan Sengün <[email protected]> and -is licensed under the GPL, see `/usr/share/common-licenses/GPL'. +The Debian packaging is Copyright (C) 2007, Gürkan Sengün <[email protected]> and +is licensed under the GPL, see `/usr/share/common-licenses/GPL-2'. Modified: packages/trunk/donkey-bolonkey/debian/patches/01_remove_strip.patch =================================================================== --- packages/trunk/donkey-bolonkey/debian/patches/01_remove_strip.patch 2009-03-19 19:12:49 UTC (rev 9227) +++ packages/trunk/donkey-bolonkey/debian/patches/01_remove_strip.patch 2009-03-19 19:44:59 UTC (rev 9228) @@ -1,12 +1,13 @@ -diff -urN dkbk.orig/makefile.uni dkbk/makefile.uni ---- dkbk.orig/makefile.uni 2003-02-09 09:42:57.000000000 -0500 -+++ dkbk/makefile.uni 2007-12-11 18:07:22.000000000 -0500 +Index: dkbk/makefile.uni +=================================================================== +--- dkbk.orig/makefile.uni 2009-03-19 15:22:59.000000000 -0400 ++++ dkbk/makefile.uni 2009-03-19 15:23:15.000000000 -0400 @@ -5,7 +5,7 @@ level.o main.o particle.o player.o title.o CFLAGS = -Wall -m486 -O3 -ffast-math --LFLAGS = -s `allegro-config --libs --static` -+LFLAGS = `allegro-config --libs --static` +-LFLAGS = -s `allegro-config --libs` ++LFLAGS = `allegro-config --libs` default: all Modified: packages/trunk/donkey-bolonkey/debian/patches/02_fix_datapath.patch =================================================================== --- packages/trunk/donkey-bolonkey/debian/patches/02_fix_datapath.patch 2009-03-19 19:12:49 UTC (rev 9227) +++ packages/trunk/donkey-bolonkey/debian/patches/02_fix_datapath.patch 2009-03-19 19:44:59 UTC (rev 9228) @@ -1,6 +1,7 @@ -diff -Naur donkey-bolonkey-2001.orig/graphics.c donkey-bolonkey-2001/graphics.c ---- donkey-bolonkey-2001.orig/graphics.c 2003-01-14 21:30:40.000000000 +0100 -+++ donkey-bolonkey-2001/graphics.c 2008-07-08 00:15:31.000000000 +0200 +Index: dkbk/graphics.c +=================================================================== +--- dkbk.orig/graphics.c 2009-03-19 15:24:27.000000000 -0400 ++++ dkbk/graphics.c 2009-03-19 15:24:51.000000000 -0400 @@ -28,7 +28,7 @@ RGB *pal; int i, j; Modified: packages/trunk/donkey-bolonkey/debian/patches/series =================================================================== --- packages/trunk/donkey-bolonkey/debian/patches/series 2009-03-19 19:12:49 UTC (rev 9227) +++ packages/trunk/donkey-bolonkey/debian/patches/series 2009-03-19 19:44:59 UTC (rev 9228) @@ -1,3 +1,3 @@ + 01_remove_strip.patch 02_fix_datapath.patch - Modified: packages/trunk/donkey-bolonkey/debian/postinst =================================================================== --- packages/trunk/donkey-bolonkey/debian/postinst 2009-03-19 19:12:49 UTC (rev 9227) +++ packages/trunk/donkey-bolonkey/debian/postinst 2009-03-19 19:44:59 UTC (rev 9228) @@ -1,5 +1,7 @@ #!/bin/sh +set -e + SCOREDIR=/var/games/donkey-bolonkey case "$1" in Added: packages/trunk/donkey-bolonkey/debian/watch =================================================================== --- packages/trunk/donkey-bolonkey/debian/watch (rev 0) +++ packages/trunk/donkey-bolonkey/debian/watch 2009-03-19 19:44:59 UTC (rev 9228) @@ -0,0 +1 @@ +#Upstream doesn't use version in tarball name. _______________________________________________ Pkg-games-commits mailing list [email protected] http://lists.alioth.debian.org/mailman/listinfo/pkg-games-commits

