mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-03 13:44:13 -04:00
170 lines
4.9 KiB
Python
170 lines
4.9 KiB
Python
#!/usr/bin/env python
|
|
# vim:fileencoding=utf-8
|
|
# License: GPLv3 Copyright: 2017, Kovid Goyal <kovid at kovidgoyal.net>
|
|
|
|
|
|
import glob
|
|
import os
|
|
import shlex
|
|
import subprocess
|
|
import sys
|
|
import time
|
|
from tempfile import NamedTemporaryFile
|
|
|
|
_plat = sys.platform.lower()
|
|
ismacos = 'darwin' in _plat
|
|
iswindows = 'win32' in _plat or 'win64' in _plat
|
|
|
|
|
|
def setenv(key, val):
|
|
os.environ[key] = os.path.expandvars(val)
|
|
|
|
|
|
if ismacos:
|
|
|
|
SWBASE = '/Users/Shared/calibre-build/sw'
|
|
SW = SWBASE + '/sw'
|
|
|
|
def install_env():
|
|
setenv('SWBASE', SWBASE)
|
|
setenv('SW', SW)
|
|
setenv(
|
|
'PATH',
|
|
'$SW/bin:$SW/qt/bin:$SW/python/Python.framework/Versions/2.7/bin:$PWD/node_modules/.bin:$PATH'
|
|
)
|
|
setenv('CFLAGS', '-I$SW/include')
|
|
setenv('LDFLAGS', '-L$SW/lib')
|
|
setenv('QMAKE', '$SW/qt/bin/qmake')
|
|
setenv('QTWEBENGINE_DISABLE_SANDBOX', '1')
|
|
setenv('QT_PLUGIN_PATH', '$SW/qt/plugins')
|
|
old = os.environ.get('DYLD_FALLBACK_LIBRARY_PATH', '')
|
|
if old:
|
|
old += ':'
|
|
setenv('DYLD_FALLBACK_LIBRARY_PATH', old + '$SW/lib')
|
|
else:
|
|
|
|
SWBASE = '/sw'
|
|
SW = SWBASE + '/sw'
|
|
|
|
def install_env():
|
|
setenv('SW', SW)
|
|
setenv('PATH', '$SW/bin:$PATH')
|
|
setenv('CFLAGS', '-I$SW/include')
|
|
setenv('LDFLAGS', '-L$SW/lib')
|
|
setenv('LD_LIBRARY_PATH', '$SW/qt/lib:$SW/lib')
|
|
setenv('PKG_CONFIG_PATH', '$SW/lib/pkgconfig')
|
|
setenv('QMAKE', '$SW/qt/bin/qmake')
|
|
setenv('CALIBRE_QT_PREFIX', '$SW/qt')
|
|
|
|
|
|
def run(*args):
|
|
if len(args) == 1:
|
|
args = shlex.split(args[0])
|
|
print(' '.join(args))
|
|
ret = subprocess.Popen(args).wait()
|
|
if ret != 0:
|
|
raise SystemExit(ret)
|
|
|
|
|
|
def decompress(path, dest, compression):
|
|
run('tar', 'x' + compression + 'f', path, '-C', dest)
|
|
|
|
|
|
def download_and_decompress(url, dest, compression=None):
|
|
if compression is None:
|
|
compression = 'j' if url.endswith('.bz2') else 'J'
|
|
for i in range(5):
|
|
print('Downloading', url, '...')
|
|
with NamedTemporaryFile() as f:
|
|
ret = subprocess.Popen(['curl', '-fSL', url], stdout=f).wait()
|
|
if ret == 0:
|
|
decompress(f.name, dest, compression)
|
|
sys.stdout.flush(), sys.stderr.flush()
|
|
return
|
|
time.sleep(1)
|
|
raise SystemExit('Failed to download ' + url)
|
|
|
|
|
|
def install_calibre_binary():
|
|
dest = os.path.expanduser('~/calibre-bin')
|
|
os.mkdir(dest)
|
|
# change this to the canonical download URL once 5.0 is released
|
|
download_and_decompress('https://download.calibre-ebook.com/calibre-4.99.12-x86_64.txz', dest, 'J')
|
|
return os.path.join(dest, 'calibre-debug')
|
|
|
|
|
|
def install_qt_source_code():
|
|
dest = os.path.expanduser('~/qt-base')
|
|
os.mkdir(dest)
|
|
download_and_decompress('https://download.qt.io/official_releases/qt/5.15/5.15.0/submodules/qtbase-everywhere-src-5.15.0.tar.xz', dest, 'J')
|
|
qdir = glob.glob(dest + '/*')[0]
|
|
os.environ['QT_SRC'] = qdir
|
|
|
|
|
|
def run_python(*args):
|
|
python = os.path.expandvars('$SW/bin/python')
|
|
if len(args) == 1:
|
|
args = shlex.split(args[0])
|
|
args = [python] + list(args)
|
|
return run(*args)
|
|
|
|
|
|
def install_linux_deps():
|
|
run('sudo', 'apt-get', 'update', '-y')
|
|
# run('sudo', 'apt-get', 'upgrade', '-y')
|
|
run('sudo', 'apt-get', 'install', '-y', 'gettext', 'libgl1-mesa-dev')
|
|
|
|
|
|
def main():
|
|
if iswindows:
|
|
import runpy
|
|
m = runpy.run_path('setup/win-ci.py')
|
|
return m['main']()
|
|
action = sys.argv[1]
|
|
if action == 'install':
|
|
run('sudo', 'mkdir', '-p', SW)
|
|
run('sudo', 'chown', '-R', os.environ['USER'], SWBASE)
|
|
|
|
tball = 'macos-64' if ismacos else 'linux-64'
|
|
download_and_decompress(
|
|
'https://download.calibre-ebook.com/ci/calibre3/{}.tar.xz'.format(tball), SW
|
|
)
|
|
if not ismacos:
|
|
install_linux_deps()
|
|
|
|
elif action == 'bootstrap':
|
|
install_env()
|
|
run_python('setup.py bootstrap --ephemeral')
|
|
|
|
elif action == 'pot':
|
|
transifexrc = '''\
|
|
[https://www.transifex.com]
|
|
api_hostname = https://api.transifex.com
|
|
hostname = https://www.transifex.com
|
|
password = PASSWORD
|
|
username = api
|
|
'''.replace('PASSWORD', os.environ['tx'])
|
|
with open(os.path.expanduser('~/.transifexrc'), 'w') as f:
|
|
f.write(transifexrc)
|
|
install_linux_deps()
|
|
interpreter = install_calibre_binary()
|
|
install_qt_source_code()
|
|
run(interpreter, 'setup.py', 'gui')
|
|
run(interpreter, 'setup.py', 'pot')
|
|
|
|
elif action == 'test':
|
|
os.environ['CI'] = 'true'
|
|
if ismacos:
|
|
os.environ['SSL_CERT_FILE'] = os.path.abspath(
|
|
'resources/mozilla-ca-certs.pem')
|
|
|
|
install_env()
|
|
run_python('setup.py test')
|
|
run_python('setup.py test_rs')
|
|
else:
|
|
raise SystemExit('Unknown action: {}'.format(action))
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|