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 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
|
#!/usr/bin/env python
from __future__ import print_function
import sys
import os
import subprocess
import tempfile
mydir = os.path.dirname(os.path.abspath(__file__))
TAR_OPTIONS = '-x -v --strip-components=2'
TAR = 'tar {options} -f {tarfile} {files}'
UNZIP_OPTIONS = '-j'
UNZIP = 'unzip {options} {zipfile} {files}'
def untar(tarfile, files):
if tarfile.endswith('zip'):
cmd = UNZIP.format(options=UNZIP_OPTIONS, zipfile=tarfile, files=files)
else:
cmd = TAR.format(options=TAR_OPTIONS, tarfile=tarfile, files=files)
os.system(cmd)
tarbz = 'tar.bz2'
if sys.platform.startswith('linux'):
arch = 'linux'
cmd = 'wget "%s"'
TAR_OPTIONS += ' --wildcards'
binfiles = "'*/bin/pypy3*' '*/bin/libpypy3-c.so*'"
if os.uname()[-1].startswith('arm'):
arch += '-armhf-raspbian'
elif sys.platform.startswith('darwin'):
arch = 'osx'
cmd = 'curl -O "%s"'
binfiles = "'*/bin/pypy3'"
elif sys.platform == 'win32':
arch = 'win'
cmd = 'wget "%s"'
binfiles = "'pypy*.exe' '*.dll'"
tarbz = "zip"
else:
print('Cannot determine the platform, please update this script')
sys.exit(1)
if sys.maxsize == 2**63 - 1:
arch += '64'
branch = subprocess.check_output('git rev-parse --abbrev-ref HEAD'.split()).strip().decode('utf-8')
if branch == 'default':
branch = 'main'
if '--nojit' in sys.argv:
kind = 'nojit'
else:
kind = 'jit'
filename = 'pypy-c-%s-latest-%s.%s' % (kind, arch, tarbz)
url = 'http://buildbot.pypy.org/nightly/%s/%s' % (branch, filename)
tmp = tempfile.mkdtemp()
pypy_latest = os.path.join(tmp, filename)
olddir = os.getcwd()
os.chdir(tmp)
print('Downloading pypy to', tmp)
if os.system(cmd % url) != 0:
sys.exit(1)
print('Extracting pypy binary to', mydir)
os.chdir(mydir)
untar(pypy_latest, binfiles)
include_dir = os.path.join(mydir, '..', '..', 'include')
lib_dir = os.path.join(mydir, '..', 'lib')
if os.path.isdir(include_dir):
os.chdir(include_dir)
untar(pypy_latest, '*/include/*')
else:
print('WARNING: could not find the include/ dir')
os.chdir(olddir)
if not os.path.exists(lib_dir):
os.mkdir(lib_dir)
os.chdir(lib_dir)
untar(pypy_latest, '*/lib/*')
os.chdir(olddir)
|