From 733c0fa43fcf9580e6d984b6fb52bfb997e57bb8 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Mon, 6 Aug 2012 05:08:51 -0400 Subject: [PATCH] pypy! --- formula/pypy-1.7 | 11 +++++++++++ formula/pypy-1.8 | 11 +++++++++++ formula/pypy-1.9 | 11 +++++++++++ 3 files changed, 33 insertions(+) create mode 100755 formula/pypy-1.7 create mode 100755 formula/pypy-1.8 create mode 100755 formula/pypy-1.9 diff --git a/formula/pypy-1.7 b/formula/pypy-1.7 new file mode 100755 index 0000000..91f6c3a --- /dev/null +++ b/formula/pypy-1.7 @@ -0,0 +1,11 @@ +#!/usr/bin/env bash +# Options: + +OUT_PREFIX=$1 + +echo "Building Python..." +SOURCE_TARBALL='https://bitbucket.org/pypy/pypy/downloads/pypy-1.7-linux64.tar.bz2' +curl -L $SOURCE_TARBALL | tar jx +mv pypy-1.7 $OUT_PREFIX + +ln $OUT_PREFIX/pypy $OUT_PREFIX/python \ No newline at end of file diff --git a/formula/pypy-1.8 b/formula/pypy-1.8 new file mode 100755 index 0000000..f269a9f --- /dev/null +++ b/formula/pypy-1.8 @@ -0,0 +1,11 @@ +#!/usr/bin/env bash +# Options: + +OUT_PREFIX=$1 + +echo "Building Python..." +SOURCE_TARBALL='https://bitbucket.org/pypy/pypy/downloads/pypy-1.8-linux64.tar.bz2' +curl -L $SOURCE_TARBALL | tar jx +mv pypy-1.8 $OUT_PREFIX + +ln $OUT_PREFIX/pypy $OUT_PREFIX/python \ No newline at end of file diff --git a/formula/pypy-1.9 b/formula/pypy-1.9 new file mode 100755 index 0000000..b89dedf --- /dev/null +++ b/formula/pypy-1.9 @@ -0,0 +1,11 @@ +#!/usr/bin/env bash +# Options: + +OUT_PREFIX=$1 + +echo "Building Python..." +SOURCE_TARBALL='https://bitbucket.org/pypy/pypy/downloads/pypy-1.9-linux64.tar.bz2' +curl -L $SOURCE_TARBALL | tar jx +mv pypy-1.9 $OUT_PREFIX + +ln $OUT_PREFIX/pypy $OUT_PREFIX/python \ No newline at end of file