aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/python.rb
diff options
context:
space:
mode:
authorJannis Leidel2010-07-04 20:41:29 +0200
committerAdam Vandenberg2010-07-09 20:38:36 -0700
commite0d9a373d8630272ec3a382655a9b38b7491bc57 (patch)
tree5974bc5612d3a5dabddc01455472b6db462617e6 /Library/Formula/python.rb
parentdc1fa5209cfc2fa9bff595fc1fbc29c55250e839 (diff)
downloadhomebrew-e0d9a373d8630272ec3a382655a9b38b7491bc57.tar.bz2
Bumped Python version up to 2.7.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/python.rb')
-rw-r--r--Library/Formula/python.rb14
1 files changed, 7 insertions, 7 deletions
diff --git a/Library/Formula/python.rb b/Library/Formula/python.rb
index a3d24cbe7..2c77deb4e 100644
--- a/Library/Formula/python.rb
+++ b/Library/Formula/python.rb
@@ -6,7 +6,7 @@ This is the Homebrew formula for Python.
Versions
--------
-This formula is currently tracking version 2.6.x.
+This formula is currently tracking version 2.7.x.
If you are looking for newer versions of Python, check out these forks:
2.7.x: http://github.com/mxcl/homebrew/issues/issue/1773
@@ -25,7 +25,7 @@ The "site-packages" folder lives in the Cellar, under the "lib" folder
for normal builds, and under the "Frameworks" folder for Framework builds.
A .pth file is added to the Cellar site-packages that adds the corresponding
-HOMEBREW_PREFIX folder (/usr/local/lib/python2.6/site-packages by default)
+HOMEBREW_PREFIX folder (/usr/local/lib/python2.7/site-packages by default)
to sys.path. Note that this alternate folder doesn't itself support .pth files.
pip / distribute
@@ -52,9 +52,9 @@ def as_framework?
end
class Python <Formula
- url 'http://www.python.org/ftp/python/2.6.5/Python-2.6.5.tar.bz2'
+ url 'http://www.python.org/ftp/python/2.7/Python-2.7.tar.bz2'
homepage 'http://www.python.org/'
- md5 '6bef0417e71a1a1737ccf5750420fdb3'
+ md5 '0e8c9ec32abf5b732bea7d91b38c3339'
depends_on 'sqlite' => :optional # Prefer over OS X's older version
depends_on 'readline' => :optional # Prefer over OS X's libedit
@@ -75,16 +75,16 @@ class Python <Formula
# The Cellar location of site-packages
if as_framework?
# If we're installed or installing as a Framework, then use that location.
- return prefix+"Frameworks/Python.framework/Versions/2.6/lib/python2.6/site-packages"
+ return prefix+"Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages"
else
# Otherwise, use just the lib path.
- return lib+"python2.6/site-packages"
+ return lib+"python2.7/site-packages"
end
end
def prefix_site_packages
# The HOMEBREW_PREFIX location of site-packages
- HOMEBREW_PREFIX+"lib/python2.6/site-packages"
+ HOMEBREW_PREFIX+"lib/python2.7/site-packages"
end
def validate_options