From 9b45baa41cbda118225b8214b856b06cd05ddd54 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz <me@kennethreitz.org> Date: Tue, 22 Mar 2016 19:22:49 -0400 Subject: [PATCH] pypy-5.0.0 --- builds/runtimes/pypy-5.0.0 | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 builds/runtimes/pypy-5.0.0 diff --git a/builds/runtimes/pypy-5.0.0 b/builds/runtimes/pypy-5.0.0 new file mode 100644 index 00000000..6014bae4 --- /dev/null +++ b/builds/runtimes/pypy-5.0.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/pypy-5.0.0-linux64.tar.bz2' +curl -L $SOURCE_TARBALL | tar jx +cp -R pypy-5.0.0-linux64/* $OUT_PREFIX + +ln $OUT_PREFIX/bin/pypy $OUT_PREFIX/bin/python -- GitLab