pypy-4.0.1

http://morepypy.blogspot.com
This commit is contained in:
cclauss
2015-11-29 16:23:12 +01:00
parent 86e0e29a41
commit 2a6053ec2c
2 changed files with 15 additions and 1 deletions
+1 -1
View File
@@ -48,7 +48,7 @@ Runtime options include:
- python-2.7.10
- python-3.5.0
- pypy-2.6.1 (unsupported, experimental)
- pypy-4.0.1 (unsupported, experimental)
- pypy3-2.4.0 (unsupported, experimental)
Other [unsupported runtimes](https://github.com/heroku/heroku-buildpack-python/tree/master/builds/runtimes) are available as well.
+14
View File
@@ -0,0 +1,14 @@
#!/usr/bin/env bash
# Build Path: /app/.heroku/python/
# Build Deps: libraries/sqlite
# NOTICE: This formula only works for the cedar-14 stack, not cedar.
OUT_PREFIX=$1
echo "Building PyPy..."
SOURCE_TARBALL='https://bitbucket.org/pypy/pypy/downloads/pypy-4.0.1-linux64.tar.bz2'
curl -L $SOURCE_TARBALL | tar jx
cp -R pypy-4.0.1-linux64/* $OUT_PREFIX
ln $OUT_PREFIX/bin/pypy $OUT_PREFIX/bin/python