From da13bf1f3d574b424f82450d1c8b033ac3bdf7d4 Mon Sep 17 00:00:00 2001 From: Josh Friend <josh@fueledbycaffeine.com> Date: Mon, 31 Jul 2017 18:46:43 -0400 Subject: [PATCH] Add pypy2-5.8.0 (#430) --- builds/runtimes/pypy-5.8.0 | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 builds/runtimes/pypy-5.8.0 diff --git a/builds/runtimes/pypy-5.8.0 b/builds/runtimes/pypy-5.8.0 new file mode 100755 index 00000000..5c6ab3f8 --- /dev/null +++ b/builds/runtimes/pypy-5.8.0 @@ -0,0 +1,12 @@ +#!/usr/bin/env bash +# Build Path: /app/.heroku/python/ +# Build Deps: libraries/sqlite + +OUT_PREFIX=$1 + +echo "Building PyPy..." +SOURCE_TARBALL='https://bitbucket.org/pypy/pypy/downloads/pypy2-v5.8.0-linux64.tar.bz2' +curl -L $SOURCE_TARBALL | tar jx +cp -R pypy2-v5.8.0-linux64/* $OUT_PREFIX + +ln $OUT_PREFIX/bin/pypy2 $OUT_PREFIX/bin/python -- GitLab