From 9fb676aba9749ac636739f891fd3b6027e657f00 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz <me@kennethreitz.com> Date: Mon, 2 Jun 2014 17:12:42 -0400 Subject: [PATCH] python 3.x series --- builds/runtimes/python-3.2.0 | 17 +++++++++++++++++ builds/runtimes/python-3.2.1 | 17 +++++++++++++++++ builds/runtimes/python-3.2.2 | 17 +++++++++++++++++ builds/runtimes/python-3.2.3 | 17 +++++++++++++++++ builds/runtimes/python-3.2.4 | 17 +++++++++++++++++ builds/runtimes/python-3.2.5 | 17 +++++++++++++++++ 6 files changed, 102 insertions(+) create mode 100755 builds/runtimes/python-3.2.0 create mode 100755 builds/runtimes/python-3.2.1 create mode 100755 builds/runtimes/python-3.2.2 create mode 100755 builds/runtimes/python-3.2.3 create mode 100755 builds/runtimes/python-3.2.4 create mode 100755 builds/runtimes/python-3.2.5 diff --git a/builds/runtimes/python-3.2.0 b/builds/runtimes/python-3.2.0 new file mode 100755 index 00000000..f4c5ce23 --- /dev/null +++ b/builds/runtimes/python-3.2.0 @@ -0,0 +1,17 @@ +#!/usr/bin/env bash +# Build Path: /app/.heroku/python/ +# Build Deps: libraries/sqlite + +OUT_PREFIX=$1 + +echo "Building Python..." +SOURCE_TARBALL='http://python.org/ftp/python/3.2/Python-3.2.tgz' +curl -L $SOURCE_TARBALL | tar xz +mv Python-3.2 src +cd src + +./configure --prefix=$OUT_PREFIX --enable-shared +make +make install + +ln $OUT_PREFIX/bin/python3 $OUT_PREFIX/bin/python diff --git a/builds/runtimes/python-3.2.1 b/builds/runtimes/python-3.2.1 new file mode 100755 index 00000000..68392d09 --- /dev/null +++ b/builds/runtimes/python-3.2.1 @@ -0,0 +1,17 @@ +#!/usr/bin/env bash +# Build Path: /app/.heroku/python/ +# Build Deps: libraries/sqlite + +OUT_PREFIX=$1 + +echo "Building Python..." +SOURCE_TARBALL='http://python.org/ftp/python/3.2.1/Python-3.2.1.tgz' +curl -L $SOURCE_TARBALL | tar xz +mv Python-3.2.1 src +cd src + +./configure --prefix=$OUT_PREFIX --enable-shared +make +make install + +ln $OUT_PREFIX/bin/python3 $OUT_PREFIX/bin/python diff --git a/builds/runtimes/python-3.2.2 b/builds/runtimes/python-3.2.2 new file mode 100755 index 00000000..dd22cab7 --- /dev/null +++ b/builds/runtimes/python-3.2.2 @@ -0,0 +1,17 @@ +#!/usr/bin/env bash +# Build Path: /app/.heroku/python/ +# Build Deps: libraries/sqlite + +OUT_PREFIX=$1 + +echo "Building Python..." +SOURCE_TARBALL='http://python.org/ftp/python/3.2.2/Python-3.2.2.tgz' +curl -L $SOURCE_TARBALL | tar xz +mv Python-3.2.2 src +cd src + +./configure --prefix=$OUT_PREFIX --enable-shared +make +make install + +ln $OUT_PREFIX/bin/python3 $OUT_PREFIX/bin/python diff --git a/builds/runtimes/python-3.2.3 b/builds/runtimes/python-3.2.3 new file mode 100755 index 00000000..9d887e6e --- /dev/null +++ b/builds/runtimes/python-3.2.3 @@ -0,0 +1,17 @@ +#!/usr/bin/env bash +# Build Path: /app/.heroku/python/ +# Build Deps: libraries/sqlite + +OUT_PREFIX=$1 + +echo "Building Python..." +SOURCE_TARBALL='http://python.org/ftp/python/3.2.3/Python-3.2.3.tgz' +curl -L $SOURCE_TARBALL | tar xz +mv Python-3.2.3 src +cd src + +./configure --prefix=$OUT_PREFIX --enable-shared +make +make install + +ln $OUT_PREFIX/bin/python3 $OUT_PREFIX/bin/python diff --git a/builds/runtimes/python-3.2.4 b/builds/runtimes/python-3.2.4 new file mode 100755 index 00000000..20d2050d --- /dev/null +++ b/builds/runtimes/python-3.2.4 @@ -0,0 +1,17 @@ +#!/usr/bin/env bash +# Build Path: /app/.heroku/python/ +# Build Deps: libraries/sqlite + +OUT_PREFIX=$1 + +echo "Building Python..." +SOURCE_TARBALL='http://python.org/ftp/python/3.2.4/Python-3.2.4.tgz' +curl -L $SOURCE_TARBALL | tar xz +mv Python-3.2.4 src +cd src + +./configure --prefix=$OUT_PREFIX --enable-shared +make +make install + +ln $OUT_PREFIX/bin/python3 $OUT_PREFIX/bin/python diff --git a/builds/runtimes/python-3.2.5 b/builds/runtimes/python-3.2.5 new file mode 100755 index 00000000..1c4b18e6 --- /dev/null +++ b/builds/runtimes/python-3.2.5 @@ -0,0 +1,17 @@ +#!/usr/bin/env bash +# Build Path: /app/.heroku/python/ +# Build Deps: libraries/sqlite + +OUT_PREFIX=$1 + +echo "Building Python..." +SOURCE_TARBALL='http://python.org/ftp/python/3.2.5/Python-3.2.5.tgz' +curl -L $SOURCE_TARBALL | tar xz +mv Python-3.2.5 src +cd src + +./configure --prefix=$OUT_PREFIX --enable-shared +make +make install + +ln $OUT_PREFIX/bin/python3 $OUT_PREFIX/bin/python -- GitLab