| Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
Closes #35283.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
|
|
Opening a GUI window during brew test leads to test failures on Yosemite.
|
|
|
|
|
|
|
|
Removes TODO which is now fixed
Fixes #33576.
|
|
Closes #33576.
|
|
|
|
- the custom QMAKESPEC hacks for Mavericks seem to not be needed any longer
- creating the `pyconfig.py` file by running `python configure.py` in a
different folder seems to work, but I am not sure if this is actually still
needed, so for now I commented this out. I have sucessfully built and used
PyQWT even without this generated `pyqtconfig.py`. It's use is deprecated
anyway it seems. I don't know if not having it breaks other stuff, which is
why I left the code in the formula for now, albeit commented out.
Closes #30881.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
|
|
Closes #27826.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
|
|
|
|
References #27623.
|
|
|
|
This reverts commit 628c909b80ffd9b5b043428087a8bd2877452f3d.
|
|
|
|
|
|
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
|
|
|
|
|
|
Closes #26510.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
|
|
Closes #25702.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
|
|
|
|
Closes #25225.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
|
|
Closes #24213.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
|
|
This is no longer generated by the new (recommended) configure-ng.py but
some older projects (like PyQWT) still need that file, so we first
run configure.py and copy over the generated pyqtconfig.py manually.
Then, we normally run and build with configure-ng.py.
Fixes #21984
|
|
Closes #22084.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
|
|
Improve handling of conflicting files (between 2.x and 3.x).
If only installing for one of these two versions, there is no conflict
to handle.
Update the test code to work with both python versions.
Indentation fix.
|
|
Closes #21276.
Signed-off-by: Samuel John <github@SamuelJohn.de>
|
|
|
|
Blocking tests are bad for brew-test-bot.
|
|
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.
|
|
|
|
|
|
Fixes #15060.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
|
|
|
|
Closes #13001.
Signed-off-by: Misty De Meo <mistydemeo@gmail.com>
|
|
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
|
|
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
|
|
Closes #10825.
Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
|
|
Benefit: For brewed Python, adding stuff to the PYTHONPATH is no longer needed.
For other Pythons nothing changes but the X.Y part in the path. Oh, and you
only need to edit your PYTHONPATH once.
- Added a method to get the major.minor version number from the current python
- Updated the caveats to reflect the new path
Fixes #8182.
Closes #10051.
Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
|
|
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
|
|
Restores compatibility with Qt 4.8.x. Also upgrades SIP to 4.13.1.
Fixes #9225.
Closes #9249.
Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
|
|
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
|
|
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
|
|
PyQt 4.8.4 has just been released, and apparently they can't be
bothered to keep the previous tarball in place...
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
|
|
|
|
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
|