summaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2019-11-10 16:22:03 +0100
committerDavid Robillard <d@drobilla.net>2019-11-10 16:22:03 +0100
commit3aeba1aff9666a5db089dd1c7989109b37f6a688 (patch)
treedde8f9dd43f5c11a8d2cb13add7cc0eface60d77 /wscript
parenta4b3ca86ea28835a038d8458f06fa10af324952c (diff)
downloadlilv-3aeba1aff9666a5db089dd1c7989109b37f6a688.tar.gz
lilv-3aeba1aff9666a5db089dd1c7989109b37f6a688.tar.bz2
lilv-3aeba1aff9666a5db089dd1c7989109b37f6a688.zip
Remove old release targets
Diffstat (limited to 'wscript')
-rw-r--r--wscript18
1 files changed, 0 insertions, 18 deletions
diff --git a/wscript b/wscript
index 1d00dd1..78a8f07 100644
--- a/wscript
+++ b/wscript
@@ -442,13 +442,6 @@ def build(bld):
bld.add_post_fun(autowaf.run_ldconfig)
-def upload_docs(ctx):
- import glob
- os.system('rsync -ravz --delete -e ssh build/doc/html/ drobilla@drobilla.net:~/drobilla.net/docs/lilv/')
- for page in glob.glob('doc/*.[1-8]'):
- os.system('soelim %s | pre-grohtml troff -man -wall -Thtml | post-grohtml > build/%s.html' % (page, page))
- os.system('rsync -avz --delete -e ssh build/%s.html drobilla@drobilla.net:~/drobilla.net/man/' % page)
-
def test(tst):
with tst.group('unit') as check:
check(['./test/lilv_test'])
@@ -482,14 +475,3 @@ def lint(ctx):
"-readability-else-after-return\" " +
"$(find .. -name '*.c')")
subprocess.call(cmd, cwd='build', shell=True)
-
-def posts(ctx):
- path = str(ctx.path.abspath())
- autowaf.news_to_posts(
- os.path.join(path, 'NEWS'),
- {'title' : 'Lilv',
- 'description' : autowaf.get_blurb(os.path.join(path, 'README')),
- 'dist_pattern' : 'http://download.drobilla.net/lilv-%s.tar.bz2'},
- { 'Author' : 'drobilla',
- 'Tags' : 'Hacking, LAD, LV2, Lilv' },
- os.path.join(out, 'posts'))