From 314b729c8aaef1cc3a45d9f2f8c3939392000813 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz <me@kennethreitz.com> Date: Mon, 2 Jun 2014 17:35:10 -0400 Subject: [PATCH] 3.3.x series --- builds/runtimes/python-3.3.0 | 17 +++++++++++++++++ builds/runtimes/python-3.3.1 | 17 +++++++++++++++++ builds/runtimes/python-3.3.2 | 17 +++++++++++++++++ builds/runtimes/python-3.3.3 | 17 +++++++++++++++++ builds/runtimes/python-3.3.4 | 17 +++++++++++++++++ 5 files changed, 85 insertions(+) create mode 100755 builds/runtimes/python-3.3.0 create mode 100755 builds/runtimes/python-3.3.1 create mode 100755 builds/runtimes/python-3.3.2 create mode 100755 builds/runtimes/python-3.3.3 create mode 100755 builds/runtimes/python-3.3.4 diff --git a/builds/runtimes/python-3.3.0 b/builds/runtimes/python-3.3.0 new file mode 100755 index 00000000..d1cde7eb --- /dev/null +++ b/builds/runtimes/python-3.3.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.3/Python-3.3.tgz' +curl -L $SOURCE_TARBALL | tar xz +mv Python-3.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.3.1 b/builds/runtimes/python-3.3.1 new file mode 100755 index 00000000..fcf234e0 --- /dev/null +++ b/builds/runtimes/python-3.3.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.3.1/Python-3.3.1.tgz' +curl -L $SOURCE_TARBALL | tar xz +mv Python-3.3.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.3.2 b/builds/runtimes/python-3.3.2 new file mode 100755 index 00000000..076bf757 --- /dev/null +++ b/builds/runtimes/python-3.3.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.3.2/Python-3.3.2.tgz' +curl -L $SOURCE_TARBALL | tar xz +mv Python-3.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.3.3 b/builds/runtimes/python-3.3.3 new file mode 100755 index 00000000..50fe9b87 --- /dev/null +++ b/builds/runtimes/python-3.3.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.3.3/Python-3.3.3.tgz' +curl -L $SOURCE_TARBALL | tar xz +mv Python-3.3.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.3.4 b/builds/runtimes/python-3.3.4 new file mode 100755 index 00000000..d07a5c6b --- /dev/null +++ b/builds/runtimes/python-3.3.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.3.4/Python-3.3.4.tgz' +curl -L $SOURCE_TARBALL | tar xz +mv Python-3.3.4 src +cd src + +./configure --prefix=$OUT_PREFIX --enable-shared +make +make install + +ln $OUT_PREFIX/bin/python3 $OUT_PREFIX/bin/python -- GitLab