1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-03 04:22:09 +03:00

wscript: Include talloc, tdb and ldb in pydoctor output.

This commit is contained in:
Jelmer Vernooij
2012-03-06 23:40:39 +01:00
parent adcdee8933
commit af08762653

11
wscript
View File

@ -151,7 +151,16 @@ def build(bld):
def pydoctor(ctx):
'''build python apidocs'''
cmd='PYTHONPATH=%s pydoctor --introspect-c-modules --project-name=Samba --project-url=http://www.samba.org --make-html --docformat=restructuredtext --add-package bin/python/samba' % os.path.abspath('bin/python')
bp = os.path.abspath('bin/python')
mpaths = {}
for m in ['talloc', 'tdb', 'ldb']:
f = os.popen("PYTHONPATH=%s python -c 'import %s; print %s.__file__'" % (bp, m, m), 'r')
try:
mpaths[m] = f.read().strip()
finally:
f.close()
cmd='PYTHONPATH=%s pydoctor --introspect-c-modules --project-name=Samba --project-url=http://www.samba.org --make-html --docformat=restructuredtext --add-package bin/python/samba --add-module %s --add-module %s --add-module %s' % (
bp, mpaths['tdb'], mpaths['ldb'], mpaths['talloc'])
print("Running: %s" % cmd)
os.system(cmd)