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
|
#!/usr/bin/env python
import sys
import os
import py
TAR_OPTIONS = '-x -v --strip-components=2'
TAR = 'tar {options} -f {tarfile} {files}'
def untar(tarfile, files):
cmd = TAR.format(options=TAR_OPTIONS, tarfile=tarfile, files=files)
os.system(cmd)
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'"
else:
print 'Cannot determine the platform, please update this script'
sys.exit(1)
if sys.maxint == 2**63 - 1:
arch += '64'
hg = py.path.local.sysfind('hg')
branch = hg.sysexec('branch').strip()
if branch == 'default':
branch = 'trunk'
if '--nojit' in sys.argv:
kind = 'nojit'
else:
kind = 'jit'
filename = 'pypy-c-%s-latest-%s.tar.bz2' % (kind, arch)
url = 'http://buildbot.pypy.org/nightly/%s/%s' % (branch, filename)
tmp = py.path.local.mkdtemp()
pypy_latest = tmp.join(filename)
mydir = tmp.chdir()
print 'Downloading pypy to', tmp
if os.system(cmd % url) != 0:
sys.exit(1)
print 'Extracting pypy binary'
mydir.chdir()
untar(pypy_latest, binfiles)
include_dir = py.path.local('../../include')
if include_dir.check(dir=True):
include_dir.chdir()
untar(pypy_latest, '*/include/*')
else:
print 'WARNING: could not find the include/ dir'
|