r8677 - in packages/trunk/fillets-ng/debian: . patches

Alexander Reichle-Schmehl tolimar at alioth.debian.org
Mon Jan 19 21:33:37 UTC 2009


Author: tolimar
Date: 2009-01-19 21:33:36 +0000 (Mon, 19 Jan 2009)
New Revision: 8677

Modified:
   packages/trunk/fillets-ng/debian/changelog
   packages/trunk/fillets-ng/debian/copyright
   packages/trunk/fillets-ng/debian/patches/gcc-4.3-fix
Log:
Various changes for next release

Modified: packages/trunk/fillets-ng/debian/changelog
===================================================================
--- packages/trunk/fillets-ng/debian/changelog	2009-01-19 20:52:41 UTC (rev 8676)
+++ packages/trunk/fillets-ng/debian/changelog	2009-01-19 21:33:36 UTC (rev 8677)
@@ -1,12 +1,13 @@
-fillets-ng (0.8.1-1) UNRELEASED; urgency=low
+fillets-ng (0.8.1-1) experimental; urgency=low
 
   [ Alexander Reichle-Schmehl ]
   * New upstream release
   * Changing my name in the Uploaders field
   * Bumping standards to 3.8.0:
     * Adding debian/README.source
+  * Updating debian/copyright
 
- -- Alexander Reichle-Schmehl <tolimar at debian.org>  Mon, 19 Jan 2009 21:52:06 +0100
+ -- Alexander Reichle-Schmehl <tolimar at debian.org>  Mon, 19 Jan 2009 22:33:11 +0100
 
 fillets-ng (0.8.0-2) unstable; urgency=low
 

Modified: packages/trunk/fillets-ng/debian/copyright
===================================================================
--- packages/trunk/fillets-ng/debian/copyright	2009-01-19 20:52:41 UTC (rev 8676)
+++ packages/trunk/fillets-ng/debian/copyright	2009-01-19 21:33:36 UTC (rev 8677)
@@ -4,22 +4,40 @@
 It was downloaded from http://fillets.sourceforge.net
 
 Upstream Authors:
-    Ivo Danihelka (ivo at danihelka.net)
-    Pavel Danihelka (fillets at danihelka.net)
-    ALTAR interactive (info at altarinteractive.com)
-    Frederic Panico <fratloev at yahoo.fr>
-    Ronny Standtke <Ronny.Standtke at gmx.de>
-    Simone Cociancich <simone.coch at tin.it>
-    Przemek Bojczuk <przemek at bojczuk.pl>
-    César Catrián C. <ccatrian at eml.cc>
-    Astrid de Wijn <A.S.deWijn at phys.uu.nl>
-    Damyan Ivanov <divanov at creditreform.bg>
-    Olov Gustavsson <olov.gustavsson at bredband.net>
+   Ivo Danihelka <ivo at danihelka.net>
+   Pavel Danihelka <fillets at danihelka.net>
+   Frederic Panico <fratloev at yahoo.fr>
+   Ronny Standtke <Ronny.Standtke at gmx.de>
+   Simone Cociancich <simone.coch at tin.it>
+   Przemek Bojczuk <przemek at bojczuk.pl>
+   César Catrián C. <ccatrian at eml.cc>
+   Astrid de Wijn <A.S.deWijn at phys.uu.nl>
+   Damyan Ivanov <divanov at creditreform.bg>
+   Olov Gustavsson <olov.gustavsson at bredband.net>
+   Marko Burjek <email4marko at gmail.com>
+   Ricardo Faria <rickybrag at gmail.com>
+   Leonid Myravjev <lemy at bk.ru>
+   ALTAR interactive <info at altarinteractive.com>
 
 
-
 Copyright:
+   Copyright (C) 2004 - 2008 Ivo Danihelka 
+   Copyright (C) 2004 - 2008 Pavel Danihelka 
+   Copyright (C) 2004 - 2008 Frederic Panico 
+   Copyright (C) 2004 - 2008 Ronny Standtke 
+   Copyright (C) 2004 - 2008 Simone Cociancich 
+   Copyright (C) 2004 - 2008 Przemek Bojczuk 
+   Copyright (C) 2004 - 2008 César Catrián C. 
+   Copyright (C) 2004 - 2008 Astrid de Wijn 
+   Copyright (C) 2004 - 2008 Damyan Ivanov 
+   Copyright (C) 2004 - 2008 Olov Gustavsson 
+   Copyright (C) 2004 - 2008 Marko Burjek 
+   Copyright (C) 2004 - 2008 Ricardo Faria 
+   Copyright (C) 2004 - 2008 Leonid Myravjev 
 
+
+License:
+
    This package 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; version 2 dated June, 1991.

Modified: packages/trunk/fillets-ng/debian/patches/gcc-4.3-fix
===================================================================
--- packages/trunk/fillets-ng/debian/patches/gcc-4.3-fix	2009-01-19 20:52:41 UTC (rev 8676)
+++ packages/trunk/fillets-ng/debian/patches/gcc-4.3-fix	2009-01-19 21:33:36 UTC (rev 8677)
@@ -1,38 +1,32 @@
 Author: Martin Michlmayr <tbm at cyrius.com>	vim:ft=diff:
 Description: add missing #include statements, BTS #417187
 
-Index: fillets-ng-0.8.0/src/gengine/OptionAgent.cpp
-===================================================================
---- fillets-ng-0.8.0.orig/src/gengine/OptionAgent.cpp
-+++ fillets-ng-0.8.0/src/gengine/OptionAgent.cpp
+--- a/src/gengine/OptionAgent.cpp
++++ b/src/gengine/OptionAgent.cpp
 @@ -23,6 +23,7 @@
  #include "UnknownMsgException.h"
  #include "minmax.h"
  
 +#include <cstdlib> //getenv
+ #include <stdlib.h> //getenv
  #include <string.h> //strlen
  #include <locale.h> //setlocale
- 
-Index: fillets-ng-0.8.0/src/gengine/StringTool.cpp
-===================================================================
---- fillets-ng-0.8.0.orig/src/gengine/StringTool.cpp
-+++ fillets-ng-0.8.0/src/gengine/StringTool.cpp
-@@ -8,6 +8,7 @@
-  */
+--- a/src/gengine/StringTool.cpp
++++ b/src/gengine/StringTool.cpp
+@@ -9,6 +9,7 @@
  #include "StringTool.h"
  
+ #include <stdlib.h>
 +#include <cstdlib>
  #include <sstream>
  
  //-----------------------------------------------------------------
-Index: fillets-ng-0.8.0/src/level/Landslip.cpp
-===================================================================
---- fillets-ng-0.8.0.orig/src/level/Landslip.cpp
-+++ fillets-ng-0.8.0/src/level/Landslip.cpp
-@@ -11,6 +11,8 @@
- #include "Rules.h"
- #include "minmax.h"
+--- a/src/level/Landslip.cpp
++++ b/src/level/Landslip.cpp
+@@ -13,6 +13,8 @@
  
+ #include <string.h>
+ 
 +#include <cstring>
 +
  //-----------------------------------------------------------------




More information about the Pkg-games-commits mailing list