OLD | NEW |
---|---|
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 # Copyright 2016 the V8 project authors. All rights reserved. | 2 # Copyright 2016 the V8 project authors. All rights reserved. |
3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
5 | 5 |
6 import os | 6 import os |
7 import sys | |
7 import tarfile | 8 import tarfile |
9 import time | |
10 | |
11 # In GN we expect the path to a stamp file as an argument. | |
12 if len(sys.argv) == 2: | |
13 STAMP_FILE = os.path.abspath(sys.argv[1]) | |
8 | 14 |
9 os.chdir(os.path.dirname(os.path.abspath(__file__))) | 15 os.chdir(os.path.dirname(os.path.abspath(__file__))) |
10 | 16 |
11 # Workaround for slow grp and pwd calls. | 17 # Workaround for slow grp and pwd calls. |
12 tarfile.grp = None | 18 tarfile.grp = None |
13 tarfile.pwd = None | 19 tarfile.pwd = None |
14 | 20 |
15 def filter_git(tar_info): | 21 def filter_git(tar_info): |
16 if tar_info.name.startswith(os.path.join('data', '.git')): | 22 if tar_info.name.startswith(os.path.join('data', '.git')): |
17 return None | 23 return None |
18 else: | 24 else: |
19 tar_info.uname = tar_info.gname = "test262" | 25 tar_info.uname = tar_info.gname = "test262" |
20 return tar_info | 26 return tar_info |
21 | 27 |
22 with tarfile.open('data.tar', 'w') as tar: | 28 with tarfile.open('data.tar', 'w') as tar: |
23 tar.add('data', filter=filter_git) | 29 tar.add('data', filter=filter_git) |
30 | |
31 # Workaround for GN. We can't specify the tarfile as output because it's | |
vogelheim
2016/06/06 08:48:26
Can we get around this workaround once the gyp dep
Michael Achenbach
2016/06/06 08:51:21
Not because of the deprecation. Only by investing
| |
32 # not in the product directory. Therefore we track running of this script | |
33 # with an extra stamp file in the product directory. | |
34 if len(sys.argv) == 2: | |
35 with open(STAMP_FILE, 'w') as f: | |
36 f.write(str(time.time())) | |
OLD | NEW |