From: Paul Brossier Date: Fri, 16 Sep 2016 17:14:07 +0000 (+0200) Subject: wscript: improve tarball creation (./waf dist) X-Git-Tag: 0.4.4~222 X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=99d8cbb17ed382ede120b52b8f4591c8c680b632;p=aubio.git wscript: improve tarball creation (./waf dist) --- diff --git a/wscript b/wscript index 72abc0d2..8697c91b 100644 --- a/wscript +++ b/wscript @@ -392,10 +392,14 @@ def shutdown(bld): Logs.pprint('RED', msg) def dist(ctx): - ctx.excl = ' **/.waf-1* **/*~ **/*.pyc **/*.swp **/.lock-w* **/.git*' + ctx.excl = ' **/.waf-1* **/*~ **/*.pyc **/*.swp **/*.swo **/*.swn **/.lock-w* **/.git*' ctx.excl += ' **/build/*' + ctx.excl += ' doc/_build' + ctx.excl += ' python/demos_*' ctx.excl += ' **/python/gen **/python/build **/python/dist' ctx.excl += ' **/python/ext/config.h' + ctx.excl += ' **/python/lib/aubio/_aubio.so' + ctx.excl += ' **.egg-info' ctx.excl += ' **/**.zip **/**.tar.bz2' ctx.excl += ' **/doc/full/* **/doc/web/*' ctx.excl += ' **/python/*.db'