From af087626531a9510c9b897cd520364ee746825b4 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Tue, 6 Mar 2012 23:40:39 +0100 Subject: wscript: Include talloc, tdb and ldb in pydoctor output. --- wscript | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/wscript b/wscript index 8945c78494..e1fe95363e 100755 --- a/wscript +++ b/wscript @@ -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) -- cgit