From b7c3cdb6074683897d9f3809d4e167896342902b Mon Sep 17 00:00:00 2001 From: Kenneth Reitz <me@kennethreitz.org> Date: Thu, 23 Mar 2017 15:57:32 -0400 Subject: [PATCH] pypy-5.7.0 --- builds/runtimes/pypy-5.7.0 | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 builds/runtimes/pypy-5.7.0 diff --git a/builds/runtimes/pypy-5.7.0 b/builds/runtimes/pypy-5.7.0 new file mode 100755 index 00000000..de074edf --- /dev/null +++ b/builds/runtimes/pypy-5.7.0 @@ -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 and heroku-16 stacks, not cedar. + +OUT_PREFIX=$1 + +echo "Building PyPy..." +SOURCE_TARBALL='https://bitbucket.org/pypy/pypy/downloads/pypy2-v5.7.0-linux64.tar.bz2' +curl -L $SOURCE_TARBALL | tar jx +cp -R pypy2-v5.7.0-linux64/* $OUT_PREFIX + +ln $OUT_PREFIX/bin/pypy $OUT_PREFIX/bin/python -- GitLab