| Age | Commit message (Collapse) | Author |
|
Fixes #26900.
Closes #26915.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
|
|
Closes #26608.
|
|
This reverts commit 67f908eb4f07f246a5fdcb363994eca1aa86b568.
|
|
|
|
Addresses #26586
Closes #26603.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
|
|
|
|
Closes #26418.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
|
|
This reverts commit 90e22e389c539b25fe7864645bfe5e2a9ce7452f.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Closes #25307.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
|
|
|
|
|
|
Closes #24478.
|
|
|
|
Closes #24030.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
|
|
Closes #23864.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
|
|
Closes #23006.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
|
|
Make it more consistent with other requirements.
|
|
|
|
Closes #22403.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
|
|
This reverts commit 955b8fa58c69b1060b83a383ddb14392bee806be.
|
|
Fixes #20922.
|
|
Closes #22158.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
|
|
Bumped pip and setuptools for python and python3.
I whish we had formula revisions already now.
But on the other hand there is no hurry as the
changes to pip/setuptools are not major.
|
|
Pip and setuptools can't be updated the way we write in the caveats.
This is because pip fails to remove the symlink from the
`brew --prefix`. Also we said that we don't like self-updating tools.
We will rather update the python formula, and bump the revision
(once we have the revision feature) when pip or setuptools get
updated.
|
|
|
|
When tcl-tk was installed `--with-x11`, python needs
to `depends_on :x11`, otherwise tcl-tk ships an
included versions of X11.
|
|
We can use `PythonInstalled#binary`.
typo fix.
|
|
|
|
|
|
Closes #21411.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
|
|
Remove old setuptools installations that may still fly around and be
listed in the easy_install.pth. This can break setuptools build with
zipimport.ZipImportError: bad local file header
This does not always happen, but if the easy_install.pth points to an
egg with an older version. Removing all setuptools and distribute
remains inside the homebrew global_site_packages is safe.
|
|
|
|
|
|
|
|
* Use `build.with?` instead of `build.include? 'with…'`
* Reuse PythonInstalled.new.modify_build_environment
* Use `test do` instead of `def test`
|
|
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.
|
|
|
|
Closes #19847.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
|
|
|
|
Closes #19592.
|
|
Closes #19081.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
|
|
|
|
Closes #18358.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
|
|
Fixes #17765.
Closes #17788.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
|