Hello community,

here is the log from the commit of package rosegarden for openSUSE:Factory 
checked in at 2016-06-23 13:36:41
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rosegarden (Old)
 and      /work/SRC/openSUSE:Factory/.rosegarden.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "rosegarden"

Changes:
--------
--- /work/SRC/openSUSE:Factory/rosegarden/rosegarden.changes    2016-03-26 
15:25:05.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.rosegarden.new/rosegarden.changes       
2016-06-23 13:36:44.000000000 +0200
@@ -1,0 +2,6 @@
+Tue Jun 21 06:34:51 UTC 2016 - davejpla...@gmail.com
+
+- Added upstream rosegarden-16.02-gcc6.patch to fix gcc6 build see
+  boo#985242
+
+-------------------------------------------------------------------

New:
----
  rosegarden-16.02-gcc6.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ rosegarden.spec ++++++
--- /var/tmp/diff_new_pack.9Rm06S/_old  2016-06-23 13:36:45.000000000 +0200
+++ /var/tmp/diff_new_pack.9Rm06S/_new  2016-06-23 13:36:45.000000000 +0200
@@ -29,6 +29,7 @@
 # This patch fixes the file search paths for examples, templates and midi 
driver libraries.
 Patch1:         rosegarden-10.10-filepaths.patch
 Patch2:         rosegarden-14.02-fix-bashisms.patch
+Patch3:         rosegarden-16.02-gcc6.patch
 BuildRequires:  alsa-devel
 BuildRequires:  cmake >= 2.8.12
 BuildRequires:  dssi-devel
@@ -93,6 +94,7 @@
 %setup -q
 %patch1
 %patch2
+%patch3
 # When we build svn we need to execute bootstrap.sh
 #sh bootstrap.sh
 

++++++ rosegarden-16.02-gcc6.patch ++++++
diff -Nurp rosegarden-16.02.orig/src/gui/dialogs/PitchBendSequenceDialog.cpp 
rosegarden-16.02.mod/src/gui/dialogs/PitchBendSequenceDialog.cpp
--- src/gui/dialogs/PitchBendSequenceDialog.cpp 2016-02-29 13:18:01.000000000 
+0100
+++ src/gui/dialogs/PitchBendSequenceDialog.cpp 2016-04-25 07:30:49.578374291 
+0200
@@ -919,7 +919,7 @@ PitchBendSequenceDialog::addStepwiseEven
         {
             const int rawStepSize = spinboxToControlDelta(m_stepSize);
             if (rawStepSize == 0) { return; }
-            numSteps = abs(float(valueChange) / float(rawStepSize) + 0.5);
+            numSteps = fabs(float(valueChange) / float(rawStepSize) + 0.5);
             break;
         }
     }

Reply via email to