From eb395a94f9db3776b4996b74fa3cd7657b4d07d2 Mon Sep 17 00:00:00 2001 From: cclauss Date: Thu, 23 Oct 2014 07:59:47 -0400 Subject: [PATCH 1/2] Create pypy3-2.4.0 Support for the new Pypy3 release http://morepypy.blogspot.com --- builds/runtimes/pypy3-2.4.0 | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 builds/runtimes/pypy3-2.4.0 diff --git a/builds/runtimes/pypy3-2.4.0 b/builds/runtimes/pypy3-2.4.0 new file mode 100644 index 0000000..9ec35e7 --- /dev/null +++ b/builds/runtimes/pypy3-2.4.0 @@ -0,0 +1,15 @@ + +#!/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/pypy3-2.4.0-linux64.tar.bz2' +curl -L $SOURCE_TARBALL | tar jx +cp -R pypy3-2.4.0-linux64/* $OUT_PREFIX + +ln $OUT_PREFIX/bin/pypy $OUT_PREFIX/bin/python From 8ec0b5f0dd123d25cd047221bb0461594bfed9df Mon Sep 17 00:00:00 2001 From: cclauss Date: Fri, 21 Nov 2014 19:46:34 +0100 Subject: [PATCH 2/2] Update pypy3-2.4.0 --- builds/runtimes/pypy3-2.4.0 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builds/runtimes/pypy3-2.4.0 b/builds/runtimes/pypy3-2.4.0 index 9ec35e7..2441e21 100644 --- a/builds/runtimes/pypy3-2.4.0 +++ b/builds/runtimes/pypy3-2.4.0 @@ -3,7 +3,7 @@ # Build Path: /app/.heroku/python/ # Build Deps: libraries/sqlite -# NOTICE: This formula only works for the cedar-14 stack, not cedar. +# NOTICE: This formula only works for the cedar-14 stack, not cedar. OUT_PREFIX=$1