Author: goneri Date: 2009-05-11 22:01:23 +0000 (Mon, 11 May 2009) New Revision: 9714
Added: packages/tags/bloboats/1.0.1.dsfg-3/ packages/tags/bloboats/1.0.1.dsfg-3/debian/changelog packages/tags/bloboats/1.0.1.dsfg-3/debian/patches/fix_segfault_notebook.diff packages/tags/bloboats/1.0.1.dsfg-3/debian/patches/series Removed: packages/tags/bloboats/1.0.1.dsfg-3/debian/changelog packages/tags/bloboats/1.0.1.dsfg-3/debian/patches/series Log: tag bloboats 1.0.1.dsfg-3 Deleted: packages/tags/bloboats/1.0.1.dsfg-3/debian/changelog =================================================================== --- packages/trunk/bloboats/debian/changelog 2009-05-11 19:54:28 UTC (rev 9712) +++ packages/tags/bloboats/1.0.1.dsfg-3/debian/changelog 2009-05-11 22:01:23 UTC (rev 9714) @@ -1,54 +0,0 @@ -bloboats (1.0.1.dsfg-3) UNRELEASED; urgency=low - - [ Paul Wise ] - * Add a watch file - * Update upstream URLs - - [ Gonéri Le Bouder ] - * Use /usr/share/quilt/quilt.make to call quilt - * Unapply the patches during the clean, thanks Raphael Geisser - * Standard version 3.8.1 - - do not ignore 'make clean' return - * deals correctly with noopt and debug, thanks Raphael Geisser - * Apply Raphael Geisser patch to pass correct parameter to SDL_SetVideoMode - - -- Gonéri Le Bouder <[email protected]> Sun, 19 Apr 2009 00:00:15 +0200 - -bloboats (1.0.1.dsfg-2) unstable; urgency=low - - [ William Lima ] - * Add call to dh_desktop to debian/rules - * Add .desktop file (Closes: #466287) - - [ Jon Dowland ] - * add Homepage: control field to source stanza - - [ Barry deFreese ] - * Update fix_makefile.patch to remove strip. (Closes: #436595). - * Remove Homepage from package description. - * Add VCS tags in control. - * Bump Standards Version to 3.7.3. (No changes needed). - * Add myself to uploaders. - - [ Ansgar Burchardt ] - * Add Icon to .desktop file - - [ Gonéri Le Bouder ] - * remove libsdl-mixer1.2-dev since it's not needed for the moment - * do not link with sdl-mixer too (fix_makefile.patch updated) - - -- Gonéri Le Bouder <[email protected]> Wed, 20 Feb 2008 16:38:06 +0000 - -bloboats (1.0.1.dsfg-1) unstable; urgency=low - - [ Gonéri Le Bouder ] - * Initial release (Closes: #383945) - * dfsg: sound files removed - - README.Debian created to explain the issue. - - [ Jon Dowland ] - * update menu section to "Games/Action" for menu transition - (thanks Linas Žvirblis) - - -- Jon Dowland <[email protected]> Thu, 12 Jul 2007 11:23:53 +0100 - Copied: packages/tags/bloboats/1.0.1.dsfg-3/debian/changelog (from rev 9713, packages/trunk/bloboats/debian/changelog) =================================================================== --- packages/tags/bloboats/1.0.1.dsfg-3/debian/changelog (rev 0) +++ packages/tags/bloboats/1.0.1.dsfg-3/debian/changelog 2009-05-11 22:01:23 UTC (rev 9714) @@ -0,0 +1,57 @@ +bloboats (1.0.1.dsfg-3) unstable; urgency=low + + [ Paul Wise ] + * Add a watch file + * Update upstream URLs + + [ Gonéri Le Bouder ] + * Use /usr/share/quilt/quilt.make to call quilt + * Unapply the patches during the clean, thanks Raphael Geisser + * Standard version 3.8.1 + - do not ignore 'make clean' return + * deals correctly with noopt and debug, thanks Raphael Geisser + * Apply Raphael Geisser patch to pass correct parameter to SDL_SetVideoMode + * Add fix_segfault_notebook.diff to avoid a segfault if the screen + doesn't accept 1024x768 like most of the notebook computer + (Closes: #523271) + + -- Gonéri Le Bouder <[email protected]> Sun, 19 Apr 2009 00:00:15 +0200 + +bloboats (1.0.1.dsfg-2) unstable; urgency=low + + [ William Lima ] + * Add call to dh_desktop to debian/rules + * Add .desktop file (Closes: #466287) + + [ Jon Dowland ] + * add Homepage: control field to source stanza + + [ Barry deFreese ] + * Update fix_makefile.patch to remove strip. (Closes: #436595). + * Remove Homepage from package description. + * Add VCS tags in control. + * Bump Standards Version to 3.7.3. (No changes needed). + * Add myself to uploaders. + + [ Ansgar Burchardt ] + * Add Icon to .desktop file + + [ Gonéri Le Bouder ] + * remove libsdl-mixer1.2-dev since it's not needed for the moment + * do not link with sdl-mixer too (fix_makefile.patch updated) + + -- Gonéri Le Bouder <[email protected]> Wed, 20 Feb 2008 16:38:06 +0000 + +bloboats (1.0.1.dsfg-1) unstable; urgency=low + + [ Gonéri Le Bouder ] + * Initial release (Closes: #383945) + * dfsg: sound files removed + - README.Debian created to explain the issue. + + [ Jon Dowland ] + * update menu section to "Games/Action" for menu transition + (thanks Linas Žvirblis) + + -- Jon Dowland <[email protected]> Thu, 12 Jul 2007 11:23:53 +0100 + Copied: packages/tags/bloboats/1.0.1.dsfg-3/debian/patches/fix_segfault_notebook.diff (from rev 9713, packages/trunk/bloboats/debian/patches/fix_segfault_notebook.diff) =================================================================== --- packages/tags/bloboats/1.0.1.dsfg-3/debian/patches/fix_segfault_notebook.diff (rev 0) +++ packages/tags/bloboats/1.0.1.dsfg-3/debian/patches/fix_segfault_notebook.diff 2009-05-11 22:01:23 UTC (rev 9714) @@ -0,0 +1,39 @@ +--- bloboats-1.0.1.dsfg.orig/src/main.cpp ++++ bloboats-1.0.1.dsfg/src/main.cpp +@@ -197,7 +197,7 @@ + + if (Config.fullscreen) flags |= SDL_FULLSCREEN; + +- SDL_Surface *s; ++ SDL_Surface *s = NULL; + + if (!manualres) { + switch(Config.resolution) { +@@ -217,9 +217,13 @@ + s = Window.OpenWindow(1280, 1024, 32, flags); + break; + default: +- s = Window.OpenWindow(640, 480, 32, flags); ++ // Do nothing + break; + } ++ ++ if (!s) ++ s = Window.OpenWindow(640, 480, 32, flags); ++ + } else { + s = Window.OpenWindow(reswidth, resheight, 32, flags); + } +--- bloboats-1.0.1.dsfg.orig/src/window.cpp ++++ bloboats-1.0.1.dsfg/src/window.cpp +@@ -53,6 +53,10 @@ + + + screen = SDL_SetVideoMode(width, height, bpp, flags); ++ ++ if (!screen) ++ return NULL; ++ + SDL_EventState(SDL_VIDEOEXPOSE, SDL_ENABLE); + + // Set viewport Deleted: packages/tags/bloboats/1.0.1.dsfg-3/debian/patches/series =================================================================== --- packages/trunk/bloboats/debian/patches/series 2009-05-11 19:54:28 UTC (rev 9712) +++ packages/tags/bloboats/1.0.1.dsfg-3/debian/patches/series 2009-05-11 22:01:23 UTC (rev 9714) @@ -1,2 +0,0 @@ -fix_makefile.patch -uint32.diff Copied: packages/tags/bloboats/1.0.1.dsfg-3/debian/patches/series (from rev 9713, packages/trunk/bloboats/debian/patches/series) =================================================================== --- packages/tags/bloboats/1.0.1.dsfg-3/debian/patches/series (rev 0) +++ packages/tags/bloboats/1.0.1.dsfg-3/debian/patches/series 2009-05-11 22:01:23 UTC (rev 9714) @@ -0,0 +1,3 @@ +fix_segfault_notebook.diff +fix_makefile.patch +uint32.diff _______________________________________________ Pkg-games-commits mailing list [email protected] http://lists.alioth.debian.org/mailman/listinfo/pkg-games-commits

