Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package soundtouch for openSUSE:Factory 
checked in at 2023-01-24 19:42:25
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/soundtouch (Old)
 and      /work/SRC/openSUSE:Factory/.soundtouch.new.32243 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "soundtouch"

Tue Jan 24 19:42:25 2023 rev:35 rq:1060466 version:2.3.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/soundtouch/soundtouch.changes    2022-09-13 
15:07:51.880385091 +0200
+++ /work/SRC/openSUSE:Factory/.soundtouch.new.32243/soundtouch.changes 
2023-01-24 20:35:21.245320871 +0100
@@ -1,0 +2,6 @@
+Mon Jan  2 19:48:21 UTC 2023 - Dirk Müller <[email protected]>
+
+- update to 2.3.2:
+  * autotools improvements 
+
+-------------------------------------------------------------------

Old:
----
  2.3.1.tar.gz

New:
----
  2.3.2.tar.gz

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

Other differences:
------------------
++++++ soundtouch.spec ++++++
--- /var/tmp/diff_new_pack.6hTNWH/_old  2023-01-24 20:35:21.709323274 +0100
+++ /var/tmp/diff_new_pack.6hTNWH/_new  2023-01-24 20:35:21.713323294 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package soundtouch
 #
-# Copyright (c) 2022 SUSE LLC
+# Copyright (c) 2023 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,7 +18,7 @@
 
 %define sover 1
 Name:           soundtouch
-Version:        2.3.1
+Version:        2.3.2
 Release:        0
 Summary:        Audio Processing Library
 License:        LGPL-2.1-or-later
@@ -56,6 +56,15 @@
 changing the sound tempo, pitch and playback rate parameters
 independently from each other.
 
+%package -n libSoundTouchDll%{sover}
+Summary:        Audio Processing Library
+Group:          System/Libraries
+
+%description -n libSoundTouchDll%{sover}
+SoundTouch is a C++ audio processing library that allows
+changing the sound tempo, pitch and playback rate parameters
+independently from each other.
+
 %package devel
 Summary:        Development files for the SoundTouch audio processing library
 Group:          Development/Languages/C and C++
@@ -94,6 +103,9 @@
 %post -n libSoundTouch%{sover} -p /sbin/ldconfig
 %postun -n libSoundTouch%{sover} -p /sbin/ldconfig
 
+%post -n libSoundTouchDll%{sover} -p /sbin/ldconfig
+%postun -n libSoundTouchDll%{sover} -p /sbin/ldconfig
+
 %files
 %{_bindir}/*
 %{_mandir}/man1/*
@@ -102,9 +114,14 @@
 %license COPYING.TXT
 %{_libdir}/libSoundTouch.so.%{sover}*
 
+%files -n libSoundTouchDll%{sover}
+%license COPYING.TXT
+%{_libdir}/libSoundTouchDll.so.%{sover}*
+
 %files devel
 %{_datadir}/aclocal/*.m4
 %{_includedir}/%{name}
+%{_includedir}/SoundTouchDLL.h
 %{_libdir}/pkgconfig/*.pc
 %{_libdir}/*.so
 

++++++ 2.3.1.tar.gz -> 2.3.2.tar.gz ++++++
++++ 2838 lines of diff (skipped)

++++++ disable-ffast-math.patch ++++++
--- /var/tmp/diff_new_pack.6hTNWH/_old  2023-01-24 20:35:21.877324143 +0100
+++ /var/tmp/diff_new_pack.6hTNWH/_new  2023-01-24 20:35:21.881324165 +0100
@@ -4,9 +4,11 @@
 see https://gcc.gnu.org/bugzilla/show_bug.cgi?id=55522
 for details.
 
---- soundtouch/CMakeLists.txt  2021-09-07 17:26:53.000000000 +0200
-+++ soundtouch/CMakeLists.txt  2022-09-11 10:52:23.945515340 +0200
-@@ -3,13 +3,6 @@
+Index: soundtouch/CMakeLists.txt
+===================================================================
+--- soundtouch.orig/CMakeLists.txt
++++ soundtouch/CMakeLists.txt
+@@ -3,13 +3,6 @@ project(SoundTouch VERSION 2.3.2 LANGUAG
  
  include(GNUInstallDirs)
  
@@ -20,14 +22,16 @@
  #####################
  # SoundTouch library
  
---- soundtouch/configure.ac    2021-09-07 17:26:53.000000000 +0200
-+++ soundtouch/configure.ac    2022-09-11 10:52:44.845868245 +0200
-@@ -33,7 +33,7 @@
+Index: soundtouch/configure.ac
+===================================================================
+--- soundtouch.orig/configure.ac
++++ soundtouch/configure.ac
+@@ -33,7 +33,7 @@ AC_LANG(C++)
  
- # Compiler flags. Apply -ffast-math to allow gcc autovectorization
+ # Compiler flags. Apply -Ofast (implies -O3 -ffast-math) to allow gcc 
autovectorization
  # generate effective SIMD code.
--CXXFLAGS+=" -O3 -ffast-math"
-+CXXFLAGS+=" -O3 "
+-CXXFLAGS+=" -Ofast"
++CXXFLAGS+=" -O2"
  
  # Set AR_FLAGS to avoid build warning "ar: `u' modifier ignored since `D' is 
the default (see `U')"
  AR_FLAGS='cr'

Reply via email to