diff options
| author | Elliot Murphy | 2011-03-08 12:33:31 -0800 | 
|---|---|---|
| committer | Adam Vandenberg | 2011-03-08 14:11:33 -0800 | 
| commit | 44348dfda3334edba7a0b73ae83de4b58f2edb19 (patch) | |
| tree | aefa08e74cff591e0db3ea8f22655f2290db9e78 /Library/Formula/bazaar.rb | |
| parent | 012139361d9fd3dc7e2a3257fccf88f019a771de (diff) | |
| download | homebrew-44348dfda3334edba7a0b73ae83de4b58f2edb19.tar.bz2 | |
Update to Bazaar 2.3 for Python 2.7 compatibility
Bazaar 2.2 had a bug when run under Python 2.7, and the new release
fixes the problem. https://bugs.launchpad.net/bzr/+bug/612096
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/bazaar.rb')
| -rw-r--r-- | Library/Formula/bazaar.rb | 13 | 
1 files changed, 2 insertions, 11 deletions
diff --git a/Library/Formula/bazaar.rb b/Library/Formula/bazaar.rb index d36c9145d..69b84197f 100644 --- a/Library/Formula/bazaar.rb +++ b/Library/Formula/bazaar.rb @@ -1,8 +1,8 @@  require 'formula'  class Bazaar <Formula -  url 'http://launchpadlibrarian.net/59616932/bzr-2.2.2.tar.gz' -  md5 'd1bfa2fd1aad282c423c78d62ebacb21' +  url 'http://launchpad.net/bzr/2.3/2.3.0/+download/bzr-2.3.0.tar.gz' +  md5 '2d8bc55d43209189a209361178d9d372'    homepage 'http://bazaar-vcs.org/'    def options @@ -18,15 +18,6 @@ class Bazaar <Formula      if ARGV.include? "--system"        ENV.prepend "PATH", "/System/Library/Frameworks/Python.framework/Versions/Current/bin", ":" -    else -      python_version = `python -c "import sys;print sys.version"` -      if python_version[0,4] == "2.7." -        opoo <<-EOS -Bazaar might not yet work with Python 2.7. -You can force an installation using the system Python by doing: -  brew install bazaar --system -EOS -      end      end      # Find the archs of the Python we are building against.  | 
