summaryrefslogtreecommitdiffstats
path: root/.travis/py3rewrite
blob: f8a208d2e3c70107a24d536653ee9d4ca4e3ff41 (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
35
36
37
38
39
40
41
42
43
44
45
46
#!/usr/bin/python3
import os
import shutil

from distutils.sysconfig import get_python_lib


BUILDDIR = os.environ['BUILDDIR']
PKIBASE = os.path.join(BUILDDIR, 'pki', 'base')
PKICLIENT = os.path.join(PKIBASE, 'common', 'python', 'pki')
PKISERVER = os.path.join(PKIBASE, 'server', 'python', 'pki', 'server')
PKISBIN = os.path.join(PKIBASE, 'server', 'sbin')

SITEPACKAGES = get_python_lib()


def copyscript(src, dst):
    with open(src) as f:
        lines = f.readlines()
    lines[0] = '#!/usr/bin/python3\n'
    with open(dst, 'w') as f:
        os.fchmod(f.fileno(), 0o755)
        f.writelines(lines)


def copyfiles():
    shutil.rmtree(os.path.join(SITEPACKAGES, 'pki'))
    shutil.copytree(
        PKICLIENT,
        os.path.join(SITEPACKAGES, 'pki')
    )
    shutil.copytree(
        PKISERVER,
        os.path.join(SITEPACKAGES, 'pki', 'server')
    )
    copyscript(
        os.path.join(PKISBIN, 'pkispawn'),
        '/usr/sbin/pkispawn'
    )
    copyscript(
        os.path.join(PKISBIN, 'pkidestroy'),
        '/usr/sbin/pkidestroy'
    )

if __name__ == '__main__':
    copyfiles()