From eb395a94f9db3776b4996b74fa3cd7657b4d07d2 Mon Sep 17 00:00:00 2001
From: cclauss <cclauss@bluewin.ch>
Date: Thu, 23 Oct 2014 07:59:47 -0400
Subject: [PATCH] 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 00000000..9ec35e77
--- /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
-- 
GitLab