From 6ce8e844dd380b4569e2755d722b57c0d61af929 Mon Sep 17 00:00:00 2001 From: Edouard DUPIN Date: Mon, 15 Jun 2015 19:23:18 +0200 Subject: [PATCH] [DEV] update new worktree --- .travis.yml | 14 +++++++------- ...udio_drain_test.py => lutin_audio-drain-test.py | 6 +++--- lutin_audio_drain.py => lutin_audio-drain.py | 6 +++--- 3 files changed, 13 insertions(+), 13 deletions(-) rename lutin_audio_drain_test.py => lutin_audio-drain-test.py (68%) rename lutin_audio_drain.py => lutin_audio-drain.py (80%) diff --git a/.travis.yml b/.travis.yml index df22cc4..8bf6100 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,13 +10,13 @@ os: before_script: - cd .. - - git clone https://github.com/HeeroYui/gtest.git - - git clone https://github.com/HeeroYui/etk.git + - git clone https://github.com/generic-library/gtest.git --recurse-submodules + - git clone https://github.com/generic-library/speex-dsp.git --recurse-submodules + - git clone https://github.com/generic-library/z.git --recurse-submodules + - git clone https://github.com/atria-soft/etk.git + - git clone https://github.com/atria-soft/ejson.git - git clone https://github.com/musicdsp/audio.git - git clone https://github.com/musicdsp/audio-algo-drain.git - - git clone https://github.com/HeeroYui/ejson.git - - git clone https://github.com/musicdsp/speexdsp.git - - git clone https://github.com/musicdsp/z.git --recurse-submodules - pwd - ls -l - if [ "$CXX" == "clang++" ]; then BUILDER=clang; else BUILDER=gcc; fi @@ -32,8 +32,8 @@ install: - sudo pip install lutin script: - - lutin -C -P -c$BUILDER -mdebug -p audio_drain_test - - ./out/Linux_x86_64/debug/staging/$BUILDER/audio_drain_test/usr/bin/audio_drain_test -l6 + - lutin -C -P -c$BUILDER -mdebug -p audio-drain-test + - ./out/Linux_x86_64/debug/staging/$BUILDER/audio-drain-test/usr/bin/audio-drain-test -l6 notifications: email: diff --git a/lutin_audio_drain_test.py b/lutin_audio-drain-test.py similarity index 68% rename from lutin_audio_drain_test.py rename to lutin_audio-drain-test.py index 69863eb..c021719 100644 --- a/lutin_audio_drain_test.py +++ b/lutin_audio-drain-test.py @@ -4,11 +4,11 @@ import lutin.tools as tools import lutin.debug as debug def get_desc(): - return "drain_test : single audio flow test" + return "single audio flow test" def create(target): - myModule = module.Module(__file__, 'audio_drain_test', 'BINARY') + myModule = module.Module(__file__, 'audio-drain-test', 'BINARY') myModule.add_src_file([ 'test/main.cpp', @@ -20,7 +20,7 @@ def create(target): 'test/equalizer.cpp' ]) - myModule.add_module_depend(['audio_drain', 'gtest', 'etk']) + myModule.add_module_depend(['audio-drain', 'gtest', 'etk']) return myModule diff --git a/lutin_audio_drain.py b/lutin_audio-drain.py similarity index 80% rename from lutin_audio_drain.py rename to lutin_audio-drain.py index 0dce91b..13bcff3 100644 --- a/lutin_audio_drain.py +++ b/lutin_audio-drain.py @@ -4,11 +4,11 @@ import lutin.tools as tools import lutin.debug as debug def get_desc(): - return "audio_drain : Basic audio algo interface single pipe to provess data" + return "Basic audio algo interface single pipe to provess data" def create(target): - myModule = module.Module(__file__, 'audio_drain', 'LIBRARY') + myModule = module.Module(__file__, 'audio-drain', 'LIBRARY') myModule.add_src_file([ 'audio/drain/debug.cpp', @@ -31,7 +31,7 @@ def create(target): # TODO: myModule.add_optional_module_depend('speexdsp', "HAVE_SPEEX_DSP_RESAMPLE") myModule.compile_flags('c++', "-DHAVE_SPEEX_DSP_RESAMPLE") - myModule.add_module_depend(['etk', 'audio', 'ejson', 'speexdsp', 'audio_algo_drain']) + myModule.add_module_depend(['etk', 'audio', 'ejson', 'speex-dsp', 'audio-algo-drain']) myModule.add_export_path(tools.get_current_path(__file__)) # add the currrent module at the