From 92b4f5e8aac9900d7ad22238328944fe084fc0a4 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz <me@kennethreitz.org> Date: Thu, 5 May 2016 16:31:25 -0400 Subject: [PATCH] pypy v5.1.0 v5.1.1 --- builds/runtimes/pypy-5.1.0 | 14 ++++++++++++++ builds/runtimes/pypy-5.1.1 | 14 ++++++++++++++ 2 files changed, 28 insertions(+) create mode 100755 builds/runtimes/pypy-5.1.0 create mode 100755 builds/runtimes/pypy-5.1.1 diff --git a/builds/runtimes/pypy-5.1.0 b/builds/runtimes/pypy-5.1.0 new file mode 100755 index 00000000..43e156eb --- /dev/null +++ b/builds/runtimes/pypy-5.1.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.1.0-linux64.tar.bz2' +curl -L $SOURCE_TARBALL | tar jx +cp -R pypy-5.1.0-linux64/* $OUT_PREFIX + +ln $OUT_PREFIX/bin/pypy $OUT_PREFIX/bin/python diff --git a/builds/runtimes/pypy-5.1.1 b/builds/runtimes/pypy-5.1.1 new file mode 100755 index 00000000..cff83997 --- /dev/null +++ b/builds/runtimes/pypy-5.1.1 @@ -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.1.1-linux64.tar.bz2' +curl -L $SOURCE_TARBALL | tar jx +cp -R pypy-5.1.1-linux64/* $OUT_PREFIX + +ln $OUT_PREFIX/bin/pypy $OUT_PREFIX/bin/python -- GitLab