Hello community, here is the log from the commit of package rockdodger for openSUSE:Factory checked in at 2020-09-16 19:40:37 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/rockdodger (Old) and /work/SRC/openSUSE:Factory/.rockdodger.new.4249 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rockdodger" Wed Sep 16 19:40:37 2020 rev:7 rq:834864 version:1.1.4 Changes: -------- --- /work/SRC/openSUSE:Factory/rockdodger/rockdodger.changes 2019-11-13 13:14:16.382819784 +0100 +++ /work/SRC/openSUSE:Factory/.rockdodger.new.4249/rockdodger.changes 2020-09-16 19:40:43.950893235 +0200 @@ -1,0 +2,7 @@ +Tue Sep 15 21:54:00 UTC 2020 - Christophe Giboudeaux <[email protected]> + +- Update to 1.1.4 + * Fixed compiler issue with GCC-10. + * Fix header files. + +------------------------------------------------------------------- Old: ---- rockdodger-1.1.3.tar.gz New: ---- rockdodger-1.1.4.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ rockdodger.spec ++++++ --- /var/tmp/diff_new_pack.Tt8tRy/_old 2020-09-16 19:40:44.710894090 +0200 +++ /var/tmp/diff_new_pack.Tt8tRy/_new 2020-09-16 19:40:44.710894090 +0200 @@ -1,7 +1,7 @@ # # spec file for package rockdodger # -# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2020 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,7 +17,7 @@ Name: rockdodger -Version: 1.1.3 +Version: 1.1.4 Release: 0 Summary: Addictive rock-dodging greeblie-killing platform game License: GPL-2.0-or-later ++++++ rockdodger-1.1.3.tar.gz -> rockdodger-1.1.4.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/rockdodger-1.1.3/Makefile new/rockdodger-1.1.4/Makefile --- old/rockdodger-1.1.3/Makefile 2018-07-28 10:20:48.000000000 +0200 +++ new/rockdodger-1.1.4/Makefile 2020-07-24 21:19:35.000000000 +0200 @@ -21,7 +21,7 @@ VMAJOR=1 VMINOR=1 -VRELEASE=3 +VRELEASE=4 VERSION=$(VMAJOR).$(VMINOR).$(VRELEASE) PACKAGENAME=rockdodger diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/rockdodger-1.1.3/blubats.c new/rockdodger-1.1.4/blubats.c --- old/rockdodger-1.1.3/blubats.c 2018-07-28 10:20:48.000000000 +0200 +++ new/rockdodger-1.1.4/blubats.c 2020-07-24 21:19:35.000000000 +0200 @@ -205,7 +205,7 @@ unsigned int i; struct doctrine_pos **docarrptr; struct doctrine_pos *docptr; - struct doctrine_pos *doc_pos_arrs[] = { + static struct doctrine_pos *doc_pos_arrs[] = { doctrine0, doctrine1, doctrine2, doctrine3, doctrine4, doctrine5, doctrine6, doctrine7, doctrine8 }; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/rockdodger-1.1.3/blubats.h new/rockdodger-1.1.4/blubats.h --- old/rockdodger-1.1.3/blubats.h 2018-07-28 10:20:48.000000000 +0200 +++ new/rockdodger-1.1.4/blubats.h 2020-07-24 21:19:35.000000000 +0200 @@ -5,7 +5,7 @@ #include "datafun.h" #include "globals.h" -sdl_surfaces_t *surf_blubats; //!< blubat animation sequence +extern sdl_surfaces_t *surf_blubats; //!< blubat animation sequence /*! \brief Initialise blubats * Binary files old/rockdodger-1.1.3/data/iff.configdata.rock and new/rockdodger-1.1.4/data/iff.configdata.rock differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/rockdodger-1.1.3/globals.h new/rockdodger-1.1.4/globals.h --- old/rockdodger-1.1.3/globals.h 2018-07-28 10:20:48.000000000 +0200 +++ new/rockdodger-1.1.4/globals.h 2020-07-24 21:19:35.000000000 +0200 @@ -95,7 +95,7 @@ * call to SDL_GetVideoSurface(). I do not know how fast this function * call is and if the variable is actually useless... (RPK) */ -SDL_Surface *surf_screen; +extern SDL_Surface *surf_screen; /*! \brief pointer to spacedots (background) engine */ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/rockdodger-1.1.3/powerup.h new/rockdodger-1.1.4/powerup.h --- old/rockdodger-1.1.3/powerup.h 2018-07-28 10:20:48.000000000 +0200 +++ new/rockdodger-1.1.4/powerup.h 2020-07-24 21:19:35.000000000 +0200 @@ -27,7 +27,7 @@ * Here we store all surfaces for the powerup animations. The order is * the same as the powerup numbers. */ -sdl_surfaces_t *surf_powerups[POWERUP_MAXPOWERUP]; +extern sdl_surfaces_t *surf_powerups[POWERUP_MAXPOWERUP]; /*! \brief Get the current powerup type.
