2013-06-20 15:23:22 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2014-05-18 15:03:46 +00:00
|
|
|
import errno
|
2013-06-20 15:23:22 +00:00
|
|
|
import sys
|
|
|
|
import os
|
|
|
|
|
2015-05-08 05:42:18 +00:00
|
|
|
from lib.config import get_target_arch
|
2014-07-31 06:12:01 +00:00
|
|
|
from lib.util import safe_mkdir, rm_rf, extract_zip, tempdir, download
|
2013-06-20 15:23:22 +00:00
|
|
|
|
|
|
|
|
2016-11-10 16:33:01 +00:00
|
|
|
VERSION = 'v1.2.0'
|
2013-07-01 14:27:14 +00:00
|
|
|
SOURCE_ROOT = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
|
2016-06-01 20:16:53 +00:00
|
|
|
FRAMEWORKS_URL = 'http://github.com/electron/electron-frameworks/releases' \
|
2014-05-18 15:42:47 +00:00
|
|
|
'/download/' + VERSION
|
2014-04-29 02:03:03 +00:00
|
|
|
|
2013-06-20 15:23:22 +00:00
|
|
|
|
|
|
|
def main():
|
|
|
|
os.chdir(SOURCE_ROOT)
|
2014-05-18 15:42:47 +00:00
|
|
|
version_file = os.path.join(SOURCE_ROOT, 'external_binaries', '.version')
|
|
|
|
|
|
|
|
if (is_updated(version_file, VERSION)):
|
|
|
|
return
|
|
|
|
|
2014-07-31 06:12:01 +00:00
|
|
|
rm_rf('external_binaries')
|
|
|
|
safe_mkdir('external_binaries')
|
|
|
|
|
2014-05-18 15:03:46 +00:00
|
|
|
if sys.platform == 'darwin':
|
|
|
|
download_and_unzip('Mantle')
|
|
|
|
download_and_unzip('ReactiveCocoa')
|
|
|
|
download_and_unzip('Squirrel')
|
|
|
|
elif sys.platform in ['cygwin', 'win32']:
|
2015-05-08 05:42:18 +00:00
|
|
|
download_and_unzip('directxsdk-' + get_target_arch())
|
2013-06-20 15:23:22 +00:00
|
|
|
|
2014-08-06 15:16:42 +00:00
|
|
|
with open(version_file, 'w') as f:
|
|
|
|
f.write(VERSION)
|
|
|
|
|
2013-06-20 15:23:22 +00:00
|
|
|
|
2014-05-18 15:42:47 +00:00
|
|
|
def is_updated(version_file, version):
|
|
|
|
existing_version = ''
|
|
|
|
try:
|
|
|
|
with open(version_file, 'r') as f:
|
|
|
|
existing_version = f.readline().strip()
|
|
|
|
except IOError as e:
|
|
|
|
if e.errno != errno.ENOENT:
|
|
|
|
raise
|
|
|
|
return existing_version == version
|
|
|
|
|
|
|
|
|
2013-06-20 15:23:22 +00:00
|
|
|
def download_and_unzip(framework):
|
|
|
|
zip_path = download_framework(framework)
|
|
|
|
if zip_path:
|
2014-05-18 15:35:07 +00:00
|
|
|
extract_zip(zip_path, 'external_binaries')
|
2013-06-20 15:23:22 +00:00
|
|
|
|
|
|
|
|
|
|
|
def download_framework(framework):
|
2014-05-18 15:03:46 +00:00
|
|
|
filename = framework + '.zip'
|
2013-06-20 15:23:22 +00:00
|
|
|
url = FRAMEWORKS_URL + '/' + filename
|
2015-04-12 14:10:46 +00:00
|
|
|
download_dir = tempdir(prefix='electron-')
|
2013-06-20 15:23:22 +00:00
|
|
|
path = os.path.join(download_dir, filename)
|
|
|
|
|
|
|
|
download('Download ' + framework, url, path)
|
|
|
|
return path
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
sys.exit(main())
|