Control: tags 778051 + pending

Dear maintainer,

I've prepared an NMU for overgod (versioned as 1.0-4.1) and
uploaded it to DELAYED/5. Please feel free to tell me if I
should delay it longer.

Regards.

-- 
 .''`.  Homepage: http://info.comodo.priv.at/ - OpenPGP key 0xBB3A68018649AA06
 : :' : Debian GNU/Linux user, admin, and developer -  https://www.debian.org/
 `. `'  Member of VIBE!AT & SPI, fellow of the Free Software Foundation Europe
   `-   NP: J.J. Cale: After Midnight
diff -Nru overgod-1.0/debian/changelog overgod-1.0/debian/changelog
--- overgod-1.0/debian/changelog	2013-09-17 20:20:08.000000000 +0200
+++ overgod-1.0/debian/changelog	2015-07-18 21:31:20.000000000 +0200
@@ -1,3 +1,12 @@
+overgod (1.0-4.1) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Fix "ftbfs with GCC-5": add patch from Nicholas Luedtke:
+    add "extern" to inline functions.
+    (Closes: #778051)
+
+ -- gregor herrmann <gre...@debian.org>  Sat, 18 Jul 2015 21:31:19 +0200
+
 overgod (1.0-4) unstable; urgency=low
 
   * Team upload.
diff -Nru overgod-1.0/debian/patches/060_gcc5.patch overgod-1.0/debian/patches/060_gcc5.patch
--- overgod-1.0/debian/patches/060_gcc5.patch	1970-01-01 01:00:00.000000000 +0100
+++ overgod-1.0/debian/patches/060_gcc5.patch	2015-07-18 21:30:16.000000000 +0200
@@ -0,0 +1,33 @@
+Description: Fixed GCC5 build issue.
+ ADD "extern" to xpart and ypart functions
+Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=778051
+Author: Nicholas Luedtke <nicholas.lued...@hp.com>
+Reviewed-by: gregor herrmann <gre...@debian.org>
+Last-Update: 2015-07-18
+
+--- a/stuff.c
++++ b/stuff.c
+@@ -51,7 +51,6 @@
+ float cos_table [ANGLE_FULL];
+ float sin_table [ANGLE_FULL];
+ 
+-inline int xpart(int angle, int length);
+ 
+ void init_trig(void)
+ {
+@@ -66,13 +65,13 @@
+  
+ }
+ 
+-inline int xpart(int angle, int length)
++extern inline int xpart(int angle, int length)
+ {
+ // return (lcos(angle) * length);// / ANGLE_FULL;
+  return (cos_table [angle & 1023] * length);// / ANGLE_FULL;
+ }
+ 
+-inline int ypart(int angle, int length)
++extern inline int ypart(int angle, int length)
+ {
+  return (sin_table [angle & 1023] * length);// / ANGLE_FULL;
+ }
diff -Nru overgod-1.0/debian/patches/series overgod-1.0/debian/patches/series
--- overgod-1.0/debian/patches/series	2013-09-17 20:20:08.000000000 +0200
+++ overgod-1.0/debian/patches/series	2015-07-18 21:28:13.000000000 +0200
@@ -3,3 +3,4 @@
 030_security_build_warns.patch
 040_fix_array_overrun.patch
 050_fix_speaker_text.patch
+060_gcc5.patch

Attachment: signature.asc
Description: Digital Signature

Reply via email to