Remove bundled testtools.
[Samba.git] / lib / wscript_build
blobdd74022b8ecc146bfb32e69d7cffea48fff2b34b
1 #!/usr/bin/env python
3 import os, Options
5 # work out what python external libraries we need to install
6 external_libs = {
7 "extras": "extras/extras",
8 "mimeparse": "mimeparse/mimeparse",
11 list = []
13 for module, package in external_libs.items():
14 try:
15 __import__(module)
16 except ImportError:
17 list.append(package)
19 for e in list:
20 bld.INSTALL_WILDCARD('${PYTHONARCHDIR}/samba/external', e + '/**/*', flat=False,
21 exclude='*.pyc', trim_path=os.path.dirname(e))
23 bld.SAMBA_GENERATOR('external_init_py',
24 rule='touch ${TGT}',
25 target='empty_file')
27 bld.INSTALL_FILES('${PYTHONARCHDIR}/samba/external', 'empty_file', destname='__init__.py')
29 # a grouping library for event and socket related subsystems
30 bld.SAMBA_LIBRARY('samba-sockets',
31 source=[],
32 private_library=True,
33 grouping_library=True,
34 deps='LIBTSOCKET samba_socket tevent-util')