1 # customised version of 'waf dist' for Samba tools
2 # uses git ls-files to get file lists
4 import Utils
, os
, sys
, tarfile
, stat
, Scripting
, Logs
, Options
5 from samba_utils
import *
11 def add_symlink(tar
, fname
, abspath
, basedir
):
12 '''handle symlinks to directories that may move during packaging'''
13 if not os
.path
.islink(abspath
):
15 tinfo
= tar
.gettarinfo(name
=abspath
, arcname
=fname
)
16 tgt
= os
.readlink(abspath
)
19 # we need to find the target relative to the main directory
20 # this is here to cope with symlinks into the buildtools
21 # directory from within the standalone libraries in Samba. For example,
22 # a symlink to ../../builtools/scripts/autogen-waf.sh needs
23 # to be rewritten as a symlink to buildtools/scripts/autogen-waf.sh
24 # when the tarball for talloc is built
26 # the filename without the appname-version
27 rel_fname
= '/'.join(fname
.split('/')[1:])
29 # join this with the symlink target
30 tgt_full
= os
.path
.join(os
.path
.dirname(rel_fname
), tgt
)
32 # join with the base directory
33 tgt_base
= os
.path
.normpath(os
.path
.join(basedir
, tgt_full
))
35 # see if this is inside one of our dist_dirs
36 for dir in dist_dirs
.split():
37 if dir.find(':') != -1:
38 destdir
=dir.split(':')[1]
43 # internal links don't get rewritten
45 if dir == tgt_base
[0:len(dir)] and tgt_base
[len(dir)] == '/':
46 new_tgt
= destdir
+ tgt_base
[len(dir):]
47 tinfo
.linkname
= new_tgt
57 def add_tarfile(tar
, fname
, abspath
, basedir
):
58 '''add a file to the tarball'''
59 if add_symlink(tar
, fname
, abspath
, basedir
):
62 tinfo
= tar
.gettarinfo(name
=abspath
, arcname
=fname
)
64 Logs
.error('Unable to find file %s - missing from git checkout?' % abspath
)
71 tar
.addfile(tinfo
, fileobj
=fh
)
75 def vcs_dir_contents(path
):
76 """Return the versioned files under a path.
78 :return: List of paths relative to path
82 if os
.path
.isdir(os
.path
.join(repo
, ".git")):
83 ls_files_cmd
= [ 'git', 'ls-files', '--full-name',
84 os_path_relpath(path
, repo
) ]
86 env
= dict(os
.environ
)
87 env
["GIT_DIR"] = os
.path
.join(repo
, ".git")
89 elif os
.path
.isdir(os
.path
.join(repo
, ".bzr")):
90 ls_files_cmd
= [ 'bzr', 'ls', '--recursive', '--versioned',
91 os_path_relpath(path
, repo
)]
95 repo
= os
.path
.dirname(repo
)
97 raise Exception("unsupported or no vcs for %s" % path
)
98 return Utils
.cmd_output(ls_files_cmd
, cwd
=cwd
, env
=env
).split()
101 def dist(appname
='', version
=''):
103 def add_files_to_tarball(tar
, srcdir
, srcsubdir
, dstdir
, dstsubdir
, blacklist
, files
):
104 if blacklist
is None:
107 abspath
= os
.path
.join(srcdir
, f
)
110 f
= f
[len(srcsubdir
)+1:]
112 # Remove files in the blacklist
116 # Remove directories in the blacklist
122 if os
.path
.isdir(abspath
):
125 f
= dstsubdir
+ '/' + f
126 fname
= dstdir
+ '/' + f
127 add_tarfile(tar
, fname
, abspath
, srcsubdir
)
130 def list_directory_files(abspath
):
132 for root
, dirs
, files
in os
.walk(abspath
):
134 out_files
.append(os
.path
.join(root
, f
))
138 if not isinstance(appname
, str) or not appname
:
139 # this copes with a mismatch in the calling arguments for dist()
140 appname
= Utils
.g_module
.APPNAME
141 version
= Utils
.g_module
.VERSION
143 version
= Utils
.g_module
.VERSION
145 srcdir
= os
.path
.normpath(os
.path
.join(os
.path
.dirname(Utils
.g_module
.root_path
), Utils
.g_module
.srcdir
))
148 Logs
.error('You must use samba_dist.DIST_DIRS() to set which directories to package')
151 dist_base
= '%s-%s' % (appname
, version
)
153 if Options
.options
.SIGN_RELEASE
:
154 dist_name
= '%s.tar' % (dist_base
)
155 tar
= tarfile
.open(dist_name
, 'w')
157 dist_name
= '%s.tar.gz' % (dist_base
)
158 tar
= tarfile
.open(dist_name
, 'w:gz')
160 blacklist
= dist_blacklist
.split()
162 for dir in dist_dirs
.split():
163 if dir.find(':') != -1:
164 destdir
=dir.split(':')[1]
165 dir=dir.split(':')[0]
168 absdir
= os
.path
.join(srcdir
, dir)
170 files
= vcs_dir_contents(absdir
)
172 Logs
.error('unable to get contents of %s: %s' % (absdir
, e
))
174 add_files_to_tarball(tar
, srcdir
, dir, dist_base
, destdir
, blacklist
, files
)
177 for file in dist_files
.split():
178 if file.find(':') != -1:
179 destfile
= file.split(':')[1]
180 file = file.split(':')[0]
184 absfile
= os
.path
.join(srcdir
, file)
186 if os
.path
.isdir(absfile
):
189 files
= list_directory_files(dir)
190 add_files_to_tarball(tar
, srcdir
, dir, dist_base
, destdir
, blacklist
, files
)
192 fname
= dist_base
+ '/' + destfile
193 add_tarfile(tar
, fname
, absfile
, destfile
)
197 if Options
.options
.SIGN_RELEASE
:
200 os
.unlink(dist_name
+ '.asc')
204 cmd
= "gpg --detach-sign --armor " + dist_name
206 uncompressed_tar
= open(dist_name
, 'rb')
207 compressed_tar
= gzip
.open(dist_name
+ '.gz', 'wb')
209 buffer = uncompressed_tar
.read(1048576)
211 compressed_tar
.write(buffer)
214 uncompressed_tar
.close()
215 compressed_tar
.close()
217 Logs
.info('Created %s.gz %s.asc' % (dist_name
, dist_name
))
218 dist_name
= dist_name
+ '.gz'
220 Logs
.info('Created %s' % dist_name
)
227 '''set the directories to package, relative to top srcdir'''
233 def DIST_FILES(files
, extend
=False):
234 '''set additional files for packaging, relative to top srcdir'''
239 dist_files
= dist_files
+ " " + files
242 def DIST_BLACKLIST(blacklist
):
243 '''set the files to exclude from packaging, relative to top srcdir'''
244 global dist_blacklist
245 if not dist_blacklist
:
246 dist_blacklist
= blacklist
248 Scripting
.dist
= dist