--- /dev/null
+From c71d72262568907ae8c3b988d42e575a8bd3a207 Mon Sep 17 00:00:00 2001
+From: Romain Naour <romain.naour@gmail.com>
+Date: Sat, 29 Oct 2016 20:14:02 +0200
+Subject: [PATCH] remove unit test
+
+Unit tests fail to build on some system.
+
+Waf: Entering directory `output/build/aubio-0.4.3/build'
+[170/217] Processing build/tests/test-sink
+[170/217] Processing build/tests/test-sink_apple_audio-multi
+[172/217] Processing build/tests/test-sink_sndfile-multi
+[172/217] Processing build/tests/test-source_apple_audio
+[174/217] Processing build/tests/test-source_avcodec
+[174/217] Processing build/tests/test-source_multi
+[174/217] Processing build/tests/test-source_seek
+[176/217] Processing build/tests/test-source_sndfile
+Waf: Leaving directory `output/build/aubio-0.4.3/build'
+Build failed
+Traceback (most recent call last):
+ File "output/build/aubio-0.4.3/waflib/Task.py", line 110, in process
+ ret=self.run()
+ File "output/build/aubio-0.4.3/waflib/Tools/waf_unit_test.py", line 66, in run
+ proc=Utils.subprocess.Popen(self.ut_exec,cwd=cwd,env=self.get_test_env(),stderr=Utils.subprocess.PIPE,stdout=Utils.subprocess.PIPE)
+ File "/usr/lib64/python2.7/subprocess.py", line 710, in __init__
+ errread, errwrite)
+ File "/usr/lib64/python2.7/subprocess.py", line 1335, in _execute_child
+ raise child_exception
+OSError: [Errno 2] No such file or directory
+
+Signed-off-by: Romain Naour <romain.naour@gmail.com>
+---
+ wscript | 3 ---
+ 1 file changed, 3 deletions(-)
+
+diff --git a/wscript b/wscript
+index c665ff5..c8fae6c 100644
+--- a/wscript
++++ b/wscript
+@@ -95,13 +95,11 @@ def options(ctx):
+ help='set target platform for cross-compilation', dest='target_platform')
+
+ ctx.load('compiler_c')
+- ctx.load('waf_unit_test')
+ ctx.load('gnu_dirs')
+
+ def configure(ctx):
+ from waflib import Options
+ ctx.load('compiler_c')
+- ctx.load('waf_unit_test')
+ ctx.load('gnu_dirs')
+
+ # check for common headers
+@@ -334,7 +332,6 @@ def build(bld):
+ bld.recurse('src')
+ if bld.env['DEST_OS'] not in ['ios', 'iosimulator', 'android']:
+ bld.recurse('examples')
+- bld.recurse('tests')
+
+ bld( source = 'aubio.pc.in' )
+
+--
+2.5.5
+
--- /dev/null
+config BR2_PACKAGE_AUBIO
+ bool "aubio"
+ depends on !BR2_STATIC_LIBS
+ depends on BR2_TOOLCHAIN_HAS_THREADS
+ help
+ aubio is a tool designed for the extraction of annotations from
+ audio signals. Its features include segmenting a sound file
+ before each of its attacks, performing pitch detection, tapping
+ the beat and producing midi streams from live audio.
+
+ Because these tasks are difficult, we thought it was important
+ to gather them in a dedicated library. To increase the fun, we
+ have made these algorithms work in a causal way, so as to be
+ used in real time applications with as low delay as possible.
+ Functions can be used offline in sound editors and software
+ samplers, or online in audio effects and virtual instruments.
+
+ https://aubio.org
+
+comment "aubio needs a toolchain w/ threads, dynamic library"
+ depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS