Hello community,

here is the log from the commit of package vamp-plugin-sdk for openSUSE:Factory 
checked in at 2020-09-25 16:21:52
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/vamp-plugin-sdk (Old)
 and      /work/SRC/openSUSE:Factory/.vamp-plugin-sdk.new.4249 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "vamp-plugin-sdk"

Fri Sep 25 16:21:52 2020 rev:18 rq:836329 version:2.10.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/vamp-plugin-sdk/vamp-plugin-sdk.changes  
2017-08-31 21:04:18.309310174 +0200
+++ 
/work/SRC/openSUSE:Factory/.vamp-plugin-sdk.new.4249/vamp-plugin-sdk.changes    
    2020-09-25 16:23:17.067452067 +0200
@@ -1,0 +2,38 @@
+Mon Sep  7 10:33:24 UTC 2020 - Luigi Baldoni <[email protected]>
+
+- Update to version 2.10
+  * Add a method to PluginWrapper, the host-side base for
+    adapters like PluginInputDomainAdapter that modify the
+    processing behaviour of a plugin, that tells it to "disown"
+    the wrapped plugin. The former behaviour, and still the
+    default, is for the wrapper to take ownership of the wrapped
+    plugin. The alternative behaviour makes it easier to mix
+    these classes with some modern C++ styles that use managed
+    pointers
+  version 2.9
+  * Fix non-thread-safe behaviour in PluginAdapter. Plugins built
+    using the adapter classes in version 2.8 or earlier cannot
+    safely be used simultaneously across threads with other
+    instances of themselves or of other plugins in the same
+    library (i.e. shared object). Hosts have been required to
+    provide synchronisation for such cases. Version 2.9
+    introduces synchronisation in the plugin, making this
+    usage safe. Unfortunately this does not make host code safe
+    when using older plugin builds, as the problem and its  fix
+    are in the plugin side of the SDK. Caution is still required,
+    but this fix does allow updated plugin builds to avoid
+    problems with some existing hosts
+  * Change required C++ language standard from C++98 to C++11.
+    This is because of the use of std::mutex in the above fix
+  version 2.8:
+  * Fix off-by-one rounding errors in frame-to-ns conversions.
+    Unlike the other changes here which are invisible to plugin
+    code, this change can lead to different results in the lowest
+    significant figures from existing plugins if relinked against
+    the newer code
+  * Fix theoretical possibility of integer overflow in RealTime
+    constructor
+  * Fix use of undefined behaviour in PluginRateExtractor
+- Spec cleanuo
+
+-------------------------------------------------------------------

Old:
----
  vamp-plugin-sdk-2.7.1.tar.gz

New:
----
  vamp-plugin-sdk-2.10.0.tar.gz

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

Other differences:
------------------
++++++ vamp-plugin-sdk.spec ++++++
--- /var/tmp/diff_new_pack.LaJpZ0/_old  2020-09-25 16:23:23.895458112 +0200
+++ /var/tmp/diff_new_pack.LaJpZ0/_new  2020-09-25 16:23:23.899458115 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package vamp-plugin-sdk
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -12,18 +12,19 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
+%define _dlver  2691
 Name:           vamp-plugin-sdk
-Version:        2.7.1
+Version:        2.10.0
 Release:        0
 Summary:        An API for audio analysis and feature extraction plugins
 License:        MIT
 Group:          Productivity/Multimedia/Sound/Utilities
-Url:            http://www.vamp-plugins.org/
-Source0:        
https://code.soundsoftware.ac.uk/attachments/download/2206/%{name}-%{version}.tar.gz
+URL:            https://www.vamp-plugins.org/
+Source0:        
https://code.soundsoftware.ac.uk/attachments/download/%{_dlver}/%{name}-%{version}.tar.gz
 Source1:        baselibs.conf
 BuildRequires:  doxygen
 BuildRequires:  fdupes
@@ -32,7 +33,6 @@
 BuildRequires:  help2man
 BuildRequires:  pkgconfig
 BuildRequires:  pkgconfig(sndfile)
-BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 
 %description
 Vamp is an API for C and C++ plugins that process sampled audio data
@@ -73,16 +73,16 @@
 sed -i 's|$(INSTALL_PREFIX)/lib|@libdir@|g' Makefile.in
 
 %build
-export CFLAGS="$RPM_OPT_FLAGS -fPIC -Wall"
-export CXXFLAGS="$RPM_OPT_FLAGS -fPIC -Wall"
+export CFLAGS="%{optflags} -fPIC -Wall"
+export CXXFLAGS="%{optflags} -fPIC -Wall"
 %configure
-make %{?_smp_mflags}
+%make_build
 
 %install
 # fix libdir
 find . -name '*.pc.in' -exec sed -i 's|/lib|/%{_lib}|' {} ';'
 # The #INSTALL_PREFIX
-make DESTDIR=%{buildroot} install %{?_smp_mflags}
+%make_install
 #INSTALL_PREFIX=%%{_prefix} LIB=/%%{_lib}
 find %{buildroot} -type f -name "*.la" -delete -print
 find %{buildroot} -name '*.a' -exec rm -f {} ';'
@@ -94,7 +94,6 @@
 #pushd latex && make all
 #popd
 
-%if 0%{?suse_version} >= 1140
 # Generate man pages with help2man
 mkdir -p %{buildroot}%{_mandir}/man1
 pushd %{buildroot}%{_mandir}/man1
@@ -107,7 +106,6 @@
        ./vamp-simple-host
 rm  vamp-simple-host vamp-rdf-template-generator
 popd
-%endif
 
 # create Makefile for examples
 cd examples
@@ -124,35 +122,27 @@
 make clean
 
 %post -n libvamp-hostsdk3 -p /sbin/ldconfig
-
 %postun -n libvamp-hostsdk3 -p /sbin/ldconfig
-
 %post -n libvamp-sdk2 -p /sbin/ldconfig
-
 %postun -n libvamp-sdk2 -p /sbin/ldconfig
 
 %files -n libvamp-hostsdk3
-%defattr(-,root,root,-)
 %{_libdir}/libvamp-hostsdk.so.3*
 
 %files -n libvamp-sdk2
-%defattr(-,root,root,-)
 %{_libdir}/libvamp-sdk.so.2*
 
 %files
-%defattr(-,root,root,-)
-%doc COPYING README
+%license COPYING
+%doc README
 %{_bindir}/vamp-rdf-template-generator
 %{_bindir}/vamp-simple-host
-%if 0%{?suse_version} >= 1140
-%{_mandir}/man1/vamp-rdf-template-generator.1.gz
-%{_mandir}/man1/vamp-simple-host.1.gz
-%endif
+%{_mandir}/man1/vamp-rdf-template-generator.1%{?ext_man}
+%{_mandir}/man1/vamp-simple-host.1%{?ext_man}
 %dir %{_libdir}/vamp
 %{_libdir}/vamp
 
 %files devel
-%defattr(-,root,root,-)
 %doc rdf/doc doc/html examples
 %dir %{_includedir}/vamp
 %dir %{_includedir}/vamp-hostsdk

++++++ vamp-plugin-sdk-2.7.1.tar.gz -> vamp-plugin-sdk-2.10.0.tar.gz ++++++
++++ 4590 lines of diff (skipped)


Reply via email to