7737c17d52
Done with ad hoc scripting hacks processing unused imports found by pyflakes: for f in $( find * -name wscript ); do echo; pyflakes $f; done | grep 'waflib.Logs.* but unused' | cut -d: -f1 | while read f; do sed -i 's/^import waflib.Logs as Logs,/import/g' $f; done for f in $( find * -name wscript ); do echo; pyflakes $f; done | grep 'waflib.Options.* but unused' | cut -d: -f1 | while read f; do sed -i 's/import waflib.Options as Options, /import /g' $f; done for f in $( find * -name wscript ); do echo; pyflakes $f; done | grep 'waflib.Options.* but unused' | cut -d: -f1 | while read f; do sed -i 's/^from waflib import Options,/from waflib import/g' $f; done for f in $( find * -name wscript ); do echo; pyflakes $f; done | grep ' imported but unused$' | sed "s/^\([^:]*\):[0-9]*:[0-9]* '\(.*\)'.*/\1 \2/g" | while read f lib; do sed -i "/^import $lib$/d" $f; done for f in $( find * -name wscript ); do echo; pyflakes $f; done | grep 'waflib.Options.* but unused' | cut -d: -f1 | while read f; do sed -i '/from waflib import Options$/d' $f; done for f in $( find * -name wscript ); do echo; pyflakes $f; done | grep 'waflib.TaskGen.* but unused' | cut -d: -f1 | while read f; do sed -i '/from waflib import TaskGen$/d' $f; done for f in $( find * -name wscript ); do echo; pyflakes $f; done | grep 'waflib.Task.Task.* but unused' | cut -d: -f1 | while read f; do sed -i '/^from waflib.Task import Task$/d' $f; done for f in $( find * -name wscript ); do echo; pyflakes $f; done | grep 'waflib.Tools.winres.* but unused' | cut -d: -f1 | while read f; do sed -i '/^from waflib.Tools import winres$/d' $f; done for f in $( find * -name wscript ); do echo; pyflakes $f; done | grep 'waflib.Utils.* but unused' | cut -d: -f1 | while read f; do sed -i '/^import waflib.Utils as Utils$/d' $f; done |
||
---|---|---|
.. | ||
ardour-util.sh.in | ||
common.cc | ||
common.h | ||
copy-mixer.cc | ||
debug | ||
example.cc | ||
export.cc | ||
new_empty_session.cc | ||
new_session.cc | ||
README | ||
run | ||
wscript |
Ardour Session Utilities ======================== This folder contains some tools which directly use libardour to access ardour sessions. The overall goal it to provide some non-interactive unix-style commandline tools, which are installed along with DAW. These tools depend on the "dummy" backend to be available, configure ardour with e.g. ./waf configure --with-backends=jack,alsa,dummy ... Adding new tools ---------------- One C++ source per tool, see "example.cc" and "export.cc" cp session_utils/example.cc session_utils/your_new_tool_name.cc edit session_utils/new_tool_name.cc ./waf The tool is automatically compiled and deployed when installing, using the program-name as prefix. e.g. "export.cc" becomes "ardour4-export" (or "mixbus3-export", depending on the project configuration). Tool names must start with lower-case alphabetic letter [a-z]. Test run from the source ------------------------ cd session_utils ./run ardour6-your_new_tool_name or ./run ardour6-export --help and to debug the tool under gdb/lldb: ./debug ardour6-export