From c03cb26961d491e297904302bb72cc913e7a5682 Mon Sep 17 00:00:00 2001 From: Josh Friend <jfriend@michiganlabs.com> Date: Thu, 1 Sep 2016 09:14:05 -0400 Subject: [PATCH] Add pypy2 v5.4.1 --- builds/runtimes/pypy-5.6.0 | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 builds/runtimes/pypy-5.6.0 diff --git a/builds/runtimes/pypy-5.6.0 b/builds/runtimes/pypy-5.6.0 new file mode 100644 index 00000000..2aee7539 --- /dev/null +++ b/builds/runtimes/pypy-5.6.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 stack, not cedar. + +OUT_PREFIX=$1 + +echo "Building PyPy..." +SOURCE_TARBALL='https://bitbucket.org/pypy/pypy/downloads/pypy2-v5.6.0-linux64.tar.bz2' +curl -L $SOURCE_TARBALL | tar jx +cp -R pypy2-v5.6.0-linux64/* $OUT_PREFIX + +ln $OUT_PREFIX/bin/pypy $OUT_PREFIX/bin/python -- GitLab