From f3b1e54df4fe62661ae9d05862f9a6e0271b9167 Mon Sep 17 00:00:00 2001
From: Kenneth Reitz <me@kennethreitz.com>
Date: Tue, 28 Oct 2014 01:19:03 -0400
Subject: [PATCH] fix @cclauss's mess

---
 builds/runtimes/python-3.3.6 | 8 +++++---
 builds/runtimes/python-3.4.2 | 9 ++++++---
 2 files changed, 11 insertions(+), 6 deletions(-)

diff --git a/builds/runtimes/python-3.3.6 b/builds/runtimes/python-3.3.6
index 02d5d71b..2d7b93d7 100755
--- a/builds/runtimes/python-3.3.6
+++ b/builds/runtimes/python-3.3.6
@@ -4,10 +4,12 @@
 
 OUT_PREFIX=$1
 
-source ./download_python
-download_python "3.3.6"
-
+echo "Building Python..."
+SOURCE_TARBALL='http://python.org/ftp/python/3.3.6/Python-3.3.6.tgz'
+curl -L $SOURCE_TARBALL | tar xz
+mv Python-3.3.6 src
 cd src
+
 ./configure --prefix=$OUT_PREFIX --enable-shared
 make
 make install
diff --git a/builds/runtimes/python-3.4.2 b/builds/runtimes/python-3.4.2
index 1febae4f..67858ad2 100755
--- a/builds/runtimes/python-3.4.2
+++ b/builds/runtimes/python-3.4.2
@@ -4,12 +4,15 @@
 
 OUT_PREFIX=$1
 
-source ./download_python
-download_python "3.4.2"
-
+echo "Building Python..."
+SOURCE_TARBALL='http://python.org/ftp/python/3.4.2/Python-3.4.2.tgz'
+curl -L $SOURCE_TARBALL | tar xz
+mv Python-3.4.2 src
 cd src
+
 ./configure --prefix=$OUT_PREFIX --with-ensurepip=no --enable-shared
 make
 make install
 
 ln $OUT_PREFIX/bin/python3 $OUT_PREFIX/bin/python
+
-- 
GitLab