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
43 lines
1.2 KiB
Python
43 lines
1.2 KiB
Python
#!/usr/bin/env python
|
|
import re
|
|
import waflib.extras.autowaf as autowaf
|
|
import waflib.Utils as Utils
|
|
|
|
# Mandatory variables
|
|
top = '.'
|
|
out = 'build'
|
|
|
|
def options(opt):
|
|
autowaf.set_options(opt)
|
|
|
|
def configure(conf):
|
|
autowaf.check_pkg(conf, 'lv2', atleast_version='1.0.0',
|
|
uselib_store='LV2_1_0_0')
|
|
|
|
def build(bld):
|
|
bundle = 'reasonablesynth.lv2'
|
|
module_pat = re.sub('^lib', '', bld.env.cshlib_PATTERN)
|
|
module_ext = module_pat[module_pat.rfind('.'):]
|
|
|
|
# Build RDF files
|
|
for i in ['manifest.ttl', 'reasonablesynth.ttl']:
|
|
obj = bld(features='subst')
|
|
obj.source = i + '.in'
|
|
obj.target = '../../LV2/%s/%s' % (bundle, i)
|
|
obj.install_path = '${LV2DIR}/%s' % bundle
|
|
obj.chmod = Utils.O644
|
|
obj.LIB_EXT = module_ext
|
|
|
|
# Build plugin library
|
|
obj = bld(features = 'c cshlib',
|
|
source = 'lv2.c',
|
|
dep_files = 'rsynth.c',
|
|
name = 'reasonablesynth',
|
|
target = '../../LV2/%s/reasonablesynth' % bundle,
|
|
install_path = '${LV2DIR}/%s' % bundle,
|
|
use = 'LV2_1_0_0'
|
|
)
|
|
obj.env.cshlib_PATTERN = module_pat
|
|
|
|
# vi:set ts=4 sw=4 et:
|