rev 18680 - in kde-extras/skrooge/trunk/debian: . patches

Scott Kitterman kitterman at alioth.debian.org
Sun Oct 3 16:25:15 UTC 2010


Author: kitterman
Date: 2010-10-03 16:25:13 +0000 (Sun, 03 Oct 2010)
New Revision: 18680

Added:
   kde-extras/skrooge/trunk/debian/patches/
   kde-extras/skrooge/trunk/debian/patches/01_arm_compile_fix.diff
   kde-extras/skrooge/trunk/debian/patches/series
Modified:
   kde-extras/skrooge/trunk/debian/changelog
Log:
  * Add debian/patches/01_arm_compile_fix.diff from Kubuntu to fix FTBFS on
    armel (Closes: #598966)


Modified: kde-extras/skrooge/trunk/debian/changelog
===================================================================
--- kde-extras/skrooge/trunk/debian/changelog	2010-10-02 00:30:01 UTC (rev 18679)
+++ kde-extras/skrooge/trunk/debian/changelog	2010-10-03 16:25:13 UTC (rev 18680)
@@ -1,3 +1,11 @@
+skrooge (0.7.3.2-2) UNRELEASED; urgency=low
+
+  [ Scott Kitterman ]
+  * Add debian/patches/01_arm_compile_fix.diff from Kubuntu to fix FTBFS on
+    armel (Closes: #598966)
+
+ -- Debian KDE Extras Team <pkg-kde-extras at lists.alioth.debian.org>  Sun, 03 Oct 2010 12:06:06 -0400
+
 skrooge (0.7.3.2-1) experimental; urgency=low
 
   * New upstream release

Added: kde-extras/skrooge/trunk/debian/patches/01_arm_compile_fix.diff
===================================================================
--- kde-extras/skrooge/trunk/debian/patches/01_arm_compile_fix.diff	                        (rev 0)
+++ kde-extras/skrooge/trunk/debian/patches/01_arm_compile_fix.diff	2010-10-03 16:25:13 UTC (rev 18680)
@@ -0,0 +1,26 @@
+Index: skrooge-0.7.3.2/skg_dashboard/skgdashboardpluginwidget.cpp
+===================================================================
+--- skrooge-0.7.3.2.orig/skg_dashboard/skgdashboardpluginwidget.cpp	2010-09-30 22:45:41.199526001 -0400
++++ skrooge-0.7.3.2/skg_dashboard/skgdashboardpluginwidget.cpp	2010-09-30 22:45:46.879526000 -0400
+@@ -580,7 +580,7 @@
+ 
+             //Set size
+             QSize size=dbw->minimumSize();
+-            QSize newSize(size.width()*pow(10,((qreal) iZoom+1)/10.0), size.height()*pow(10,((qreal) iZoom+1)/10.0));
++            QSize newSize(size.width()*pow(10,((qreal) iZoom+1)/(qreal) 10.0), size.height()*pow(10,((qreal) iZoom+1)/(qreal) 10.0));
+             dbw->setMinimumSize(newSize);
+ 
+             //Add remove item in menu
+Index: skrooge-0.7.3.2/skgbasegui/skgtablewithgraph.cpp
+===================================================================
+--- skrooge-0.7.3.2.orig/skgbasegui/skgtablewithgraph.cpp	2010-09-30 22:41:39.823526002 -0400
++++ skrooge-0.7.3.2/skgbasegui/skgtablewithgraph.cpp	2010-09-30 22:43:15.747526002 -0400
+@@ -1291,7 +1291,7 @@
+                 {
+                     //Line y
+                     double xstep=width* ( nbRows+1 );
+-                    int jstep=qMax ( computeStepSize ( nbColumns, 20 ), qreal(1.0) );
++                    int jstep=qMax ( static_cast<qreal>( computeStepSize ( nbColumns, 20 ) ), qreal(1.0) );
+                     for ( int j=1; j<nbColumns; j+=jstep )
+                     {
+                         QString yname=ui.kTable->horizontalHeaderItem ( j )->text();

Added: kde-extras/skrooge/trunk/debian/patches/series
===================================================================
--- kde-extras/skrooge/trunk/debian/patches/series	                        (rev 0)
+++ kde-extras/skrooge/trunk/debian/patches/series	2010-10-03 16:25:13 UTC (rev 18680)
@@ -0,0 +1 @@
+01_arm_compile_fix.diff




More information about the pkg-kde-commits mailing list