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
|
#!/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 (make sure gclient is in your PATH):
export_tarball.py /foo/bar
The above will create file /foo/bar.tar.bz2.
"""
from __future__ import with_statement
import contextlib
import optparse
import os
import shutil
import subprocess
import sys
import tarfile
import tempfile
def RunCommand(argv):
"""Runs the command with given argv and returns exit code."""
try:
proc = subprocess.Popen(argv, stdout=None)
except OSError:
return 1
output = proc.communicate()[0]
return proc.returncode
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
output_fullname = args[0] + '.tar.bz2'
output_basename = os.path.basename(args[0])
target_dir = tempfile.mkdtemp()
try:
if RunCommand(['gclient', 'export', target_dir]) != 0:
print 'gclient failed'
return 1
if options.remove_nonessential_files:
nonessential_dirs = (
'src/chrome/test/data',
'src/chrome/tools/test/reference_build',
'src/gears/binaries',
'src/net/data/cache_tests',
'src/o3d/documentation',
'src/o3d/samples',
'src/third_party/lighttpd',
'src/third_party/WebKit/LayoutTests',
'src/webkit/data/layout_tests',
'src/webkit/tools/test/reference_build',
)
for dir in nonessential_dirs:
path = os.path.join(target_dir, dir)
try:
print 'removing %s...' % dir
shutil.rmtree(path)
except OSError, e:
print 'error while trying to remove %s, skipping' % dir
with contextlib.closing(tarfile.open(output_fullname, 'w:bz2')) as archive:
archive.add(os.path.join(target_dir, 'src'), arcname=output_basename)
finally:
shutil.rmtree(target_dir)
return 0
if __name__ == "__main__":
sys.exit(main(sys.argv[1:]))
|