diff options
| author | Dominyk Tiller | 2014-10-15 23:42:46 +0100 | 
|---|---|---|
| committer | Jack Nagel | 2014-10-16 00:09:00 -0500 | 
| commit | f2103e246f1d7c58b7f7aba54f4c7683f2459c24 (patch) | |
| tree | bf24a4e2ae831af728e9ac5efa6586555ea0e555 /Library/Formula/python.rb | |
| parent | 5e865042c5c312d87c64948c6759b11c1c2cef64 (diff) | |
| download | homebrew-f2103e246f1d7c58b7f7aba54f4c7683f2459c24.tar.bz2 | |
openssl: poodle fixes
Part 2 of the earlier merged POODLE fixes. It seems a few of the bottles
are acting up about the new change, so this revisions those. If you
build from source the problems go away, so new bottles it is.
I’ve also had to change the mirror on the OpenSSL formula as it turns
out Debian haven’t set their mirror up for the latest version yet.
Revisions to Python, Python3, Tor, Ruby & Freeradius-server as all are
being confirmed to be causing issues for others and reproducible. Tor
needs to be bumped for every OpenSSL revision because it kicks up this
error:
```
Oct 15 23:19:38.295 [warn] OpenSSL version from headers does not match
the version we're running with. If you get weird crashes, that might be
why. (Compiled with 1000109f: OpenSSL 1.0.1i 6 Aug 2014; running with
100010af: OpenSSL 1.0.1j 15 Oct 2014).
```
And similar with freeradius-server.
Closes #33197.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula/python.rb')
| -rw-r--r-- | Library/Formula/python.rb | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/Library/Formula/python.rb b/Library/Formula/python.rb index 2e8d48b53..575ca70d9 100644 --- a/Library/Formula/python.rb +++ b/Library/Formula/python.rb @@ -1,11 +1,11 @@  require "formula"  class Python < Formula -  homepage "http://www.python.org" -  head "http://hg.python.org/cpython", :using => :hg, :branch => "2.7" -  url "http://www.python.org/ftp/python/2.7.8/Python-2.7.8.tgz" +  homepage "https://www.python.org" +  head "https://hg.python.org/cpython", :using => :hg, :branch => "2.7" +  url "https://www.python.org/ftp/python/2.7.8/Python-2.7.8.tgz"    sha1 "511960dd78451a06c9df76509635aeec05b2051a" -  revision 1 +  revision 2    bottle do      revision 2 | 
