Hello community,

here is the log from the commit of package audacity for openSUSE:Factory 
checked in at 2017-11-07 10:00:50
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/audacity (Old)
 and      /work/SRC/openSUSE:Factory/.audacity.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "audacity"

Tue Nov  7 10:00:50 2017 rev:75 rq:539119 version:2.2.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/audacity/audacity.changes        2017-08-28 
15:32:52.376258115 +0200
+++ /work/SRC/openSUSE:Factory/.audacity.new/audacity.changes   2017-11-07 
10:01:53.025844256 +0100
@@ -1,0 +2,56 @@
+Sun Nov  5 12:21:03 UTC 2017 - [email protected]
+
+- Enabled mad, twolame and lame for 42.3
+
+-------------------------------------------------------------------
+Sun Nov  5 07:10:09 UTC 2017 - [email protected]
+
+- Update to version 2.2.0
+  Improvements:
+  * Four Selectable themes provided, with new 'Light' theme as
+    default, plus option to customize
+  * Many menu changes:
+    + Menus Reorganized
+    + Extended menu bar provided
+    + New keyboard commands for working with clips
+  * Help buttons ? in Preferences, Effects, Generators and
+    Analyzers - and other places
+  * Non-Greying out of effects when no selection (and explanatory
+    dialog with help button)
+  * Playback of MIDI (and Allegro) files imported into Note Tracks
+    is now available.
+  * 'Center' option in Selection Toolbar
+  * Stem plots
+  * Major overhaul to documentation/manual including many new
+    images and streamlined text on landing pages for in-program
+    help.
+  Other Changes:
+  * Append-record is now the default (use Shift + Record for old
+    behavior, to record on a new track)
+  * The Esc key now cancels all click-and-drag actions. It also
+    chooses among overlapping mouse click targets, which is
+    especially useful in the Multi-Tool.
+  * Sync-Lock button removed (use menu item or keyboard shortcut
+    instead)
+  * New preferences and preference pages
+  * Overhaul of much code:
+    + Overhaul of envelope handling code to deal with some
+      anomalies
+    + Overhaul of exception handling for greater safety
+  * New Logo
+  Bug Fixes:
+  * Major work on bug fixing. 198 bugs that were in 2.1.3 fixed
+    for 2.2.0.
+    + The most serious bug fixed this time round was bug 437 which
+      was about what happens when Audacity is recording and runs
+      out of storage.
+    + The problems of incomplete support for macOs Sierra have
+      been resolved (including bug 290, bug 1567, bug 1702, and bug
+      1703).
+    + Most of the bugs fixed were more minor, such as bug 463
+      which was about a case in which the numbering on the timeline
+      could display incorrect times.
+
+- Added audacity-no_return_in_nonvoid.patch
+
+-------------------------------------------------------------------

Old:
----
  Audacity-2.1.3.tar.gz

New:
----
  Audacity-2.2.0.tar.gz
  audacity-no_return_in_nonvoid.patch

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

Other differences:
------------------
++++++ audacity.spec ++++++
--- /var/tmp/diff_new_pack.iK65rB/_old  2017-11-07 10:01:56.001736289 +0100
+++ /var/tmp/diff_new_pack.iK65rB/_new  2017-11-07 10:01:56.001736289 +0100
@@ -16,14 +16,14 @@
 #
 
 
-%if 0%{?suse_version} < 1330
-%bcond_with mad
-%else
+%if 0%{?suse_version} >= 1330 || 0%{?leap_version} >= 420300
 %bcond_without mad
+%else
+%bcond_with mad
 %endif
 
 Name:           audacity
-Version:        2.1.3
+Version:        2.2.0
 Release:        0
 Summary:        A Free, Cross-Platform Digital Audio Editor
 License:        GPL-2.0+
@@ -39,6 +39,8 @@
 Patch1:         %{name}-flacversion.patch
 # PATCH-FIX-UPSTREAM audacity-fix-nonsense.patch [email protected] -- Remove 
things that break build for no reason.
 Patch2:         %{name}-fix-nonsense.patch
+# PATCH-FIX-UPSTREAM audacity-no_return_in_nonvoid.patch
+Patch3:         %{name}-no_return_in_nonvoid.patch
 BuildRequires:  autoconf
 BuildRequires:  automake
 BuildRequires:  cmake
@@ -104,6 +106,7 @@
 %patch0
 %patch1 -p0
 %patch2 -p0
+%patch3 -p1
 
 cp -f %{SOURCE1} LICENSE_NYQUIST.txt
 # Make sure we use the system versions.
@@ -113,6 +116,7 @@
 %endif
 
 %build
+# WARNING: Do not alter, only for Leap.
 test -x "$(type -p gcc-5)" && export CC=gcc-5
 test -x "$(type -p g++-5)" && export CXX=g++-5
 export CFLAGS="%{optflags} -fno-strict-aliasing"

++++++ Audacity-2.1.3.tar.gz -> Audacity-2.2.0.tar.gz ++++++
/work/SRC/openSUSE:Factory/audacity/Audacity-2.1.3.tar.gz 
/work/SRC/openSUSE:Factory/.audacity.new/Audacity-2.2.0.tar.gz differ: char 13, 
line 1

++++++ audacity-no_return_in_nonvoid.patch ++++++
Index: audacity-Audacity-2.2.0/src/widgets/NumericTextCtrl.cpp
===================================================================
--- audacity-Audacity-2.2.0.orig/src/widgets/NumericTextCtrl.cpp
+++ audacity-Audacity-2.2.0/src/widgets/NumericTextCtrl.cpp
@@ -603,6 +603,7 @@ return theArray.Get();
          case NumericConverter::BANDWIDTH:
             return BandwidthConverterFormats();
       }
+   return std::vector<BuiltinFormatString> {};
    }
 }
 

Reply via email to