summaryrefslogtreecommitdiffstats
path: root/tools/make-opera-meta.py
blob: 4fb2cb960aa2a268d7da6ab5e96323a23aa8b3b3 (plain)
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
#!/usr/bin/env python3

import os
import json
import sys

if len(sys.argv) == 1 or not sys.argv[1]:
    raise SystemExit('Build dir missing.')

proj_dir = os.path.join(os.path.split(os.path.abspath(__file__))[0], '..')
build_dir = os.path.abspath(sys.argv[1])

version = ''
with open(os.path.join(proj_dir, 'dist', 'version')) as f:
    version = f.read().strip()

manifest_out = {}
manifest_out_file = os.path.join(build_dir, 'manifest.json')
with open(manifest_out_file) as f:
    manifest_out = json.load(f)

manifest_out['version'] = version

with open(manifest_out_file, 'w') as f2:
    json.dump(manifest_out, f2, indent=2, separators=(',', ': '), sort_keys=True)
    f2.write('\n')