summaryrefslogtreecommitdiff
path: root/buildtools/wafsamba/samba_dist.py
blob: 87ea8ccbefe905e154bc159fcbdcc4a43446348a (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# customised version of 'waf dist' for Samba tools
# uses git ls-files to get file lists

import Utils, os, sys, tarfile, stat, Scripting
from samba_utils import *

def add_tarfile(tar, fname, abspath):
    '''add a file to the tarball'''
    tinfo = tar.gettarinfo(name=abspath, arcname=fname)
    tinfo.uid   = 0
    tinfo.gid   = 0
    tinfo.uname = 'root'
    tinfo.gname = 'root'
    fh = open(abspath)
    tar.addfile(tinfo, fileobj=fh)
    fh.close()


def dist():

    appname = Utils.g_module.APPNAME
    version = Utils.g_module.VERSION

    env = LOAD_ENVIRONMENT()
    srcdir = os.path.normpath(os.path.join(os.path.dirname(Utils.g_module.root_path), Utils.g_module.srcdir))

    if not env.DIST_DIRS:
        print('You must use conf.DIST_DIRS() to set which directories to package')
        sys.exit(1)

    if not env.GIT:
        print('You need git installed to run waf dist')
        sys.exit(1)

    dist_base = '%s-%s' % (appname, version)
    dist_name = '%s.tar.gz' % (dist_base)

    tar = tarfile.open(dist_name, 'w:gz')

    for dir in env.DIST_DIRS.split():
        if dir.find(':') != -1:
            destdir=dir.split(':')[1]
            dir=dir.split(':')[0]
        else:
            destdir = '.'
        absdir = os.path.join(srcdir, dir)
        git_cmd = [ env.GIT, 'ls-files', '--full-name', absdir ]
        files = Utils.cmd_output(git_cmd).split()
        for f in files:
            abspath = os.path.join(srcdir, f)
            if dir != '.':
                f = f[len(dir)+1:]
            if destdir != '.':
                f = destdir + '/' + f
            fname = dist_base + '/' + f
            add_tarfile(tar, fname, abspath)

    tar.close()

    print('Created %s' % dist_name)


@conf
def DIST_DIRS(conf, dirs):
    '''set the directories to package, relative to top srcdir'''
    if not conf.env.DIST_DIRS:
        conf.env.DIST_DIRS = dirs

Scripting.dist = dist