diff options
| author | Mike McQuaid | 2015-03-25 09:15:43 +0000 | 
|---|---|---|
| committer | Mike McQuaid | 2015-03-25 09:15:43 +0000 | 
| commit | 104207a43862c57a949e16f4f721e549d691958f (patch) | |
| tree | 9dfe53eebc9b8c81cc26df6ef1e6cebefdf5c183 | |
| parent | 56a9373dbec9dff1c78826010042f63ae53b2a6f (diff) | |
| download | homebrew-104207a43862c57a949e16f4f721e549d691958f.tar.bz2 | |
phantomjs: don't apply patch to HEAD.
Closes #38050.
| -rw-r--r-- | Library/Formula/phantomjs.rb | 16 | 
1 files changed, 8 insertions, 8 deletions
| diff --git a/Library/Formula/phantomjs.rb b/Library/Formula/phantomjs.rb index 7eec4864e..a653f57d1 100644 --- a/Library/Formula/phantomjs.rb +++ b/Library/Formula/phantomjs.rb @@ -6,6 +6,14 @@ class Phantomjs < Formula    stable do      url "https://github.com/ariya/phantomjs/archive/2.0.0.tar.gz"      sha256 "0a1338464ca37314037d139b3e0f7368325f5d8810628d9d9f2df9f9f535d407" + +    # Qt Yosemite build fix. Upstream commit/PR: +    # https://qt.gitorious.org/qt/qtbase/commit/70e442 +    # https://github.com/ariya/phantomjs/pull/12934 +    patch do +      url "https://gist.githubusercontent.com/mikemcquaid/db645f7cbeec4f3b1b2e/raw/e664ecc5c259344d5a73a84b52e472bf8ad3733e/phantomjs-yosemite.patch" +      sha1 "1e723f055ef5df9a2945cbce3e70322105313f47" +    end    end    bottle do @@ -15,14 +23,6 @@ class Phantomjs < Formula      sha1 "887a96e55f67a3d350bc40f910926286c6cea240" => :mountain_lion    end -  # Qt Yosemite build fix. Upstream commit/PR: -  # https://qt.gitorious.org/qt/qtbase/commit/70e442 -  # https://github.com/ariya/phantomjs/pull/12934 -  patch do -    url "https://gist.githubusercontent.com/mikemcquaid/db645f7cbeec4f3b1b2e/raw/e664ecc5c259344d5a73a84b52e472bf8ad3733e/phantomjs-yosemite.patch" -    sha1 "1e723f055ef5df9a2945cbce3e70322105313f47" -  end -    head "https://github.com/ariya/phantomjs.git"    def install | 
