diff -Nru vamp-plugin-sdk-2.10.0/debian/changelog vamp-plugin-sdk-2.10.0/debian/changelog --- vamp-plugin-sdk-2.10.0/debian/changelog 2020-05-25 19:34:00.000000000 +0000 +++ vamp-plugin-sdk-2.10.0/debian/changelog 2022-10-22 14:41:26.000000000 +0000 @@ -1,3 +1,24 @@ +vamp-plugin-sdk (2.10.0-3) unstable; urgency=medium + + * Team Upload. + * Add patch to not force running tests, these are + automatically taken care of in dh_auto_test step, which + also helps fix cross-builds + + -- Nilesh Patra Sat, 22 Oct 2022 20:11:26 +0530 + +vamp-plugin-sdk (2.10.0-2) unstable; urgency=medium + + * Add pkg-config to B-Ds (Closes: #1020048) + * Bump Standards Version to 4.6.1 + * Bump d/watch version to 4 + * Add salsa ci config + * Remove unnecessary constraints + * d/copyright: Add myself to the d/ section + * Add d/source/lintian-overrides + + -- Dennis Braun Sat, 15 Oct 2022 19:13:19 +0200 + vamp-plugin-sdk (2.10.0-1) unstable; urgency=medium [ Debian Janitor ] diff -Nru vamp-plugin-sdk-2.10.0/debian/control vamp-plugin-sdk-2.10.0/debian/control --- vamp-plugin-sdk-2.10.0/debian/control 2020-05-25 19:34:00.000000000 +0000 +++ vamp-plugin-sdk-2.10.0/debian/control 2022-10-22 14:06:14.000000000 +0000 @@ -10,11 +10,11 @@ docbook-to-man, graphviz, libsndfile1-dev, - g++ (>= 4:5.2) + pkg-config Build-Depends-Indep: doxygen Rules-Requires-Root: no -Standards-Version: 4.5.0 +Standards-Version: 4.6.1 Homepage: https://www.vamp-plugins.org/ Vcs-Git: https://salsa.debian.org/multimedia-team/vamp-plugin-sdk.git Vcs-Browser: https://salsa.debian.org/multimedia-team/vamp-plugin-sdk diff -Nru vamp-plugin-sdk-2.10.0/debian/copyright vamp-plugin-sdk-2.10.0/debian/copyright --- vamp-plugin-sdk-2.10.0/debian/copyright 2020-05-25 19:34:00.000000000 +0000 +++ vamp-plugin-sdk-2.10.0/debian/copyright 2022-10-22 14:06:14.000000000 +0000 @@ -42,6 +42,7 @@ Copyright: 2008-2009 Székelyi Szabolcs 2012-2016 Jaromír Mikeš + 2022 Dennis Braun License: MIT License: MIT diff -Nru vamp-plugin-sdk-2.10.0/debian/patches/0004-do-not-run-test-always.patch vamp-plugin-sdk-2.10.0/debian/patches/0004-do-not-run-test-always.patch --- vamp-plugin-sdk-2.10.0/debian/patches/0004-do-not-run-test-always.patch 1970-01-01 00:00:00.000000000 +0000 +++ vamp-plugin-sdk-2.10.0/debian/patches/0004-do-not-run-test-always.patch 2022-10-22 14:41:26.000000000 +0000 @@ -0,0 +1,33 @@ +--- a/Makefile.in ++++ b/Makefile.in +@@ -248,7 +248,7 @@ + + rdfgen: $(RDFGEN_TARGET) + +-all: sdk plugins host rdfgen test ++all: sdk plugins host rdfgen + + $(SDK_STATIC): $(SDK_OBJECTS) $(API_HEADERS) $(SDK_HEADERS) + $(AR) r $@ $(SDK_OBJECTS) +--- a/configure ++++ b/configure +@@ -4076,7 +4076,7 @@ + have_sndfile="yes" + fi + if test "x$have_sndfile" = "xyes" ; then +- TARGETS="sdk plugins host rdfgen test" ++ TARGETS="sdk plugins host rdfgen" + else + as_fn_error $? "libsndfile not found - cannot build example Vamp host! + If you don't want to build the host, configure with --disable-programs." "$LINENO" 5 +--- a/configure.ac ++++ b/configure.ac +@@ -28,7 +28,7 @@ + PKG_CHECK_MODULES([SNDFILE],[sndfile],have_sndfile="yes",have_sndfile="no") + if test "x$have_sndfile" = "xyes" ; then + dnl all good, build everything +- TARGETS="sdk plugins host rdfgen test" ++ TARGETS="sdk plugins host rdfgen" + else + dnl no libsndfile - can't build host! + AC_MSG_ERROR([libsndfile not found - cannot build example Vamp host! diff -Nru vamp-plugin-sdk-2.10.0/debian/patches/series vamp-plugin-sdk-2.10.0/debian/patches/series --- vamp-plugin-sdk-2.10.0/debian/patches/series 2019-11-21 22:49:53.000000000 +0000 +++ vamp-plugin-sdk-2.10.0/debian/patches/series 2022-10-22 14:41:26.000000000 +0000 @@ -1,3 +1,4 @@ 01-fix_multiarch.patch 02-fix_pkg-config.patch 0003-Link-with-dl.patch +0004-do-not-run-test-always.patch diff -Nru vamp-plugin-sdk-2.10.0/debian/salsa-ci.yml vamp-plugin-sdk-2.10.0/debian/salsa-ci.yml --- vamp-plugin-sdk-2.10.0/debian/salsa-ci.yml 1970-01-01 00:00:00.000000000 +0000 +++ vamp-plugin-sdk-2.10.0/debian/salsa-ci.yml 2022-10-22 14:06:14.000000000 +0000 @@ -0,0 +1,4 @@ +--- +include: + - https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/salsa-ci.yml + - https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/pipeline-jobs.yml diff -Nru vamp-plugin-sdk-2.10.0/debian/source/lintian-overrides vamp-plugin-sdk-2.10.0/debian/source/lintian-overrides --- vamp-plugin-sdk-2.10.0/debian/source/lintian-overrides 1970-01-01 00:00:00.000000000 +0000 +++ vamp-plugin-sdk-2.10.0/debian/source/lintian-overrides 2022-10-22 14:06:14.000000000 +0000 @@ -0,0 +1,2 @@ +# the file is the source +source-is-missing [rdf/doc/vamp.html] diff -Nru vamp-plugin-sdk-2.10.0/debian/watch vamp-plugin-sdk-2.10.0/debian/watch --- vamp-plugin-sdk-2.10.0/debian/watch 2020-05-25 19:34:00.000000000 +0000 +++ vamp-plugin-sdk-2.10.0/debian/watch 2022-10-22 14:06:14.000000000 +0000 @@ -1,4 +1,4 @@ -version=3 +version=4 opts=dversionmangle=s/~repack.*// \ https://code.soundsoftware.ac.uk/projects/vamp-plugin-sdk/files \ /attachments/download/\d+/vamp-plugin-sdk-([\d.]+)\.tar\.gz