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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
#!/usr/bin/python
# Copyright (c) 2009 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""
This tool creates a tarball with all the sources, but without .svn directories.
It can also remove files which are not strictly required for build, so that
the resulting tarball can be reasonably small (last time it was ~110 MB).
Example usage:
export_tarball.py /foo/bar
The above will create file /foo/bar.tar.bz2.
"""
import optparse
import os
import sys
import tarfile
NONESSENTIAL_DIRS = (
'chrome/test/data',
'chrome/tools/test/reference_build',
'gears/binaries',
'net/data/cache_tests',
'o3d/documentation',
'o3d/samples',
'third_party/lighttpd',
'third_party/WebKit/LayoutTests',
'webkit/data/layout_tests',
'webkit/tools/test/reference_build',
)
def GetSourceDirectory():
return os.path.realpath(
os.path.join(os.path.dirname(__file__), '..', '..', '..', 'src'))
# Workaround lack of the exclude parameter in add method in python-2.4.
# TODO(phajdan.jr): remove the workaround when it's not needed on the bot.
class MyTarFile(tarfile.TarFile):
def add(self, name, arcname=None, recursive=True, exclude=None):
if exclude is not None and exclude(name):
return
tarfile.TarFile.add(self, name, arcname=arcname, recursive=recursive)
def main(argv):
parser = optparse.OptionParser()
parser.add_option("--remove-nonessential-files",
dest="remove_nonessential_files",
action="store_true", default=False)
options, args = parser.parse_args(argv)
if len(args) != 1:
print 'You must provide only one argument: output file name'
print '(without .tar.bz2 extension).'
return 1
if not os.path.exists(GetSourceDirectory()):
print 'Cannot find the src directory.'
return 1
output_fullname = args[0] + '.tar.bz2'
output_basename = os.path.basename(args[0])
def ShouldExcludePath(path):
head, tail = os.path.split(path)
if tail in ('.svn', '.git'):
return True
if not options.remove_nonessential_files:
return False
for nonessential_dir in NONESSENTIAL_DIRS:
if path.startswith(os.path.join(GetSourceDirectory(), nonessential_dir)):
return True
return False
archive = MyTarFile.open(output_fullname, 'w:bz2')
try:
archive.add(GetSourceDirectory(), arcname=output_basename,
exclude=ShouldExcludePath)
finally:
archive.close()
return 0
if __name__ == "__main__":
sys.exit(main(sys.argv[1:]))
|