aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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'):