summaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2019-11-10 16:20:52 +0100
committerDavid Robillard <d@drobilla.net>2019-11-10 16:20:52 +0100
commit7cb38663b919e4c2ac4bb3dd7553ee5dde94f92d (patch)
treeefbc2bc784f3b1c28160d9d5c1c58df0b4fe6f8a /wscript
parentcbab55296e607350e2dfb1ca39582ac7ef946fc3 (diff)
downloadsuil-7cb38663b919e4c2ac4bb3dd7553ee5dde94f92d.tar.gz
suil-7cb38663b919e4c2ac4bb3dd7553ee5dde94f92d.tar.bz2
suil-7cb38663b919e4c2ac4bb3dd7553ee5dde94f92d.zip
Remove old release targets
Diffstat (limited to 'wscript')
-rw-r--r--wscript23
1 files changed, 2 insertions, 21 deletions
diff --git a/wscript b/wscript
index d8e9093..b08d208 100644
--- a/wscript
+++ b/wscript
@@ -17,8 +17,8 @@ top = '.' # Source directory
out = 'build' # Build directory
# Release variables
-uri = 'http://drobilla.net/sw/sratom'
-dist_pattern = 'http://download.drobilla.net/sratom-%d.%d.%d.tar.bz2'
+uri = 'http://drobilla.net/sw/suil'
+dist_pattern = 'http://download.drobilla.net/suil-%d.%d.%d.tar.bz2'
post_tags = ['Hacking', 'LAD', 'LV2', 'Suil']
def options(ctx):
@@ -433,25 +433,6 @@ def lint(ctx):
"$(find .. -name '*.c' -or -name '*.cpp' -or -name '*.mm')")
subprocess.call(cmd, cwd='build', shell=True)
-def release(ctx):
- autowaf.release(APPNAME.title(), VERSION)
-
-def upload(ctx):
- autowaf.run_script(
- ['scp suil-%s.tar* drobilla@drobilla.net:~/download.drobilla.net/' % VERSION,
- 'rsync -ravz --delete -e ssh build/doc/html/ drobilla@drobilla.net:~/drobilla.net/docs/suil/'])
-
-def posts(ctx):
- path = str(ctx.path.abspath())
- autowaf.news_to_posts(
- os.path.join(path, 'NEWS'),
- {'title' : 'Suil',
- 'description' : autowaf.get_blurb(os.path.join(path, 'README.md')),
- 'dist_pattern' : 'http://download.drobilla.net/suil-%s.tar.bz2'},
- { 'Author' : 'drobilla',
- 'Tags' : 'Hacking, LAD, LV2, Suil' },
- os.path.join(out, 'posts'))
-
def dist(ctx):
ctx.base_path = ctx.path
ctx.excl = ctx.get_excl() + ' .gitmodules'