aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/python.rb
AgeCommit message (Collapse)Author
2013-06-07python: Fix --with-brewed-tkSamuel John
2013-06-07python: simplify how PythonInstalled is used in python.rbSamuel John
* Should also be more robust as we now explicitly set the python.binary.
2013-06-07python: New styleSamuel John
2013-06-06python: --HEAD option added and more robust buildsSamuel John
* Added a head for python 2.7 * Using `build.with?` instead of `build.include? 'with...'` * More robust temporary linking of opt/python/bin during install and cleanup (with ensure).
2013-06-06python: Remove duplicate codeSamuel John
2013-06-04python: Prevent potential build failureSamuel John
that is caused by not calling the right (newly built) python binary. Fix #20245 hopefully.
2013-06-03Python 2.x and 3.x supportSamuel John
New `depends_on :python` Dependency. New `depends_on :python3` Dependency. To avoid having multiple formulae with endings -py2 and -py3, we will handle support for different pythons (2.x vs. 3.x) in the same formula. Further brewed vs. external python will be transparently supported. The formula also gets a new object `python`, which is false if no Python is available or the user has disabled it. Otherwise it is defined and provides several support methods: python.site_packages # the site-packages in the formula's Cellar python.global_site_packages python.binary # the full path to the python binary python.prefix python.version python.version.major python.version.minor python.xy # => e.g. "python2.7" python.incdir # includes of python python.libdir # the python dylib library python.pkg_config_path # used internally by brew python.from_osx? python.framework? python.universal? python.pypy? python.standard_caveats # Text to set PYTHONPATH for python.from_osx? python.if3then3 # => "" for 2.x and to "3" for 3.x. Further, to avoid code duplication, `python` takes an optional block that is run twice if the formula defines depends_on :python AND :python3. python do system python, 'setup.py', "--prefix=#{prefix}" end Read more in the Homebrew wiki.
2013-05-24python: Fix #19300 MAXREPEAT issue with system vimSamuel John
Related: http://bugs.python.org/issue18050
2013-05-18python 2.7.5Ian Lancaster
Closes #19860. Signed-off-by: Samuel John <github@SamuelJohn.de>
2013-05-15Distribute 0.6.40Mike Goodspeed
Closes #19847. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2013-05-09python: distribute 0.6.38Jack Nagel
2013-04-27python: Restore the experimental DTrace patchWill Ross
The old patch had a lot of whitespace differences, and they were failing with Python 2.7.4. In addition to removing the whitespace differences, configure.in was removed from the patch, as configure is being patched already. Closes #19257. Closes #19203. Closes #19400. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-04-07python: Removed --with-dtrace: patch not compatib.Samuel John
http://bugs.python.org/issue13405 seems not to be ready for 2.7.4. Neither merged nor a patch available. Feel free to submit a pull request if there is a 2.7.4-compatible dtrace patch.
2013-04-07python: tweak tk patch for python 2.7.4Brett Koonce
Closes #19026. Fixes #19020 (half-of) Signed-off-by: Samuel John <github@SamuelJohn.de>
2013-04-07python: sitecustomize checks path before removeTimo Sand
This fixes issues when calling python scripts print `'import sitecustomize' failed; use -v for traceback` Closes #18338. Signed-off-by: Samuel John <github@SamuelJohn.de>
2013-04-06python 2.7.4Brett Koonce
Closes #19016. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-03-25python: Fix with-brewed-tk for tcl-tkSamuel John
Fixes #18657
2013-03-09Python: update pip and distributeJannis Leidel
Closes #18358. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-01-17Fix PYTHONFRAMEWORKDIR for Xcode with CLTKyungdahm Yun
PYTHONFRAMEWORKDIR is now replaced even if CLT is installed. Closes #17144. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-01-16python: Explicitly add sqlite to cflags/ldflagsSamuel John
Fixes #15300 because sqlite is keg_only since a few days. Closes #17120. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-01-14python: Allow --with-brewed-tk.Samuel John
- Fixes #16574. - Improve Tkinter test by actually calling Tk() - Check for /Library/Frameworks/Tk.framework no longer needed. - Also remove Tk.framework check from python3.rb - Fix PYTHONFRAMEWORKDIR so that `python-config --ldflags` is useful. Closes #17008. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-01-11Revert "python: Allow --with-brewed-tk."Mike McQuaid
This reverts commit 1d8f01d8af394a7501f5bf3a1e51796c1a7548a1. Reopens #16626, reopens #16574.
2013-01-11python: Allow --with-brewed-tk.Samuel John
- Fixes #16574. - Improve Tkinter test by actually calling Tk() - Check for /Library/Frameworks/Tk.framework no longer needed. - Fix PYTHONFRAMEWORKDIR so that `python-config --ldflags` is useful. Closes #16626. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2013-01-04python: distribute 0.6.34Adam Vandenberg
2012-12-21python: fix installing on NFSMisty De Meo
python has a severe bug which prevents it from building, or performing certain filesystem operations, on NFS. A few functions in the shutil module, notably chflag(), will attempt to copy file metadata which includes flags. Certain filesystems, such as NFS, don't support copying flags and will raise ENOTSUP when it is attempted. Unfortunately a portion of the python build process indirectly uses chflag() to copy metadata, which results in a build failure if the install prefix is on an NFS volume. This was patched in 2010, but the patch didn't actually work on OS X. This upstream patch fixes it for real.
2012-12-05python: dtrace support is experimental.Samuel John
Closes #16421. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2012-12-03Distribute 0.6.32Adam Vandenberg
2012-11-25distribute 0.6.30Kashif Rasul
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-11-10Revert "Rename readline to gnu-readline"Jack Nagel
This reverts commit adee5315265cc46aa6a3057071527abb16e1cd94. Turns out one of the "other things" is a dealbreaker. We only create kegs using a formula's canonical name. However, we do not check that this is the case when mapping existing kegs back to formula objects, and thus a keg with a name that happens to be an alias can fool Homebrew into thinking the canonically-named keg exists. So anything that enumerates kegs and then tries to do stuff with the resulting formula objects will just break. This is obviously worse than the debugger being broken, so reverting this for the time being.
2012-11-10Rename readline to gnu-readlineJack Nagel
The Readline class clashes with the Readline module from the Ruby stdlib. This has mostly worked, but with the recent debugging support's integration of IRB, it is no longer possible for them to coexist. So we need to rename it. The implications of this are: - Anything that depends on readline will reinstall it as "gnu-readline". Anything already installed will continue to function. - "brew upgrade readline" will say "gnu-readline not installed", as "readline" is now an alias. - Probably other things. So there are some downsides, but we will just have to deal with them. Fixes #15776.
2012-10-08python: For Xcode-only, add the the Tk header dirsamueljohn
Closes #15351. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-10-02python: Fix universal build for superenvsamueljohn
Closes #15243. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-10-02Replace mentions of easy_install by pipsamueljohn
Use this chance to correct minor typos. Closes #15242. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-10-01python: Fix site-packages installs via pip (& co.)samueljohn
- Removed accidently added -py-debug - Ensure HOMEBREW_PREFIX/share/python exists as a dir - Don't change the sys.prefix (broke virtualenv) and instead add install-lib dir to distutils.cfg. superenv respects brewed python Closes #15220. Signed-off-by: Max Howell <mxcl@me.com>
2012-09-29python goes superenvsamueljohn
- Install a sitecustomize.py that is only executed for brewed python to - Fix the prefix, python thinks it is installed to. (Remember, Python thinks it lives in the Cellar) - Remove "/System/..." stuff from sys.path which caused a lot of install trouble because setuptools has the habbit to inject itself upfront, overwriting our distribute. - Allow --with-poll and don't say, we didn't warn you. - Don't need depends_on :x11 any longer. Yeah, no XQuartz! - Add --with-brewed-openssl - pip 1.2.1 - pip, pip-2.7, easy_install and easy_install-2.7 are installed to prefix, such that they are directly available, even if people have not set their PATH to include $(brew --prefix)/share/python - Caveats shorter and clear. - For Xcode-only: - Patch the distutils buildsystem to use "xcrun cc" etc. - Teach distutils the MacOS.sdk_path (for incs and libs) - superenv.rb add the right python include dir depending on whether a brewed python is installed or not. Closes #15064. Signed-off-by: Max Howell <mxcl@me.com>
2012-09-14Use `env`.Adam Vandenberg
2012-09-14python/3: remove skip-cleanAdam Vandenberg
2012-09-14python/3: more verbose install of distribute/pipsamueljohn
Closes #14932. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-09-09Python: add DTrace supportLee Packham
Makes use of a patch from http://bugs.python.org/issue13405 with the first part modified to remove the .hgignore patch. This ends up providing full probes in OSX just like you have with built-in Python. Closes #14343. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-09-04python2/3: Harden against other pythons. Pip 1.2samueljohn
- Unset PYTHONPATH and PYTHONHOME which would lead to install distribute and pip into the wrong python. - For NCLT: Add to CPPFLAGS the path to zlib via -I because python's setup.py scans only these flags. - '-Qunused-arguments' can be added after ENV.enable_warnings to reduce noise. The only thing which we must not add is the "-w" switch! - For python.rb only: Pass "--no-user-cfg" to python setup.py and add --force when installing distribute and pip to ensure overwriting with the new ones. Closes #14689. Closes #14686. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-09-03Batch convert MD5 formula to SHA1.Mike McQuaid
Closes #14653.
2012-08-20python: optional deps are really recommendedJack Nagel
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-08-20python/python3: don't duplicate TkCheck requirementJack Nagel
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-08-18python: ENV.minimal_optimization. Remove 2to3 fixsamueljohn
- Extras now in HOMEBREW_PREFIX/share/python/Extras instead of HOMEBREW_PREFIX/share/python2.7/Extras - Assure no '-march=...' or '-msse4' or similar flags are there because `python-config --cflags` reports them later and can break certain c-extensions. (happend for SciPy). Closes #14199. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-08-14python: tighten '2to3' checkJack Nagel
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-08-14python: update commentsJack Nagel
We only offer framework builds, so remove comments that suggest otherwise. Use HOMEBREW_PREFIX instead of `brew --prefix`, as that is what is available inside of the formula, and how it is referenced elsewhere in Homebrew. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-08-13python: fix typoJack Nagel
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-08-13python: use options DSLJack Nagel
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-08-08python: Now framework style. Bug fixes.samueljohn
- Framework style build in order to support wxmac and other GUIs (Note: PySide (and pyqt?) seem to work even with non-framework builds). - Fixed automatic installation of `*.app`s into `/Applications`. - The caveats tell us now about `brew link apps`. - Cleanup of the caveats. - Resolve the issue of duplicate `2to3` can make the symlink phase to break because both python and python3 provide it. (Closes #12581) - Enable warnings, because python's configure needs it. (Closes #12194) - Add suppression of recommended warnings from the python docs. - Add work-a-round for python bug: http://bugs.python.org/issue11445 - Add explicit test if sqlite3 built successful. - Check against possible issue like #12667. - Add needed "depends_on :x11" because tk.h includes x11. - Install the Demo into HOMEBREW_PREFIX/share/python2.7/Extras - Ensure sqlite from homebrew is used and not the one from OS X. - Removed unnecessary flags from configure - Added --without-gcc to the configure flags (all clang now) - Ensure that "man python2.7" works by setting --datadir and --datarootdir to share. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2012-07-26distribute 0.6.28papaeye
Signed-off-by: Adam Vandenberg <flangy@gmail.com>