diff options
| author | Adam Vandenberg | 2013-11-29 18:59:06 -0800 |
|---|---|---|
| committer | Adam Vandenberg | 2013-11-29 19:00:10 -0800 |
| commit | 39848385dfb4599d766826decd47a3d51214ddd5 (patch) | |
| tree | 90ff2d14ad267fc069e5a7cbcfdb69c5e51c95ef /Library/Formula/python.rb | |
| parent | 69f9a26de9cc93834dcfb63e53470e78facd7142 (diff) | |
| download | homebrew-39848385dfb4599d766826decd47a3d51214ddd5.tar.bz2 | |
Python: remove dtrace patch
No longer applies.
Diffstat (limited to 'Library/Formula/python.rb')
| -rw-r--r-- | Library/Formula/python.rb | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/Library/Formula/python.rb b/Library/Formula/python.rb index 36ed09bcf..f556195c0 100644 --- a/Library/Formula/python.rb +++ b/Library/Formula/python.rb @@ -7,12 +7,11 @@ class Python < Formula sha1 '8328d9f1d55574a287df384f4931a3942f03da64' option :universal - option 'quicktest', 'Run `make quicktest` after the build (for devs; may fail)' + option 'quicktest', "Run `make quicktest` after the build (for devs; may fail)" option 'with-brewed-openssl', "Use Homebrew's openSSL instead of the one from OS X" option 'with-brewed-tk', "Use Homebrew's Tk (has optional Cocoa and threads support)" - option 'with-poll', 'Enable select.poll, which is not fully implemented on OS X (http://bugs.python.org/issue5154)' - # --with-dtrace relies on CLT as dtrace hard-codes paths to /usr - option 'with-dtrace', 'Experimental DTrace support (http://bugs.python.org/issue13405)' if MacOS::CLT.installed? + option 'with-poll', "Enable select.poll, which is not fully implemented on OS X (http://bugs.python.org/issue5154)" + option 'with-dtrace', "Experimental DTrace support (http://bugs.python.org/issue13405)" depends_on 'pkg-config' => :build depends_on 'readline' => :recommended @@ -36,12 +35,9 @@ class Python < Formula end def patches - p = [] - p << 'https://gist.github.com/paxswill/5402840/raw/75646d5860685c8be98858288d1772f64d6d5193/pythondtrace-patch.diff' if build.with? 'dtrace' # Patch to disable the search for Tk.framework, since Homebrew's Tk is # a plain unix build. Remove `-lX11`, too because our Tk is "AquaTk". - p << DATA if build.with? 'brewed-tk' - p + DATA if build.with? 'brewed-tk' end def site_packages_cellar |
