rev 16588 - in kde-extras/skanlite/trunk/debian: . patches

Kai Wasserbäch curan-guest at alioth.debian.org
Wed Jan 13 13:51:07 UTC 2010


Author: curan-guest
Date: 2010-01-13 13:51:07 +0000 (Wed, 13 Jan 2010)
New Revision: 16588

Added:
   kde-extras/skanlite/trunk/debian/patches/
   kde-extras/skanlite/trunk/debian/patches/fix_ftbfs_gcc-4.5.patch
   kde-extras/skanlite/trunk/debian/patches/series
Modified:
   kde-extras/skanlite/trunk/debian/changelog
Log:
[Skanlite] (trunk) debian/patches/fix_ftbfs_gcc-4.5.patch: Closes: #565096
  - Fix Skanlite to build with stricter g++ 4.5 (not released yet).
  - Thanks to Matthias Klose for the report.

Modified: kde-extras/skanlite/trunk/debian/changelog
===================================================================
--- kde-extras/skanlite/trunk/debian/changelog	2010-01-13 09:49:14 UTC (rev 16587)
+++ kde-extras/skanlite/trunk/debian/changelog	2010-01-13 13:51:07 UTC (rev 16588)
@@ -3,8 +3,13 @@
   The »Haunting Echoes« release.
 
   * debian/skanlite.de.1: Added a missing character.
+  * debian/patches:
+    - fix_ftbfs_gcc-4.5.patch:
+      + Added. (Closes: #565096)
+      + Fix Skanlite to build with stricter g++ 4.5 (not released yet).
+      + Thanks to Matthias Klose for the report.
 
- -- Kai Wasserbäch <debian at carbon-project.org>  Fri, 08 Jan 2010 10:22:45 +0100
+ -- Kai Wasserbäch <debian at carbon-project.org>  Wed, 13 Jan 2010 11:46:29 +0100
 
 skanlite (0.3-kde4.3.1-2) unstable; urgency=low
 

Added: kde-extras/skanlite/trunk/debian/patches/fix_ftbfs_gcc-4.5.patch
===================================================================
--- kde-extras/skanlite/trunk/debian/patches/fix_ftbfs_gcc-4.5.patch	                        (rev 0)
+++ kde-extras/skanlite/trunk/debian/patches/fix_ftbfs_gcc-4.5.patch	2010-01-13 13:51:07 UTC (rev 16588)
@@ -0,0 +1,27 @@
+Description: Fix FTBFS with the upcoming GCC 4.5 (g++).
+ The upcoming release of gcc/g++ (4.5) is stricter again. This leads to an
+ FTBFS for Skanlite. Calling a constructer directly is a no-go.
+Author: Kai Wasserbäch <debian at carbon-project.org>
+Last-Update: 2010-01-13
+Bug-Debian: http://bugs.debian.org/565096
+Origin: vendor, http://bugs.debian.org/565096
+Forwarded: https://bugs.kde.org/show_bug.cgi?id=222542
+---
+ skanlite.cpp |    4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+Index: b/skanlite.cpp
+===================================================================
+--- a/skanlite.cpp
++++ b/skanlite.cpp
+@@ -388,8 +388,8 @@ void Skanlite::setDir(void)
+ //************************************************************
+ void Skanlite::showAboutDialog(void)
+ {
+-    KAboutApplicationDialog::KAboutApplicationDialog(
+-            KGlobal::mainComponent().aboutData(), 0).exec();
++    KAboutApplicationDialog oKAboutDiag(KGlobal::mainComponent().aboutData(), 0);
++    oKAboutDiag.exec();
+ }
+ 
+ 

Added: kde-extras/skanlite/trunk/debian/patches/series
===================================================================
--- kde-extras/skanlite/trunk/debian/patches/series	                        (rev 0)
+++ kde-extras/skanlite/trunk/debian/patches/series	2010-01-13 13:51:07 UTC (rev 16588)
@@ -0,0 +1 @@
+fix_ftbfs_gcc-4.5.patch




More information about the pkg-kde-commits mailing list