Merge branch 'master' into subtitles_rework
[youtube-dl] / devscripts / gh-pages / add-version.py
1 #!/usr/bin/env python3
2
3 import json
4 import sys
5 import hashlib
6 import urllib.request
7
8 if len(sys.argv) <= 1:
9     print('Specify the version number as parameter')
10     sys.exit()
11 version = sys.argv[1]
12
13 with open('update/LATEST_VERSION', 'w') as f:
14     f.write(version)
15
16 versions_info = json.load(open('update/versions.json'))
17 if 'signature' in versions_info:
18     del versions_info['signature']
19
20 new_version = {}
21
22 filenames = {
23     'bin': 'youtube-dl',
24     'exe': 'youtube-dl.exe',
25     'tar': 'youtube-dl-%s.tar.gz' % version}
26 build_dir = os.path.join('..', '..', 'build', version)
27 for key, filename in filenames.items():
28     fn = os.path.join(build_dir, filename)
29     with open(fn, 'rb') as f:
30         data = f.read()
31     if not data:
32         raise ValueError('File %s is empty!' % fn)
33     sha256sum = hashlib.sha256(data).hexdigest()
34     new_version[key] = (url, sha256sum)
35
36 versions_info['versions'][version] = new_version
37 versions_info['latest'] = version
38
39 with open('update/versions.json', 'w') as jsonf:
40     json.dump(versions_info, jsonf, indent=4, sort_keys=True)