Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
H
heroku-buildpack-python
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Python-Dev
heroku-buildpack-python
Commits
129bced2
Commit
129bced2
authored
Aug 28, 2014
by
Kenneth Reitz
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #168 from cclauss/master
Create download_python() function to reduce repetition
parents
e2e97b77
c8241573
Changes
52
Show whitespace changes
Inline
Side-by-side
Showing
52 changed files
with
167 additions
and
256 deletions
+167
-256
download_python
builds/runtimes/download_python
+14
-0
python-2.4.4
builds/runtimes/python-2.4.4
+3
-5
python-2.4.5
builds/runtimes/python-2.4.5
+3
-5
python-2.4.6
builds/runtimes/python-2.4.6
+3
-5
python-2.5.0
builds/runtimes/python-2.5.0
+3
-5
python-2.5.1
builds/runtimes/python-2.5.1
+3
-5
python-2.5.2
builds/runtimes/python-2.5.2
+3
-5
python-2.5.3
builds/runtimes/python-2.5.3
+3
-5
python-2.5.4
builds/runtimes/python-2.5.4
+3
-5
python-2.5.5
builds/runtimes/python-2.5.5
+3
-5
python-2.5.6
builds/runtimes/python-2.5.6
+3
-5
python-2.6.0
builds/runtimes/python-2.6.0
+3
-5
python-2.6.1
builds/runtimes/python-2.6.1
+3
-5
python-2.6.2
builds/runtimes/python-2.6.2
+3
-5
python-2.6.3
builds/runtimes/python-2.6.3
+3
-5
python-2.6.4
builds/runtimes/python-2.6.4
+3
-5
python-2.6.5
builds/runtimes/python-2.6.5
+3
-5
python-2.6.6
builds/runtimes/python-2.6.6
+3
-5
python-2.6.7
builds/runtimes/python-2.6.7
+3
-5
python-2.6.8
builds/runtimes/python-2.6.8
+3
-5
python-2.6.9
builds/runtimes/python-2.6.9
+3
-5
python-2.7.0
builds/runtimes/python-2.7.0
+3
-5
python-2.7.1
builds/runtimes/python-2.7.1
+3
-5
python-2.7.2
builds/runtimes/python-2.7.2
+3
-5
python-2.7.3
builds/runtimes/python-2.7.3
+3
-5
python-2.7.4
builds/runtimes/python-2.7.4
+3
-5
python-2.7.5
builds/runtimes/python-2.7.5
+3
-5
python-2.7.6
builds/runtimes/python-2.7.6
+3
-5
python-2.7.7
builds/runtimes/python-2.7.7
+3
-5
python-2.7.7-shared
builds/runtimes/python-2.7.7-shared
+3
-5
python-2.7.8
builds/runtimes/python-2.7.8
+3
-5
python-2.7.8-shared
builds/runtimes/python-2.7.8-shared
+3
-5
python-3.1.0
builds/runtimes/python-3.1.0
+3
-5
python-3.1.1
builds/runtimes/python-3.1.1
+3
-5
python-3.1.2
builds/runtimes/python-3.1.2
+3
-5
python-3.1.3
builds/runtimes/python-3.1.3
+3
-5
python-3.1.4
builds/runtimes/python-3.1.4
+3
-5
python-3.1.5
builds/runtimes/python-3.1.5
+3
-5
python-3.2.0
builds/runtimes/python-3.2.0
+3
-5
python-3.2.1
builds/runtimes/python-3.2.1
+3
-5
python-3.2.2
builds/runtimes/python-3.2.2
+3
-5
python-3.2.3
builds/runtimes/python-3.2.3
+3
-5
python-3.2.4
builds/runtimes/python-3.2.4
+3
-5
python-3.2.5
builds/runtimes/python-3.2.5
+3
-5
python-3.3.0
builds/runtimes/python-3.3.0
+3
-5
python-3.3.1
builds/runtimes/python-3.3.1
+3
-5
python-3.3.2
builds/runtimes/python-3.3.2
+3
-5
python-3.3.3
builds/runtimes/python-3.3.3
+3
-5
python-3.3.4
builds/runtimes/python-3.3.4
+3
-5
python-3.3.5
builds/runtimes/python-3.3.5
+3
-5
python-3.4.0
builds/runtimes/python-3.4.0
+3
-5
python-3.4.1
builds/runtimes/python-3.4.1
+3
-6
No files found.
builds/runtimes/download_python
0 → 100644
View file @
129bced2
#!/usr/bin/env bash
# Build Path: /app/.heroku/python/
# Build Deps: libraries/sqlite
# download_python(PYTHON_VERSION)
# Example usage: download_python "2.7.8"
download_python
()
{
local
PYTHON_VERSION
=
${
1
:-
2
.7.8
}
echo
"Building Python
$PYTHON_VERSION
..."
SOURCE_TARBALL
=
"http://python.org/ftp/python/
$PYTHON_VERSION
/Python-
$PYTHON_VERSION
.tgz"
curl
-L
$SOURCE_TARBALL
|
tar
xz
mv
Python-
$PYTHON_VERSION
src
}
builds/runtimes/python-2.4.4
View file @
129bced2
...
@@ -4,15 +4,13 @@
...
@@ -4,15 +4,13 @@
OUT_PREFIX
=
$1
OUT_PREFIX
=
$1
source
./download_python
download_python
"2.4.4"
# Protect 2.4 builds from parent Python (causes segfault during build).
# Protect 2.4 builds from parent Python (causes segfault during build).
unset
LANG PYTHONHOME PYTHONPATH
unset
LANG PYTHONHOME PYTHONPATH
echo
"Building Python..."
SOURCE_TARBALL
=
'http://python.org/ftp/python/2.4.4/Python-2.4.4.tgz'
curl
-L
$SOURCE_TARBALL
|
tar
xz
mv
Python-2.4.4 src
cd
src
cd
src
./configure
--prefix
=
$OUT_PREFIX
./configure
--prefix
=
$OUT_PREFIX
make
make
make
install
make
install
builds/runtimes/python-2.4.5
View file @
129bced2
...
@@ -4,15 +4,13 @@
...
@@ -4,15 +4,13 @@
OUT_PREFIX
=
$1
OUT_PREFIX
=
$1
source
./download_python
download_python
"2.4.5"
# Protect 2.4 builds from parent Python (causes segfault during build).
# Protect 2.4 builds from parent Python (causes segfault during build).
unset
LANG PYTHONHOME PYTHONPATH
unset
LANG PYTHONHOME PYTHONPATH
echo
"Building Python..."
SOURCE_TARBALL
=
'http://python.org/ftp/python/2.4.5/Python-2.4.5.tgz'
curl
-L
$SOURCE_TARBALL
|
tar
xz
mv
Python-2.4.5 src
cd
src
cd
src
./configure
--prefix
=
$OUT_PREFIX
./configure
--prefix
=
$OUT_PREFIX
make
make
make
install
make
install
builds/runtimes/python-2.4.6
View file @
129bced2
...
@@ -4,15 +4,13 @@
...
@@ -4,15 +4,13 @@
OUT_PREFIX
=
$1
OUT_PREFIX
=
$1
source
./download_python
download_python
"2.4.6"
# Protect 2.4 builds from parent Python (causes segfault during build).
# Protect 2.4 builds from parent Python (causes segfault during build).
unset
LANG PYTHONHOME PYTHONPATH
unset
LANG PYTHONHOME PYTHONPATH
echo
"Building Python..."
SOURCE_TARBALL
=
'http://python.org/ftp/python/2.4.6/Python-2.4.6.tgz'
curl
-L
$SOURCE_TARBALL
|
tar
xz
mv
Python-2.4.6 src
cd
src
cd
src
./configure
--prefix
=
$OUT_PREFIX
./configure
--prefix
=
$OUT_PREFIX
make
make
make
install
make
install
builds/runtimes/python-2.5.0
View file @
129bced2
...
@@ -4,15 +4,13 @@
...
@@ -4,15 +4,13 @@
OUT_PREFIX
=
$1
OUT_PREFIX
=
$1
source
./download_python
download_python
"2.5"
# Protect 2.5 builds from parent Python (causes segfault during build).
# Protect 2.5 builds from parent Python (causes segfault during build).
unset
LANG PYTHONHOME PYTHONPATH
unset
LANG PYTHONHOME PYTHONPATH
echo
"Building Python..."
SOURCE_TARBALL
=
'http://python.org/ftp/python/2.5/Python-2.5.tgz'
curl
-L
$SOURCE_TARBALL
|
tar
xz
mv
Python-2.5 src
cd
src
cd
src
./configure
--prefix
=
$OUT_PREFIX
./configure
--prefix
=
$OUT_PREFIX
make
make
make
install
make
install
builds/runtimes/python-2.5.1
View file @
129bced2
...
@@ -4,15 +4,13 @@
...
@@ -4,15 +4,13 @@
OUT_PREFIX
=
$1
OUT_PREFIX
=
$1
source
./download_python
download_python
"2.5.1"
# Protect 2.5 builds from parent Python (causes segfault during build).
# Protect 2.5 builds from parent Python (causes segfault during build).
unset
LANG PYTHONHOME PYTHONPATH
unset
LANG PYTHONHOME PYTHONPATH
echo
"Building Python..."
SOURCE_TARBALL
=
'http://python.org/ftp/python/2.5.1/Python-2.5.1.tgz'
curl
-L
$SOURCE_TARBALL
|
tar
xz
mv
Python-2.5.1 src
cd
src
cd
src
./configure
--prefix
=
$OUT_PREFIX
./configure
--prefix
=
$OUT_PREFIX
make
make
make
install
make
install
builds/runtimes/python-2.5.2
View file @
129bced2
...
@@ -4,15 +4,13 @@
...
@@ -4,15 +4,13 @@
OUT_PREFIX
=
$1
OUT_PREFIX
=
$1
source
./download_python
download_python
"2.5.2"
# Protect 2.5 builds from parent Python (causes segfault during build).
# Protect 2.5 builds from parent Python (causes segfault during build).
unset
LANG PYTHONHOME PYTHONPATH
unset
LANG PYTHONHOME PYTHONPATH
echo
"Building Python..."
SOURCE_TARBALL
=
'http://python.org/ftp/python/2.5.2/Python-2.5.2.tgz'
curl
-L
$SOURCE_TARBALL
|
tar
xz
mv
Python-2.5.2 src
cd
src
cd
src
./configure
--prefix
=
$OUT_PREFIX
./configure
--prefix
=
$OUT_PREFIX
make
make
make
install
make
install
builds/runtimes/python-2.5.3
View file @
129bced2
...
@@ -4,15 +4,13 @@
...
@@ -4,15 +4,13 @@
OUT_PREFIX
=
$1
OUT_PREFIX
=
$1
source
./download_python
download_python
"2.5.3"
# Protect 2.5 builds from parent Python (causes segfault during build).
# Protect 2.5 builds from parent Python (causes segfault during build).
unset
LANG PYTHONHOME PYTHONPATH
unset
LANG PYTHONHOME PYTHONPATH
echo
"Building Python..."
SOURCE_TARBALL
=
'http://python.org/ftp/python/2.5.3/Python-2.5.3.tgz'
curl
-L
$SOURCE_TARBALL
|
tar
xz
mv
Python-2.5.3 src
cd
src
cd
src
./configure
--prefix
=
$OUT_PREFIX
./configure
--prefix
=
$OUT_PREFIX
make
make
make
install
make
install
builds/runtimes/python-2.5.4
View file @
129bced2
...
@@ -4,15 +4,13 @@
...
@@ -4,15 +4,13 @@
OUT_PREFIX
=
$1
OUT_PREFIX
=
$1
source
./download_python
download_python
"2.5.4"
# Protect 2.5 builds from parent Python (causes segfault during build).
# Protect 2.5 builds from parent Python (causes segfault during build).
unset
LANG PYTHONHOME PYTHONPATH
unset
LANG PYTHONHOME PYTHONPATH
echo
"Building Python..."
SOURCE_TARBALL
=
'http://python.org/ftp/python/2.5.4/Python-2.5.4.tgz'
curl
-L
$SOURCE_TARBALL
|
tar
xz
mv
Python-2.5.4 src
cd
src
cd
src
./configure
--prefix
=
$OUT_PREFIX
./configure
--prefix
=
$OUT_PREFIX
make
make
make
install
make
install
builds/runtimes/python-2.5.5
View file @
129bced2
...
@@ -4,15 +4,13 @@
...
@@ -4,15 +4,13 @@
OUT_PREFIX
=
$1
OUT_PREFIX
=
$1
source
./download_python
download_python
"2.5.5"
# Protect 2.6 builds from parent Python (causes segfault during build).
# Protect 2.6 builds from parent Python (causes segfault during build).
unset
LANG PYTHONHOME PYTHONPATH
unset
LANG PYTHONHOME PYTHONPATH
echo
"Building Python..."
SOURCE_TARBALL
=
'http://python.org/ftp/python/2.5.5/Python-2.5.5.tgz'
curl
-L
$SOURCE_TARBALL
|
tar
xz
mv
Python-2.5.5 src
cd
src
cd
src
./configure
--prefix
=
$OUT_PREFIX
./configure
--prefix
=
$OUT_PREFIX
make
make
make
install
make
install
builds/runtimes/python-2.5.6
View file @
129bced2
...
@@ -4,15 +4,13 @@
...
@@ -4,15 +4,13 @@
OUT_PREFIX
=
$1
OUT_PREFIX
=
$1
source
./download_python
download_python
"2.5.6"
# Protect 2.5 builds from parent Python (causes segfault during build).
# Protect 2.5 builds from parent Python (causes segfault during build).
unset
LANG PYTHONHOME PYTHONPATH
unset
LANG PYTHONHOME PYTHONPATH
echo
"Building Python..."
SOURCE_TARBALL
=
'http://python.org/ftp/python/2.5.6/Python-2.5.6.tgz'
curl
-L
$SOURCE_TARBALL
|
tar
xz
mv
Python-2.5.6 src
cd
src
cd
src
./configure
--prefix
=
$OUT_PREFIX
./configure
--prefix
=
$OUT_PREFIX
make
make
make
install
make
install
builds/runtimes/python-2.6.0
View file @
129bced2
...
@@ -6,15 +6,13 @@
...
@@ -6,15 +6,13 @@
OUT_PREFIX
=
$1
OUT_PREFIX
=
$1
source
./download_python
download_python
"2.6"
# Protect 2.6 builds from parent Python (causes segfault during build).
# Protect 2.6 builds from parent Python (causes segfault during build).
unset
LANG PYTHONHOME PYTHONPATH
unset
LANG PYTHONHOME PYTHONPATH
echo
"Building Python..."
SOURCE_TARBALL
=
'http://www.python.org/ftp/python/2.6/Python-2.6.tar.bz2'
curl
-L
$SOURCE_TARBALL
|
tar
jx
mv
Python-2.6 src
cd
src
cd
src
./configure
--prefix
=
$OUT_PREFIX
--enable-shared
./configure
--prefix
=
$OUT_PREFIX
--enable-shared
make
make
make
install
make
install
builds/runtimes/python-2.6.1
View file @
129bced2
...
@@ -6,15 +6,13 @@
...
@@ -6,15 +6,13 @@
OUT_PREFIX
=
$1
OUT_PREFIX
=
$1
source
./download_python
download_python
"2.6.1"
# Protect 2.6 builds from parent Python (causes segfault during build).
# Protect 2.6 builds from parent Python (causes segfault during build).
unset
LANG PYTHONHOME PYTHONPATH
unset
LANG PYTHONHOME PYTHONPATH
echo
"Building Python..."
SOURCE_TARBALL
=
'http://python.org/ftp/python/2.6.1/Python-2.6.1.tgz'
curl
-L
$SOURCE_TARBALL
|
tar
xz
mv
Python-2.6.1 src
cd
src
cd
src
./configure
--prefix
=
$OUT_PREFIX
--enable-shared
./configure
--prefix
=
$OUT_PREFIX
--enable-shared
make
make
make
install
make
install
builds/runtimes/python-2.6.2
View file @
129bced2
...
@@ -4,15 +4,13 @@
...
@@ -4,15 +4,13 @@
OUT_PREFIX
=
$1
OUT_PREFIX
=
$1
source
./download_python
download_python
"2.6.2"
# Protect 2.6 builds from parent Python (causes segfault during build).
# Protect 2.6 builds from parent Python (causes segfault during build).
unset
LANG PYTHONHOME PYTHONPATH
unset
LANG PYTHONHOME PYTHONPATH
echo
"Building Python..."
SOURCE_TARBALL
=
'http://python.org/ftp/python/2.6.2/Python-2.6.2.tgz'
curl
-L
$SOURCE_TARBALL
|
tar
xz
mv
Python-2.6.2 src
cd
src
cd
src
./configure
--prefix
=
$OUT_PREFIX
--enable-shared
./configure
--prefix
=
$OUT_PREFIX
--enable-shared
make
make
make
install
make
install
builds/runtimes/python-2.6.3
View file @
129bced2
...
@@ -4,15 +4,13 @@
...
@@ -4,15 +4,13 @@
OUT_PREFIX
=
$1
OUT_PREFIX
=
$1
source
./download_python
download_python
"2.6.3"
# Protect 2.6 builds from parent Python (causes segfault during build).
# Protect 2.6 builds from parent Python (causes segfault during build).
unset
LANG PYTHONHOME PYTHONPATH
unset
LANG PYTHONHOME PYTHONPATH
echo
"Building Python..."
SOURCE_TARBALL
=
'http://python.org/ftp/python/2.6.3/Python-2.6.3.tgz'
curl
-L
$SOURCE_TARBALL
|
tar
xz
mv
Python-2.6.3 src
cd
src
cd
src
./configure
--prefix
=
$OUT_PREFIX
--enable-shared
./configure
--prefix
=
$OUT_PREFIX
--enable-shared
make
make
make
install
make
install
builds/runtimes/python-2.6.4
View file @
129bced2
...
@@ -4,15 +4,13 @@
...
@@ -4,15 +4,13 @@
OUT_PREFIX
=
$1
OUT_PREFIX
=
$1
source
./download_python
download_python
"2.6.4"
# Protect 2.6 builds from parent Python (causes segfault during build).
# Protect 2.6 builds from parent Python (causes segfault during build).
unset
LANG PYTHONHOME PYTHONPATH
unset
LANG PYTHONHOME PYTHONPATH
echo
"Building Python..."
SOURCE_TARBALL
=
'http://python.org/ftp/python/2.6.4/Python-2.6.4.tgz'
curl
-L
$SOURCE_TARBALL
|
tar
xz
mv
Python-2.6.4 src
cd
src
cd
src
./configure
--prefix
=
$OUT_PREFIX
--enable-shared
./configure
--prefix
=
$OUT_PREFIX
--enable-shared
make
make
make
install
make
install
builds/runtimes/python-2.6.5
View file @
129bced2
...
@@ -4,15 +4,13 @@
...
@@ -4,15 +4,13 @@
OUT_PREFIX
=
$1
OUT_PREFIX
=
$1
source
./download_python
download_python
"2.6.5"
# Protect 2.6 builds from parent Python (causes segfault during build).
# Protect 2.6 builds from parent Python (causes segfault during build).
unset
LANG PYTHONHOME PYTHONPATH
unset
LANG PYTHONHOME PYTHONPATH
echo
"Building Python..."
SOURCE_TARBALL
=
'http://python.org/ftp/python/2.6.5/Python-2.6.5.tgz'
curl
-L
$SOURCE_TARBALL
|
tar
xz
mv
Python-2.6.5 src
cd
src
cd
src
./configure
--prefix
=
$OUT_PREFIX
--enable-shared
./configure
--prefix
=
$OUT_PREFIX
--enable-shared
make
make
make
install
make
install
builds/runtimes/python-2.6.6
View file @
129bced2
...
@@ -4,15 +4,13 @@
...
@@ -4,15 +4,13 @@
OUT_PREFIX
=
$1
OUT_PREFIX
=
$1
source
./download_python
download_python
"2.6.6"
# Protect 2.6 builds from parent Python (causes segfault during build).
# Protect 2.6 builds from parent Python (causes segfault during build).
unset
LANG PYTHONHOME PYTHONPATH
unset
LANG PYTHONHOME PYTHONPATH
echo
"Building Python..."
SOURCE_TARBALL
=
'http://python.org/ftp/python/2.6.6/Python-2.6.6.tgz'
curl
-L
$SOURCE_TARBALL
|
tar
xz
mv
Python-2.6.6 src
cd
src
cd
src
./configure
--prefix
=
$OUT_PREFIX
--enable-shared
./configure
--prefix
=
$OUT_PREFIX
--enable-shared
make
make
make
install
make
install
builds/runtimes/python-2.6.7
View file @
129bced2
...
@@ -4,15 +4,13 @@
...
@@ -4,15 +4,13 @@
OUT_PREFIX
=
$1
OUT_PREFIX
=
$1
source
./download_python
download_python
"2.6.7"
# Protect 2.6 builds from parent Python (causes segfault during build).
# Protect 2.6 builds from parent Python (causes segfault during build).
unset
LANG PYTHONHOME PYTHONPATH
unset
LANG PYTHONHOME PYTHONPATH
echo
"Building Python..."
SOURCE_TARBALL
=
'http://python.org/ftp/python/2.6.7/Python-2.6.7.tgz'
curl
-L
$SOURCE_TARBALL
|
tar
xz
mv
Python-2.6.7 src
cd
src
cd
src
./configure
--prefix
=
$OUT_PREFIX
--enable-shared
./configure
--prefix
=
$OUT_PREFIX
--enable-shared
make
make
make
install
make
install
builds/runtimes/python-2.6.8
View file @
129bced2
...
@@ -4,15 +4,13 @@
...
@@ -4,15 +4,13 @@
OUT_PREFIX
=
$1
OUT_PREFIX
=
$1
source
./download_python
download_python
"2.6.8"
# Protect 2.6 builds from parent Python (causes segfault during build).
# Protect 2.6 builds from parent Python (causes segfault during build).
unset
LANG PYTHONHOME PYTHONPATH
unset
LANG PYTHONHOME PYTHONPATH
echo
"Building Python..."
SOURCE_TARBALL
=
'http://python.org/ftp/python/2.6.8/Python-2.6.8.tgz'
curl
-L
$SOURCE_TARBALL
|
tar
xz
mv
Python-2.6.8 src
cd
src
cd
src
./configure
--prefix
=
$OUT_PREFIX
--enable-shared
./configure
--prefix
=
$OUT_PREFIX
--enable-shared
make
make
make
install
make
install
builds/runtimes/python-2.6.9
View file @
129bced2
...
@@ -4,15 +4,13 @@
...
@@ -4,15 +4,13 @@
OUT_PREFIX
=
$1
OUT_PREFIX
=
$1
source
./download_python
download_python
"2.6.9"
# Protect 2.6 builds from parent Python (causes segfault during build).
# Protect 2.6 builds from parent Python (causes segfault during build).
unset
LANG PYTHONHOME PYTHONPATH
unset
LANG PYTHONHOME PYTHONPATH
echo
"Building Python..."
SOURCE_TARBALL
=
'http://python.org/ftp/python/2.6.9/Python-2.6.9.tgz'
curl
-L
$SOURCE_TARBALL
|
tar
xz
mv
Python-2.6.9 src
cd
src
cd
src
./configure
--prefix
=
$OUT_PREFIX
--enable-shared
./configure
--prefix
=
$OUT_PREFIX
--enable-shared
make
make
make
install
make
install
builds/runtimes/python-2.7.0
View file @
129bced2
...
@@ -4,12 +4,10 @@
...
@@ -4,12 +4,10 @@
OUT_PREFIX
=
$1
OUT_PREFIX
=
$1
echo
"Building Python..."
source
./download_python
SOURCE_TARBALL
=
'http://python.org/ftp/python/2.7/Python-2.7.tgz'
download_python
"2.7"
curl
-L
$SOURCE_TARBALL
|
tar
xz
mv
Python-2.7 src
cd
src
cd
src
./configure
--prefix
=
$OUT_PREFIX
--enable-shared
./configure
--prefix
=
$OUT_PREFIX
--enable-shared
make
make
make
install
make
install
builds/runtimes/python-2.7.1
View file @
129bced2
...
@@ -4,12 +4,10 @@
...
@@ -4,12 +4,10 @@
OUT_PREFIX
=
$1
OUT_PREFIX
=
$1
echo
"Building Python..."
source
./download_python
SOURCE_TARBALL
=
'http://python.org/ftp/python/2.7.1/Python-2.7.1.tgz'
download_python
"2.7.1"
curl
-L
$SOURCE_TARBALL
|
tar
xz
mv
Python-2.7.1 src
cd
src
cd
src
./configure
--prefix
=
$OUT_PREFIX
--enable-shared
./configure
--prefix
=
$OUT_PREFIX
--enable-shared
make
make
make
install
make
install
builds/runtimes/python-2.7.2
View file @
129bced2
...
@@ -4,12 +4,10 @@
...
@@ -4,12 +4,10 @@
OUT_PREFIX
=
$1
OUT_PREFIX
=
$1
echo
"Building Python..."
source
./download_python
SOURCE_TARBALL
=
'http://python.org/ftp/python/2.7.2/Python-2.7.2.tgz'
download_python
"2.7.2"
curl
-L
$SOURCE_TARBALL
|
tar
xz
mv
Python-2.7.2 src
cd
src
cd
src
./configure
--prefix
=
$OUT_PREFIX
--enable-shared
./configure
--prefix
=
$OUT_PREFIX
--enable-shared
make
make
make
install
make
install
builds/runtimes/python-2.7.3
View file @
129bced2
...
@@ -4,12 +4,10 @@
...
@@ -4,12 +4,10 @@
OUT_PREFIX
=
$1
OUT_PREFIX
=
$1
echo
"Building Python..."
source
./download_python
SOURCE_TARBALL
=
'http://python.org/ftp/python/2.7.3/Python-2.7.3.tgz'
download_python
"2.7.3"
curl
-L
$SOURCE_TARBALL
|
tar
xz
mv
Python-2.7.3 src
cd
src
cd
src
./configure
--prefix
=
$OUT_PREFIX
--enable-shared
./configure
--prefix
=
$OUT_PREFIX
--enable-shared
make
make
make
install
make
install
builds/runtimes/python-2.7.4
View file @
129bced2
...
@@ -4,12 +4,10 @@
...
@@ -4,12 +4,10 @@
OUT_PREFIX
=
$1
OUT_PREFIX
=
$1
echo
"Building Python..."
source
./download_python
SOURCE_TARBALL
=
'http://python.org/ftp/python/2.7.4/Python-2.7.4.tgz'
download_python
"2.7.4"
curl
-L
$SOURCE_TARBALL
|
tar
xz
mv
Python-2.7.4 src
cd
src
cd
src
./configure
--prefix
=
$OUT_PREFIX
--enable-shared
./configure
--prefix
=
$OUT_PREFIX
--enable-shared
make
make
make
install
make
install
builds/runtimes/python-2.7.5
View file @
129bced2
...
@@ -4,12 +4,10 @@
...
@@ -4,12 +4,10 @@
OUT_PREFIX
=
$1
OUT_PREFIX
=
$1
echo
"Building Python..."
source
./download_python
SOURCE_TARBALL
=
'http://python.org/ftp/python/2.7.5/Python-2.7.5.tgz'
download_python
"2.7.5"
curl
-L
$SOURCE_TARBALL
|
tar
xz
mv
Python-2.7.5 src
cd
src
cd
src
./configure
--prefix
=
$OUT_PREFIX
--enable-shared
./configure
--prefix
=
$OUT_PREFIX
--enable-shared
make
make
make
install
make
install
builds/runtimes/python-2.7.6
View file @
129bced2
...
@@ -4,12 +4,10 @@
...
@@ -4,12 +4,10 @@
OUT_PREFIX
=
$1
OUT_PREFIX
=
$1
echo
"Building Python..."
source
./download_python
SOURCE_TARBALL
=
'http://python.org/ftp/python/2.7.6/Python-2.7.6.tgz'
download_python
"2.7.6"
curl
-L
$SOURCE_TARBALL
|
tar
xz
mv
Python-2.7.6 src
cd
src
cd
src
./configure
--prefix
=
$OUT_PREFIX
--enable-shared
./configure
--prefix
=
$OUT_PREFIX
--enable-shared
make
make
make
install
make
install
builds/runtimes/python-2.7.7
View file @
129bced2
...
@@ -4,12 +4,10 @@
...
@@ -4,12 +4,10 @@
OUT_PREFIX
=
$1
OUT_PREFIX
=
$1
echo
"Building Python..."
source
./download_python
SOURCE_TARBALL
=
'http://python.org/ftp/python/2.7.7/Python-2.7.7.tgz'
download_python
"2.7.7"
curl
-L
$SOURCE_TARBALL
|
tar
xz
mv
Python-2.7.7 src
cd
src
cd
src
./configure
--prefix
=
$OUT_PREFIX
./configure
--prefix
=
$OUT_PREFIX
make
make
make
install
make
install
builds/runtimes/python-2.7.7-shared
View file @
129bced2
...
@@ -4,12 +4,10 @@
...
@@ -4,12 +4,10 @@
OUT_PREFIX
=
$1
OUT_PREFIX
=
$1
echo
"Building Python..."
source
./download_python
SOURCE_TARBALL
=
'http://python.org/ftp/python/2.7.7/Python-2.7.7.tgz'
download_python
"2.7.7"
curl
-L
$SOURCE_TARBALL
|
tar
xz
mv
Python-2.7.7 src
cd
src
cd
src
./configure
--prefix
=
$OUT_PREFIX
--enable-shared
./configure
--prefix
=
$OUT_PREFIX
--enable-shared
make
make
make
install
make
install
builds/runtimes/python-2.7.8
View file @
129bced2
...
@@ -4,12 +4,10 @@
...
@@ -4,12 +4,10 @@
OUT_PREFIX
=
$1
OUT_PREFIX
=
$1
echo
"Building Python..."
source
./download_python
SOURCE_TARBALL
=
'http://python.org/ftp/python/2.7.8/Python-2.7.8.tgz'
download_python
"2.7.8"
curl
-L
$SOURCE_TARBALL
|
tar
xz
mv
Python-2.7.8 src
cd
src
cd
src
./configure
--prefix
=
$OUT_PREFIX
./configure
--prefix
=
$OUT_PREFIX
make
make
make
install
make
install
builds/runtimes/python-2.7.8-shared
View file @
129bced2
...
@@ -4,12 +4,10 @@
...
@@ -4,12 +4,10 @@
OUT_PREFIX
=
$1
OUT_PREFIX
=
$1
echo
"Building Python..."
source
./download_python
SOURCE_TARBALL
=
'http://python.org/ftp/python/2.7.8/Python-2.7.8.tgz'
download_python
"2.7.8"
curl
-L
$SOURCE_TARBALL
|
tar
xz
mv
Python-2.7.8 src
cd
src
cd
src
./configure
--prefix
=
$OUT_PREFIX
./configure
--prefix
=
$OUT_PREFIX
make
make
make
install
make
install
builds/runtimes/python-3.1.0
View file @
129bced2
...
@@ -4,12 +4,10 @@
...
@@ -4,12 +4,10 @@
OUT_PREFIX
=
$1
OUT_PREFIX
=
$1
echo
"Building Python..."
source
./download_python
SOURCE_TARBALL
=
'http://python.org/ftp/python/3.1/Python-3.1.tgz'
download_python
"3.1"
curl
-L
$SOURCE_TARBALL
|
tar
xz
mv
Python-3.1 src
cd
src
cd
src
./configure
--prefix
=
$OUT_PREFIX
--enable-shared
./configure
--prefix
=
$OUT_PREFIX
--enable-shared
make
make
make
install
make
install
...
...
builds/runtimes/python-3.1.1
View file @
129bced2
...
@@ -4,12 +4,10 @@
...
@@ -4,12 +4,10 @@
OUT_PREFIX
=
$1
OUT_PREFIX
=
$1
echo
"Building Python..."
source
./download_python
SOURCE_TARBALL
=
'http://python.org/ftp/python/3.1.1/Python-3.1.1.tgz'
download_python
"3.1.1"
curl
-L
$SOURCE_TARBALL
|
tar
xz
mv
Python-3.1.1 src
cd
src
cd
src
./configure
--prefix
=
$OUT_PREFIX
--enable-shared
./configure
--prefix
=
$OUT_PREFIX
--enable-shared
make
make
make
install
make
install
...
...
builds/runtimes/python-3.1.2
View file @
129bced2
...
@@ -4,12 +4,10 @@
...
@@ -4,12 +4,10 @@
OUT_PREFIX
=
$1
OUT_PREFIX
=
$1
echo
"Building Python..."
source
./download_python
SOURCE_TARBALL
=
'http://python.org/ftp/python/3.1.2/Python-3.1.2.tgz'
download_python
"3.1.2"
curl
-L
$SOURCE_TARBALL
|
tar
xz
mv
Python-3.1.2 src
cd
src
cd
src
./configure
--prefix
=
$OUT_PREFIX
--enable-shared
./configure
--prefix
=
$OUT_PREFIX
--enable-shared
make
make
make
install
make
install
...
...
builds/runtimes/python-3.1.3
View file @
129bced2
...
@@ -4,12 +4,10 @@
...
@@ -4,12 +4,10 @@
OUT_PREFIX
=
$1
OUT_PREFIX
=
$1
echo
"Building Python..."
source
./download_python
SOURCE_TARBALL
=
'http://python.org/ftp/python/3.1.3/Python-3.1.3.tgz'
download_python
"3.1.3"
curl
-L
$SOURCE_TARBALL
|
tar
xz
mv
Python-3.1.3 src
cd
src
cd
src
./configure
--prefix
=
$OUT_PREFIX
--enable-shared
./configure
--prefix
=
$OUT_PREFIX
--enable-shared
make
make
make
install
make
install
...
...
builds/runtimes/python-3.1.4
View file @
129bced2
...
@@ -4,12 +4,10 @@
...
@@ -4,12 +4,10 @@
OUT_PREFIX
=
$1
OUT_PREFIX
=
$1
echo
"Building Python..."
source
./download_python
SOURCE_TARBALL
=
'http://python.org/ftp/python/3.1.4/Python-3.1.4.tgz'
download_python
"3.1.4"
curl
-L
$SOURCE_TARBALL
|
tar
xz
mv
Python-3.1.4 src
cd
src
cd
src
./configure
--prefix
=
$OUT_PREFIX
--enable-shared
./configure
--prefix
=
$OUT_PREFIX
--enable-shared
make
make
make
install
make
install
...
...
builds/runtimes/python-3.1.5
View file @
129bced2
...
@@ -4,12 +4,10 @@
...
@@ -4,12 +4,10 @@
OUT_PREFIX
=
$1
OUT_PREFIX
=
$1
echo
"Building Python..."
source
./download_python
SOURCE_TARBALL
=
'http://python.org/ftp/python/3.1.5/Python-3.1.5.tgz'
download_python
"3.1.5"
curl
-L
$SOURCE_TARBALL
|
tar
xz
mv
Python-3.1.5 src
cd
src
cd
src
./configure
--prefix
=
$OUT_PREFIX
--enable-shared
./configure
--prefix
=
$OUT_PREFIX
--enable-shared
make
make
make
install
make
install
...
...
builds/runtimes/python-3.2.0
View file @
129bced2
...
@@ -4,12 +4,10 @@
...
@@ -4,12 +4,10 @@
OUT_PREFIX
=
$1
OUT_PREFIX
=
$1
echo
"Building Python..."
source
./download_python
SOURCE_TARBALL
=
'http://python.org/ftp/python/3.2/Python-3.2.tgz'
download_python
"3.2"
curl
-L
$SOURCE_TARBALL
|
tar
xz
mv
Python-3.2 src
cd
src
cd
src
./configure
--prefix
=
$OUT_PREFIX
--enable-shared
./configure
--prefix
=
$OUT_PREFIX
--enable-shared
make
make
make
install
make
install
...
...
builds/runtimes/python-3.2.1
View file @
129bced2
...
@@ -4,12 +4,10 @@
...
@@ -4,12 +4,10 @@
OUT_PREFIX
=
$1
OUT_PREFIX
=
$1
echo
"Building Python..."
source
./download_python
SOURCE_TARBALL
=
'http://python.org/ftp/python/3.2.1/Python-3.2.1.tgz'
download_python
"3.2.1"
curl
-L
$SOURCE_TARBALL
|
tar
xz
mv
Python-3.2.1 src
cd
src
cd
src
./configure
--prefix
=
$OUT_PREFIX
--enable-shared
./configure
--prefix
=
$OUT_PREFIX
--enable-shared
make
make
make
install
make
install
...
...
builds/runtimes/python-3.2.2
View file @
129bced2
...
@@ -4,12 +4,10 @@
...
@@ -4,12 +4,10 @@
OUT_PREFIX
=
$1
OUT_PREFIX
=
$1
echo
"Building Python..."
source
./download_python
SOURCE_TARBALL
=
'http://python.org/ftp/python/3.2.2/Python-3.2.2.tgz'
download_python
"3.2.2"
curl
-L
$SOURCE_TARBALL
|
tar
xz
mv
Python-3.2.2 src
cd
src
cd
src
./configure
--prefix
=
$OUT_PREFIX
--enable-shared
./configure
--prefix
=
$OUT_PREFIX
--enable-shared
make
make
make
install
make
install
...
...
builds/runtimes/python-3.2.3
View file @
129bced2
...
@@ -4,12 +4,10 @@
...
@@ -4,12 +4,10 @@
OUT_PREFIX
=
$1
OUT_PREFIX
=
$1
echo
"Building Python..."
source
./download_python
SOURCE_TARBALL
=
'http://python.org/ftp/python/3.2.3/Python-3.2.3.tgz'
download_python
"3.2.3"
curl
-L
$SOURCE_TARBALL
|
tar
xz
mv
Python-3.2.3 src
cd
src
cd
src
./configure
--prefix
=
$OUT_PREFIX
--enable-shared
./configure
--prefix
=
$OUT_PREFIX
--enable-shared
make
make
make
install
make
install
...
...
builds/runtimes/python-3.2.4
View file @
129bced2
...
@@ -4,12 +4,10 @@
...
@@ -4,12 +4,10 @@
OUT_PREFIX
=
$1
OUT_PREFIX
=
$1
echo
"Building Python..."
source
./download_python
SOURCE_TARBALL
=
'http://python.org/ftp/python/3.2.4/Python-3.2.4.tgz'
download_python
"3.2.4"
curl
-L
$SOURCE_TARBALL
|
tar
xz
mv
Python-3.2.4 src
cd
src
cd
src
./configure
--prefix
=
$OUT_PREFIX
--enable-shared
./configure
--prefix
=
$OUT_PREFIX
--enable-shared
make
make
make
install
make
install
...
...
builds/runtimes/python-3.2.5
View file @
129bced2
...
@@ -4,12 +4,10 @@
...
@@ -4,12 +4,10 @@
OUT_PREFIX
=
$1
OUT_PREFIX
=
$1
echo
"Building Python..."
source
./download_python
SOURCE_TARBALL
=
'http://python.org/ftp/python/3.2.5/Python-3.2.5.tgz'
download_python
"3.2.5"
curl
-L
$SOURCE_TARBALL
|
tar
xz
mv
Python-3.2.5 src
cd
src
cd
src
./configure
--prefix
=
$OUT_PREFIX
--enable-shared
./configure
--prefix
=
$OUT_PREFIX
--enable-shared
make
make
make
install
make
install
...
...
builds/runtimes/python-3.3.0
View file @
129bced2
...
@@ -4,12 +4,10 @@
...
@@ -4,12 +4,10 @@
OUT_PREFIX
=
$1
OUT_PREFIX
=
$1
echo
"Building Python..."
source
./download_python
SOURCE_TARBALL
=
'http://python.org/ftp/python/3.3.0/Python-3.3.0.tgz'
download_python
"3.3.0"
curl
-L
$SOURCE_TARBALL
|
tar
xz
mv
Python-3.3.0 src
cd
src
cd
src
./configure
--prefix
=
$OUT_PREFIX
--enable-shared
./configure
--prefix
=
$OUT_PREFIX
--enable-shared
make
make
make
install
make
install
...
...
builds/runtimes/python-3.3.1
View file @
129bced2
...
@@ -4,12 +4,10 @@
...
@@ -4,12 +4,10 @@
OUT_PREFIX
=
$1
OUT_PREFIX
=
$1
echo
"Building Python..."
source
./download_python
SOURCE_TARBALL
=
'http://python.org/ftp/python/3.3.1/Python-3.3.1.tgz'
download_python
"3.3.1"
curl
-L
$SOURCE_TARBALL
|
tar
xz
mv
Python-3.3.1 src
cd
src
cd
src
./configure
--prefix
=
$OUT_PREFIX
--enable-shared
./configure
--prefix
=
$OUT_PREFIX
--enable-shared
make
make
make
install
make
install
...
...
builds/runtimes/python-3.3.2
View file @
129bced2
...
@@ -4,12 +4,10 @@
...
@@ -4,12 +4,10 @@
OUT_PREFIX
=
$1
OUT_PREFIX
=
$1
echo
"Building Python..."
source
./download_python
SOURCE_TARBALL
=
'http://python.org/ftp/python/3.3.2/Python-3.3.2.tgz'
download_python
"3.3.2"
curl
-L
$SOURCE_TARBALL
|
tar
xz
mv
Python-3.3.2 src
cd
src
cd
src
./configure
--prefix
=
$OUT_PREFIX
--enable-shared
./configure
--prefix
=
$OUT_PREFIX
--enable-shared
make
make
make
install
make
install
...
...
builds/runtimes/python-3.3.3
View file @
129bced2
...
@@ -4,12 +4,10 @@
...
@@ -4,12 +4,10 @@
OUT_PREFIX
=
$1
OUT_PREFIX
=
$1
echo
"Building Python..."
source
./download_python
SOURCE_TARBALL
=
'http://python.org/ftp/python/3.3.3/Python-3.3.3.tgz'
download_python
"3.3.3"
curl
-L
$SOURCE_TARBALL
|
tar
xz
mv
Python-3.3.3 src
cd
src
cd
src
./configure
--prefix
=
$OUT_PREFIX
--enable-shared
./configure
--prefix
=
$OUT_PREFIX
--enable-shared
make
make
make
install
make
install
...
...
builds/runtimes/python-3.3.4
View file @
129bced2
...
@@ -4,12 +4,10 @@
...
@@ -4,12 +4,10 @@
OUT_PREFIX
=
$1
OUT_PREFIX
=
$1
echo
"Building Python..."
source
./download_python
SOURCE_TARBALL
=
'http://python.org/ftp/python/3.3.4/Python-3.3.4.tgz'
download_python
"3.3.4"
curl
-L
$SOURCE_TARBALL
|
tar
xz
mv
Python-3.3.4 src
cd
src
cd
src
./configure
--prefix
=
$OUT_PREFIX
--enable-shared
./configure
--prefix
=
$OUT_PREFIX
--enable-shared
make
make
make
install
make
install
...
...
builds/runtimes/python-3.3.5
View file @
129bced2
...
@@ -4,12 +4,10 @@
...
@@ -4,12 +4,10 @@
OUT_PREFIX
=
$1
OUT_PREFIX
=
$1
echo
"Building Python..."
source
./download_python
SOURCE_TARBALL
=
'http://python.org/ftp/python/3.3.5/Python-3.3.5.tgz'
download_python
"3.3.5"
curl
-L
$SOURCE_TARBALL
|
tar
xz
mv
Python-3.3.5 src
cd
src
cd
src
./configure
--prefix
=
$OUT_PREFIX
--enable-shared
./configure
--prefix
=
$OUT_PREFIX
--enable-shared
make
make
make
install
make
install
...
...
builds/runtimes/python-3.4.0
View file @
129bced2
...
@@ -4,12 +4,10 @@
...
@@ -4,12 +4,10 @@
OUT_PREFIX
=
$1
OUT_PREFIX
=
$1
echo
"Building Python..."
source
./download_python
SOURCE_TARBALL
=
'http://python.org/ftp/python/3.4.0/Python-3.4.0.tgz'
download_python
"3.4.0"
curl
-L
$SOURCE_TARBALL
|
tar
xz
mv
Python-3.4.0 src
cd
src
cd
src
./configure
--prefix
=
$OUT_PREFIX
--with-ensurepip
=
no
--enable-shared
./configure
--prefix
=
$OUT_PREFIX
--with-ensurepip
=
no
--enable-shared
make
make
make
install
make
install
...
...
builds/runtimes/python-3.4.1
View file @
129bced2
...
@@ -4,15 +4,12 @@
...
@@ -4,15 +4,12 @@
OUT_PREFIX
=
$1
OUT_PREFIX
=
$1
echo
"Building Python..."
source
./download_python
SOURCE_TARBALL
=
'http://python.org/ftp/python/3.4.1/Python-3.4.1.tgz'
download_python
"3.4.1"
curl
-L
$SOURCE_TARBALL
|
tar
xz
mv
Python-3.4.1 src
cd
src
cd
src
./configure
--prefix
=
$OUT_PREFIX
--with-ensurepip
=
no
--enable-shared
./configure
--prefix
=
$OUT_PREFIX
--with-ensurepip
=
no
--enable-shared
make
make
make
install
make
install
ln
$OUT_PREFIX
/bin/python3
$OUT_PREFIX
/bin/python
ln
$OUT_PREFIX
/bin/python3
$OUT_PREFIX
/bin/python
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment