From 5f0ba6a3711f70bb25b9cbc761bb86f408775ec0 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz <me@kennethreitz.com> Date: Fri, 18 Jul 2014 14:08:02 -0400 Subject: [PATCH] pypy 2.3.1 attempt for cedar-14 --- builds/runtimes/pypy-2.3.1 | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 builds/runtimes/pypy-2.3.1 diff --git a/builds/runtimes/pypy-2.3.1 b/builds/runtimes/pypy-2.3.1 new file mode 100755 index 00000000..39424305 --- /dev/null +++ b/builds/runtimes/pypy-2.3.1 @@ -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/pypy-2.3.1-linux64.tar.bz2' +curl -L $SOURCE_TARBALL | tar jx +cp -R pypy-2.3.1-linux64/* $OUT_PREFIX + +ln $OUT_PREFIX/bin/pypy $OUT_PREFIX/bin/python -- GitLab