aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-02-16 11:36:13 +0100
committerDavid Robillard <d@drobilla.net>2020-02-16 12:01:04 +0100
commit1d7932f1741e0ccdde3629c2fb3b922863a2c7df (patch)
tree4b3d1b088fdab2a17db53802fef5ce0f75759c90
parent0cf806ec1578a1509294f5855019f90d6ba10feb (diff)
downloadlv2-1d7932f1741e0ccdde3629c2fb3b922863a2c7df.tar.xz
Remove dead code
-rw-r--r--wscript19
1 files changed, 0 insertions, 19 deletions
diff --git a/wscript b/wscript
index 32eeba2..4cc294b 100644
--- a/wscript
+++ b/wscript
@@ -186,25 +186,6 @@ def build_index(task):
else:
print('warning: %s has no file release\n' % proj)
- # Get history for this LV2 release
- entries = lv2specgen.specHistoryEntries(model, proj, {})
-
- # Add entries for every spec that has the same distribution
- ctx = task.generator.bld
- subdirs = specdirs(ctx.path)
- for specdir in subdirs:
- files = ttl_files(ctx.path, specdir)
- exclude = [os.path.join(str(ctx.path), 'lv2/core/meta.ttl')]
- m = load_ttl(files, exclude)
- name = os.path.basename(specdir.abspath())
- spec = m.value(None, rdf.type, lv2.Specification)
- if spec:
- for dist in dists:
- release = m.value(None, doap['file-release'], dist[1])
- if release:
- entries[dist] += lv2specgen.releaseChangeset(
- m, release, str(name))
-
rows = []
for f in task.inputs:
if not f.abspath().endswith('index.html.in'):