Thu Feb 20 16:18:03 2020 UTC ()
vamp-plugin-sdk: Update to 2.9.0

Version 2.9, 2019-11-13 (maintenance release)

  * 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


(nia)
diff -r1.4 -r1.5 pkgsrc/audio/vamp-plugin-sdk/Makefile
diff -r1.2 -r1.3 pkgsrc/audio/vamp-plugin-sdk/distinfo

cvs diff -r1.4 -r1.5 pkgsrc/audio/vamp-plugin-sdk/Makefile (expand / switch to unified diff)

--- pkgsrc/audio/vamp-plugin-sdk/Makefile 2020/02/12 02:50:13 1.4
+++ pkgsrc/audio/vamp-plugin-sdk/Makefile 2020/02/20 16:18:03 1.5
@@ -1,30 +1,32 @@ @@ -1,30 +1,32 @@
1# $NetBSD: Makefile,v 1.4 2020/02/12 02:50:13 nia Exp $ 1# $NetBSD: Makefile,v 1.5 2020/02/20 16:18:03 nia Exp $
2 2
3DISTNAME= vamp-plugin-sdk-2.8.0 3DISTNAME= vamp-plugin-sdk-2.9.0
4PKGREVISION= 1 
5CATEGORIES= audio 4CATEGORIES= audio
6MASTER_SITES= https://code.soundsoftware.ac.uk/attachments/download/2450/ 5MASTER_SITES= https://code.soundsoftware.ac.uk/attachments/download/2588/
7 6
8MAINTAINER= pkgsrc-users@NetBSD.org 7MAINTAINER= pkgsrc-users@NetBSD.org
9HOMEPAGE= https://www.vamp-plugins.org/ 8HOMEPAGE= https://www.vamp-plugins.org/
10COMMENT= The Vamp audio analysis plugin system 9COMMENT= The Vamp audio analysis plugin system
11LICENSE= x11 10LICENSE= x11
12 11
13USE_TOOLS+= pkg-config gmake 12USE_TOOLS+= pkg-config gmake
14USE_LANGUAGES= c c++ 13USE_LANGUAGES= c c++11
15GNU_CONFIGURE= yes 14GNU_CONFIGURE= yes
16USE_LIBTOOL= yes 15USE_LIBTOOL= yes
17 16
 17# C++11
 18GCC_REQD+= 4.7
 19
18SUBST_CLASSES+= dl 20SUBST_CLASSES+= dl
19SUBST_STAGE.dl= pre-configure 21SUBST_STAGE.dl= pre-configure
20SUBST_MESSAGE.dl= Fixing usage of -ldl in pkgconfig file. 22SUBST_MESSAGE.dl= Fixing usage of -ldl in pkgconfig file.
21SUBST_FILES.dl+= pkgconfig/vamp-hostsdk.pc.in 23SUBST_FILES.dl+= pkgconfig/vamp-hostsdk.pc.in
22SUBST_SED.dl= -e "s,-ldl,${DL_LIBS},g" 24SUBST_SED.dl= -e "s,-ldl,${DL_LIBS},g"
23 25
24PKGCONFIG_OVERRIDE+= pkgconfig/vamp-hostsdk.pc.in 26PKGCONFIG_OVERRIDE+= pkgconfig/vamp-hostsdk.pc.in
25PKGCONFIG_OVERRIDE+= pkgconfig/vamp-sdk.pc.in 27PKGCONFIG_OVERRIDE+= pkgconfig/vamp-sdk.pc.in
26PKGCONFIG_OVERRIDE+= pkgconfig/vamp.pc.in 28PKGCONFIG_OVERRIDE+= pkgconfig/vamp.pc.in
27 29
28BUILDLINK_TRANSFORM.SunOS+= rm:-Wl,--version-script=build/vamp-plugin.map 30BUILDLINK_TRANSFORM.SunOS+= rm:-Wl,--version-script=build/vamp-plugin.map
29 31
30.include "../../audio/libsndfile/buildlink3.mk" 32.include "../../audio/libsndfile/buildlink3.mk"

cvs diff -r1.2 -r1.3 pkgsrc/audio/vamp-plugin-sdk/distinfo (expand / switch to unified diff)

--- pkgsrc/audio/vamp-plugin-sdk/distinfo 2019/07/26 15:31:08 1.2
+++ pkgsrc/audio/vamp-plugin-sdk/distinfo 2020/02/20 16:18:03 1.3
@@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
1$NetBSD: distinfo,v 1.2 2019/07/26 15:31:08 nia Exp $ 1$NetBSD: distinfo,v 1.3 2020/02/20 16:18:03 nia Exp $
2 2
3SHA1 (vamp-plugin-sdk-2.8.0.tar.gz) = 6a1400a47eb067ea6a8f459bb9fc9270e6efba14 3SHA1 (vamp-plugin-sdk-2.9.0.tar.gz) = e5bc230ba77c7641dd144acf34094ec769585ee9
4RMD160 (vamp-plugin-sdk-2.8.0.tar.gz) = 834d2ce234ce09dac1740df32afb955f98a7a2ba 4RMD160 (vamp-plugin-sdk-2.9.0.tar.gz) = a62c0af87b282e8616df76395f074c6f2b38d80f
5SHA512 (vamp-plugin-sdk-2.8.0.tar.gz) = abc009dab8d1ae4549640aba4a1341942b5a868479b4a9b2a435556a1bf1ce350d8aec94ee5b403fe8fff4175f40778a8fc12ceaf602dd0f176f9215e4a3f8f8 5SHA512 (vamp-plugin-sdk-2.9.0.tar.gz) = 7ef7f837d19a08048b059e0da408373a7964ced452b290fae40b85d6d70ca9000bcfb3302cd0b4dc76cf2a848528456f78c1ce1ee0c402228d812bd347b6983b
6Size (vamp-plugin-sdk-2.8.0.tar.gz) = 308972 bytes 6Size (vamp-plugin-sdk-2.9.0.tar.gz) = 312726 bytes