Author: pdewacht-guest Date: 2009-11-21 18:35:33 +0000 (Sat, 21 Nov 2009) New Revision: 10549
Modified: packages/trunk/xboing/debian/changelog packages/trunk/xboing/debian/patches/010_initial_patches.diff packages/trunk/xboing/debian/patches/030_auto_validate_yn.diff packages/trunk/xboing/debian/patches/040_manpage_errors.diff packages/trunk/xboing/debian/patches/Imakefile.fhs.diff packages/trunk/xboing/debian/patches/init.c.diff packages/trunk/xboing/debian/patches/mousemove.diff packages/trunk/xboing/debian/patches/series packages/trunk/xboing/debian/patches/speed_fix.diff packages/trunk/xboing/debian/patches/xboing.6x_man_section.diff Log: xboing: made compatible with source format 3.0 (quilt) Modified: packages/trunk/xboing/debian/changelog =================================================================== --- packages/trunk/xboing/debian/changelog 2009-11-20 23:51:09 UTC (rev 10548) +++ packages/trunk/xboing/debian/changelog 2009-11-21 18:35:33 UTC (rev 10549) @@ -1,10 +1,15 @@ xboing (2.4-31.1) UNRELEASED; urgency=low + [ Barry deFreese ] * Non-maintainer upload. * NOT RELEASED YET - -- Barry deFreese <[email protected]> Sat, 14 Jun 2008 21:15:51 -0400 + [ Peter De Wachter ] + * Refreshed patches, now compatible with source format 3.0 (quilt) + (Closes: #532580) + -- Peter De Wachter <[email protected]> Sat, 21 Nov 2009 19:32:34 +0100 + xboing (2.4-31) unstable; urgency=low [ Ansgar Burchardt ] Modified: packages/trunk/xboing/debian/patches/010_initial_patches.diff =================================================================== --- packages/trunk/xboing/debian/patches/010_initial_patches.diff 2009-11-20 23:51:09 UTC (rev 10548) +++ packages/trunk/xboing/debian/patches/010_initial_patches.diff 2009-11-21 18:35:33 UTC (rev 10549) @@ -1,7 +1,5 @@ -Index: xboing-2.4/audio/soundIt.c -=================================================================== ---- /dev/null 1970-01-01 00:00:00.000000000 +0000 -+++ xboing-2.4/audio/soundIt.c 2006-05-30 12:53:03.000000000 +0200 +--- /dev/null ++++ b/audio/soundIt.c @@ -0,0 +1,483 @@ +/* SoundIt library 0.021 + @@ -486,10 +484,8 @@ + + return 0; + } -Index: xboing-2.4/audio/soundIt.h -=================================================================== ---- /dev/null 1970-01-01 00:00:00.000000000 +0000 -+++ xboing-2.4/audio/soundIt.h 2006-05-30 12:53:03.000000000 +0200 +--- /dev/null ++++ b/audio/soundIt.h @@ -0,0 +1,82 @@ +/* SoundIt library 0.03 + @@ -573,10 +569,8 @@ + + +#endif -Index: xboing-2.4/Imakefile -=================================================================== ---- xboing-2.4.orig/Imakefile 2006-05-30 12:52:57.000000000 +0200 -+++ xboing-2.4/Imakefile 2006-05-30 12:53:03.000000000 +0200 +--- a/Imakefile ++++ b/Imakefile @@ -24,18 +24,24 @@ XCOMM This is the directory where the highscore, level & sound data will be XCOMM placed. Default will be the current directory. @@ -703,10 +697,8 @@ XCOMM I use this for my daily backup of my code. -Index: xboing-2.4/demo.c -=================================================================== ---- xboing-2.4.orig/demo.c 2006-05-30 12:52:57.000000000 +0200 -+++ xboing-2.4/demo.c 2006-05-30 12:53:03.000000000 +0200 +--- a/demo.c ++++ b/demo.c @@ -154,7 +154,7 @@ /* Construct the demo level filename */ @@ -716,10 +708,8 @@ else sprintf(levelPath, "%s/demo.data", LEVEL_INSTALL_DIR); -Index: xboing-2.4/editor.c -=================================================================== ---- xboing-2.4.orig/editor.c 2006-05-30 12:52:57.000000000 +0200 -+++ xboing-2.4/editor.c 2006-05-30 12:53:03.000000000 +0200 +--- a/editor.c ++++ b/editor.c @@ -213,7 +213,7 @@ /* Construct the Edit level filename */ @@ -753,10 +743,8 @@ else sprintf(levelPath, "%s/level%02ld.data", LEVEL_INSTALL_DIR, (u_long) num); -Index: xboing-2.4/error.c -=================================================================== ---- xboing-2.4.orig/error.c 2006-05-30 12:52:58.000000000 +0200 -+++ xboing-2.4/error.c 2006-05-30 12:53:03.000000000 +0200 +--- a/error.c ++++ b/error.c @@ -87,8 +87,8 @@ #ifndef READMEP_FILE @@ -768,10 +756,8 @@ #endif /* Print a standard error message to stdout and flush it */ fprintf(stdout, "XBoing - Error: %s\n", message); -Index: xboing-2.4/file.c -=================================================================== ---- xboing-2.4.orig/file.c 2006-05-30 12:52:58.000000000 +0200 -+++ xboing-2.4/file.c 2006-05-30 12:53:03.000000000 +0200 +--- a/file.c ++++ b/file.c @@ -139,7 +139,7 @@ /* Construct the level filename */ @@ -817,10 +803,8 @@ if (SaveLevelDataFile(display, levelPath) == True) { -Index: xboing-2.4/highscore.c -=================================================================== ---- xboing-2.4.orig/highscore.c 2006-05-30 12:52:58.000000000 +0200 -+++ xboing-2.4/highscore.c 2006-05-30 12:53:03.000000000 +0200 +--- a/highscore.c ++++ b/highscore.c @@ -1023,7 +1023,7 @@ { /* Use the environment variable if it exists */ @@ -848,10 +832,8 @@ else strcpy(filename, HIGH_SCORE_FILE); -Index: xboing-2.4/init.c -=================================================================== ---- xboing-2.4.orig/init.c 2006-05-30 12:52:58.000000000 +0200 -+++ xboing-2.4/init.c 2006-05-30 12:53:03.000000000 +0200 +--- a/init.c ++++ b/init.c @@ -438,7 +438,7 @@ WarningMessage("Your X Window system display variable is not set."); else @@ -861,10 +843,8 @@ WarningMessage(string); } } -Index: xboing-2.4/misc.c -=================================================================== ---- xboing-2.4.orig/misc.c 2006-05-30 12:52:58.000000000 +0200 -+++ xboing-2.4/misc.c 2006-05-30 12:53:03.000000000 +0200 +--- a/misc.c ++++ b/misc.c @@ -116,6 +116,10 @@ long SyncTime; static unsigned long accu; @@ -894,10 +874,8 @@ else *dest = '\0'; } -Index: xboing-2.4/preview.c -=================================================================== ---- xboing-2.4.orig/preview.c 2006-05-30 12:52:58.000000000 +0200 -+++ xboing-2.4/preview.c 2006-05-30 12:53:03.000000000 +0200 +--- a/preview.c ++++ b/preview.c @@ -139,7 +139,7 @@ /* Construct the Preview level filename */ Modified: packages/trunk/xboing/debian/patches/030_auto_validate_yn.diff =================================================================== --- packages/trunk/xboing/debian/patches/030_auto_validate_yn.diff 2009-11-20 23:51:09 UTC (rev 10548) +++ packages/trunk/xboing/debian/patches/030_auto_validate_yn.diff 2009-11-21 18:35:33 UTC (rev 10549) @@ -1,7 +1,5 @@ -Index: xboing-2.4/dialogue.c -=================================================================== ---- xboing-2.4.orig/dialogue.c 1996-11-22 02:28:46.000000000 +0100 -+++ xboing-2.4/dialogue.c 2006-05-30 21:49:22.000000000 +0200 +--- a/dialogue.c ++++ b/dialogue.c @@ -403,6 +403,8 @@ default: Modified: packages/trunk/xboing/debian/patches/040_manpage_errors.diff =================================================================== --- packages/trunk/xboing/debian/patches/040_manpage_errors.diff 2009-11-20 23:51:09 UTC (rev 10548) +++ packages/trunk/xboing/debian/patches/040_manpage_errors.diff 2009-11-21 18:35:33 UTC (rev 10549) @@ -1,7 +1,5 @@ -Index: xboing-2.4.orig/xboing.man -=================================================================== ---- xboing-2.4.orig.orig/xboing.man 2008-06-13 15:16:25.000000000 -0400 -+++ xboing-2.4.orig/xboing.man 2008-06-13 17:25:52.000000000 -0400 +--- a/xboing.man ++++ b/xboing.man @@ -40,46 +40,45 @@ .\" ========================================================================= .\" Modified: packages/trunk/xboing/debian/patches/Imakefile.fhs.diff =================================================================== --- packages/trunk/xboing/debian/patches/Imakefile.fhs.diff 2009-11-20 23:51:09 UTC (rev 10548) +++ packages/trunk/xboing/debian/patches/Imakefile.fhs.diff 2009-11-21 18:35:33 UTC (rev 10549) @@ -1,7 +1,5 @@ -Index: Imakefile -=================================================================== ---- Imakefile.orig 2006-05-30 12:53:25.000000000 +0200 -+++ Imakefile 2006-05-30 12:53:45.000000000 +0200 +--- a/Imakefile ++++ b/Imakefile @@ -24,7 +24,7 @@ XCOMM This is the directory where the highscore, level & sound data will be XCOMM placed. Default will be the current directory. Modified: packages/trunk/xboing/debian/patches/init.c.diff =================================================================== --- packages/trunk/xboing/debian/patches/init.c.diff 2009-11-20 23:51:09 UTC (rev 10548) +++ packages/trunk/xboing/debian/patches/init.c.diff 2009-11-21 18:35:33 UTC (rev 10549) @@ -1,7 +1,5 @@ -Index: init.c -=================================================================== ---- init.c.orig 2006-05-30 12:53:03.000000000 +0200 -+++ init.c 2006-05-30 12:53:07.000000000 +0200 +--- a/init.c ++++ b/init.c @@ -470,12 +470,11 @@ fprintf(stdout, "%s%s", "Usage: XBoing [-version] [-usage] [-help] [-sync] ", Modified: packages/trunk/xboing/debian/patches/mousemove.diff =================================================================== --- packages/trunk/xboing/debian/patches/mousemove.diff 2009-11-20 23:51:09 UTC (rev 10548) +++ packages/trunk/xboing/debian/patches/mousemove.diff 2009-11-21 18:35:33 UTC (rev 10549) @@ -1,7 +1,5 @@ -Index: main.c -=================================================================== ---- main.c.orig 2006-05-30 12:52:54.000000000 +0200 -+++ main.c 2006-05-30 12:53:09.000000000 +0200 +--- a/main.c ++++ b/main.c @@ -254,6 +254,7 @@ if (ObtainMousePosition(display, playWindow, &x, &y)) { Modified: packages/trunk/xboing/debian/patches/series =================================================================== --- packages/trunk/xboing/debian/patches/series 2009-11-20 23:51:09 UTC (rev 10548) +++ packages/trunk/xboing/debian/patches/series 2009-11-21 18:35:33 UTC (rev 10549) @@ -1,8 +1,8 @@ 010_initial_patches.diff -Imakefile.fhs.diff -p0 -init.c.diff -p0 -mousemove.diff -p0 -speed_fix.diff -p0 -xboing.6x_man_section.diff -p0 +Imakefile.fhs.diff +init.c.diff +mousemove.diff +speed_fix.diff +xboing.6x_man_section.diff 030_auto_validate_yn.diff 040_manpage_errors.diff Modified: packages/trunk/xboing/debian/patches/speed_fix.diff =================================================================== --- packages/trunk/xboing/debian/patches/speed_fix.diff 2009-11-20 23:51:09 UTC (rev 10548) +++ packages/trunk/xboing/debian/patches/speed_fix.diff 2009-11-21 18:35:33 UTC (rev 10549) @@ -1,7 +1,5 @@ -Index: bonus.c -=================================================================== ---- bonus.c.orig 2006-05-30 12:52:54.000000000 +0200 -+++ bonus.c 2006-05-30 12:53:10.000000000 +0200 +--- a/bonus.c ++++ b/bonus.c @@ -311,7 +311,7 @@ XFlush(display); @@ -119,10 +117,8 @@ /* Finishing sentence - so you know what level to do */ sprintf(string, "Prepare for level %ld", level+1); -Index: main.c -=================================================================== ---- main.c.orig 2006-05-30 12:53:09.000000000 +0200 -+++ main.c 2006-05-30 12:53:10.000000000 +0200 +--- a/main.c ++++ b/main.c @@ -156,7 +156,7 @@ /* Set an entire game speedup or slowdown speed */ @@ -132,10 +128,8 @@ speed = (long) (temp * userDelay); speedLevel = 10 - delay; } -Index: misc.c -=================================================================== ---- misc.c.orig 2006-05-30 12:53:03.000000000 +0200 -+++ misc.c 2006-05-30 12:53:10.000000000 +0200 +--- a/misc.c ++++ b/misc.c @@ -89,8 +89,8 @@ #ifdef SYSV #ifdef __clipper__ @@ -321,10 +315,8 @@ } #if NeedFunctionPrototypes -Index: presents.c -=================================================================== ---- presents.c.orig 2006-05-30 12:52:54.000000000 +0200 -+++ presents.c 2006-05-30 12:53:10.000000000 +0200 +--- a/presents.c ++++ b/presents.c @@ -287,7 +287,7 @@ } #endif Modified: packages/trunk/xboing/debian/patches/xboing.6x_man_section.diff =================================================================== --- packages/trunk/xboing/debian/patches/xboing.6x_man_section.diff 2009-11-20 23:51:09 UTC (rev 10548) +++ packages/trunk/xboing/debian/patches/xboing.6x_man_section.diff 2009-11-21 18:35:33 UTC (rev 10549) @@ -1,5 +1,5 @@ ---- xboing.man.orig 2006-05-27 10:45:51.000000000 +0200 -+++ xboing.man 2006-05-27 10:46:04.000000000 +0200 +--- a/xboing.man ++++ b/xboing.man @@ -39,7 +39,7 @@ .\" .\" ========================================================================= _______________________________________________ Pkg-games-commits mailing list [email protected] http://lists.alioth.debian.org/mailman/listinfo/pkg-games-commits

