aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/python3.rb
diff options
context:
space:
mode:
authorAdam Vandenberg2012-04-11 19:19:59 -0700
committerAdam Vandenberg2012-04-11 19:19:59 -0700
commit351fe3d5fc434f72b6da56970429f5d98a4b36b3 (patch)
tree4bb1f093db8c1a1f7fb0dcb65a2d6d005e34e63a /Library/Formula/python3.rb
parenteda250939cc6ce33a9b12b2fedf3ae9f86196295 (diff)
downloadhomebrew-351fe3d5fc434f72b6da56970429f5d98a4b36b3.tar.bz2
Python3 3.2.3 + distribute 0.6.26
Diffstat (limited to 'Library/Formula/python3.rb')
-rw-r--r--Library/Formula/python3.rb26
1 files changed, 4 insertions, 22 deletions
diff --git a/Library/Formula/python3.rb b/Library/Formula/python3.rb
index 25c77b133..8c1aac2e6 100644
--- a/Library/Formula/python3.rb
+++ b/Library/Formula/python3.rb
@@ -12,14 +12,14 @@ def as_framework?
end
class Distribute < Formula
- url 'http://pypi.python.org/packages/source/d/distribute/distribute-0.6.25.tar.gz'
- md5 'a690874b9964d958a3200485eb827b1d'
+ url 'http://pypi.python.org/packages/source/d/distribute/distribute-0.6.26.tar.gz'
+ md5 '841f4262a70107f85260362f5def8206'
end
class Python3 < Formula
- url 'http://python.org/ftp/python/3.2.2/Python-3.2.2.tar.bz2'
homepage 'http://www.python.org/'
- md5 '9d763097a13a59ff53428c9e4d098a05'
+ url 'http://python.org/ftp/python/3.2.3/Python-3.2.3.tar.bz2'
+ md5 'cea34079aeb2e21e7b60ee82a0ac286b'
depends_on 'pkg-config' => :build
@@ -38,12 +38,6 @@ class Python3 < Formula
# Skip binaries so modules will load; skip lib because it is mostly Python files
skip_clean ['bin', 'lib']
- def patches
- # fix for recognizing gdbm 1.9.x databases
- # patch is already upstream: http://hg.python.org/cpython/rev/7a41855b6196
- DATA
- end
-
# The Cellar location of site-packages
# This location is different for Framework builds
def site_packages
@@ -177,15 +171,3 @@ class Python3 < Formula
HOMEBREW_PREFIX+"share/python3"
end
end
-
-__END__
-diff --git a/Lib/dbm/__init__.py b/Lib/dbm/__init__.py
---- a/Lib/dbm/__init__.py
-+++ b/Lib/dbm/__init__.py
-@@ -166,7 +166,7 @@ def whichdb(filename):
- return ""
-
- # Check for GNU dbm
-- if magic == 0x13579ace:
-+ if magic in (0x13579ace, 0x13579acd, 0x13579acf):
- return "dbm.gnu"