Version 6.1.4.1, tag libreoffice-6.1.4.1
[LibreOffice.git] / bin / update / uncompress_mar.py
blob0989c7e92d6d0c4f44ad4e57cf8dae81b71e3d54
1 #!/usr/bin/env python3
2 # -*- tab-width: 4; indent-tabs-mode: nil; py-indent-offset: 4 -*-
4 # This file is part of the LibreOffice project.
6 # This Source Code Form is subject to the terms of the Mozilla Public
7 # License, v. 2.0. If a copy of the MPL was not distributed with this
8 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
11 # Extract a mar file and uncompress the content
13 import os
14 import re
15 import sys
16 import subprocess
17 from path import convert_to_native
19 def uncompress_content(file_path):
20 bzip2 = os.environ.get('BZIP2', 'bzip2')
21 file_path_compressed = file_path + ".bz2"
22 os.rename(file_path, file_path_compressed)
23 subprocess.check_call(["bzip2", "-d", convert_to_native(file_path_compressed)])
25 def extract_mar(mar_file, target_dir):
26 mar = os.environ.get('MAR', 'mar')
27 subprocess.check_call([mar, "-C", convert_to_native(target_dir), "-x", convert_to_native(mar_file)])
28 file_info = subprocess.check_output([mar, "-t", convert_to_native(mar_file)])
29 lines = file_info.splitlines()
30 prog = re.compile("\d+\s+\d+\s+(.+)")
31 for line in lines:
32 match = prog.match(line.decode("utf-8", "strict"))
33 if match is None:
34 continue
35 info = match.groups()[0]
36 # ignore header line
37 if info == b'NAME':
38 continue
40 uncompress_content(os.path.join(target_dir, info))
42 def main():
43 if len(sys.argv) != 3:
44 print("Help: This program takes exactly two arguments pointing to a mar file and a target location")
45 sys.exit(1)
47 mar_file = sys.argv[1]
48 target_dir = sys.argv[2]
49 extract_mar(mar_file, target_dir)
51 if __name__ == "__main__":
52 main()
54 # vim: set shiftwidth=4 softtabstop=4 expandtab: