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/python3.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/python3.rb')
| -rw-r--r-- | Library/Formula/python3.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Library/Formula/python3.rb b/Library/Formula/python3.rb index 799c6fa9f..5daebd336 100644 --- a/Library/Formula/python3.rb +++ b/Library/Formula/python3.rb @@ -4,6 +4,7 @@ class Python3 < Formula homepage "https://www.python.org/" url "https://www.python.org/ftp/python/3.4.2/Python-3.4.2.tar.xz" sha1 "0727d8a8498733baabe6f51632b9bab0cbaa9ada" + revision 1 bottle do sha1 "fd271aeeff5971fc8570b368603f85d551041df7" => :mavericks @@ -13,7 +14,7 @@ class Python3 < Formula VER="3.4" # The <major>.<minor> is used so often. - head "http://hg.python.org/cpython", :using => :hg, :branch => VER + head "https://hg.python.org/cpython", :using => :hg, :branch => VER option :universal option "quicktest", "Run `make quicktest` after the build" |
