summaryrefslogtreecommitdiffstats
path: root/lib/wscript_build
blob: 97c3cfa2404cf857a8c8fa812b6fda1148648e55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/usr/bin/env python

import os, Options

# work out what python external libraries we need to install
external_libs = {
    "dns.resolver": "dnspython/dns",
    "subunit": "subunit/python/subunit",
    "testtools": "testtools/testtools"}

list = []

for module, package in external_libs.items():
    try:
        __import__(module)
    except ImportError:
        list.append(package)

for e in list:
    bld.INSTALL_WILDCARD('${PYTHONARCHDIR}/samba/external', e + '/**/*', flat=False,
                         exclude='*.pyc', trim_path=os.path.dirname(e))

bld.SAMBA_GENERATOR('external_init_py',
                    rule='touch ${TGT}',
                    target='empty_file')

bld.INSTALL_FILES('${PYTHONARCHDIR}/samba/external', 'empty_file', destname='__init__.py')

# a grouping library for event and socket related subsystems
bld.SAMBA_LIBRARY('samba-sockets',
                  source=[],
                  private_library=True,
                  grouping_library=True,
                  deps='LIBTSOCKET samba_socket tevent-util')