From 99d8cbb17ed382ede120b52b8f4591c8c680b632 Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Fri, 16 Sep 2016 19:14:07 +0200 Subject: [PATCH] wscript: improve tarball creation (./waf dist) --- wscript | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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' -- 2.11.0