summaryrefslogtreecommitdiffstats
path: root/doc/wscript
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2017-08-07 09:59:49 +1000
committerChris Johns <chrisj@rtems.org>2017-08-07 09:59:49 +1000
commit8b96e17c8abf61d97dd224b23370dc148f32fe3c (patch)
treee8eb043159d145ffbbbf9c23ef872226de5ab059 /doc/wscript
parent4.12: Fix SIS patch URL (diff)
downloadrtems-source-builder-8b96e17c8abf61d97dd224b23370dc148f32fe3c.tar.bz2
doc: Remove in source documentation and the asciidoc package
The RSB documentation is now in ReST format and part of the RTEMS Documentation project. See https://docs.rtems.org/. Remove support for the GPL based asciidoc tool and remove the asciidoc package from the RSB. Add the Python Markdown package and update the reporter to use Markdown for HTML generation. The resuling HTML report is a single self contained file. Closes #3047.
Diffstat (limited to 'doc/wscript')
-rw-r--r--doc/wscript30
1 files changed, 0 insertions, 30 deletions
diff --git a/doc/wscript b/doc/wscript
deleted file mode 100644
index 614ffbb..0000000
--- a/doc/wscript
+++ /dev/null
@@ -1,30 +0,0 @@
-#
-# Waf build script to build the Source Builder Documentation.
-#
-
-import os.path
-
-version = "1.0.0"
-
-asciidoc = os.path.join(os.getcwd(),
- '..', 'source-builder', 'sb', 'asciidoc')
-
-def configure(ctx):
- ctx.env.ASCIIDOC = ctx.find_program(['asciidoc.py'],
- path_list = [asciidoc],
- mandatory = True)
- ctx.env.ASCIIDOC_FLAGS = ['-b', 'html5', '-a', 'data-uri',
- '-a', 'icons', '-a', 'max-width=55em-a']
-
-def build(ctx):
- ctx(target = 'source-builder.html', source = 'source-builder.txt')
- ctx.add_manual_dependency(ctx.path.find_node('source-builder.txt'),
- ctx.path.find_node('host-results.csv'))
-
-import waflib.TaskGen
-waflib.TaskGen.declare_chain(name = 'html',
- rule = '${ASCIIDOC} ${ASCIIDOC_FLAGS} -o ${TGT} ${SRC}',
- shell = False,
- ext_in = '.txt',
- ext_out = '.html',
- reentrant = False)