2012-12-31 18:15:30 +00:00
|
|
|
#!/usr/bin/env python3
|
2014-11-26 19:01:20 +00:00
|
|
|
from __future__ import unicode_literals
|
2012-12-31 18:15:30 +00:00
|
|
|
|
|
|
|
import json
|
|
|
|
import sys
|
|
|
|
import hashlib
|
2013-09-06 09:07:34 +00:00
|
|
|
import os.path
|
|
|
|
|
2012-12-31 18:15:30 +00:00
|
|
|
|
|
|
|
if len(sys.argv) <= 1:
|
2013-08-23 21:57:23 +00:00
|
|
|
print('Specify the version number as parameter')
|
|
|
|
sys.exit()
|
2012-12-31 18:15:30 +00:00
|
|
|
version = sys.argv[1]
|
|
|
|
|
|
|
|
with open('update/LATEST_VERSION', 'w') as f:
|
2013-08-23 21:57:23 +00:00
|
|
|
f.write(version)
|
2012-12-31 18:15:30 +00:00
|
|
|
|
|
|
|
versions_info = json.load(open('update/versions.json'))
|
|
|
|
if 'signature' in versions_info:
|
2013-08-23 21:57:23 +00:00
|
|
|
del versions_info['signature']
|
2012-12-31 18:15:30 +00:00
|
|
|
|
|
|
|
new_version = {}
|
|
|
|
|
2013-08-23 21:57:23 +00:00
|
|
|
filenames = {
|
2020-09-02 18:25:25 +00:00
|
|
|
'bin': 'youtube-dlc',
|
|
|
|
'exe': 'youtube-dlc.exe',
|
|
|
|
'tar': 'youtube-dlc-%s.tar.gz' % version}
|
2013-09-06 08:51:53 +00:00
|
|
|
build_dir = os.path.join('..', '..', 'build', version)
|
2012-12-31 18:15:30 +00:00
|
|
|
for key, filename in filenames.items():
|
2013-09-06 09:07:34 +00:00
|
|
|
url = 'https://yt-dl.org/downloads/%s/%s' % (version, filename)
|
2013-09-06 08:51:53 +00:00
|
|
|
fn = os.path.join(build_dir, filename)
|
|
|
|
with open(fn, 'rb') as f:
|
|
|
|
data = f.read()
|
|
|
|
if not data:
|
|
|
|
raise ValueError('File %s is empty!' % fn)
|
2013-08-23 21:57:23 +00:00
|
|
|
sha256sum = hashlib.sha256(data).hexdigest()
|
|
|
|
new_version[key] = (url, sha256sum)
|
2012-12-31 18:15:30 +00:00
|
|
|
|
|
|
|
versions_info['versions'][version] = new_version
|
|
|
|
versions_info['latest'] = version
|
|
|
|
|
2013-08-23 21:57:23 +00:00
|
|
|
with open('update/versions.json', 'w') as jsonf:
|
|
|
|
json.dump(versions_info, jsonf, indent=4, sort_keys=True)
|