| Age | Commit message (Collapse) | Author |
|
|
|
and set PYTHONPATH for the bot.
Closes #36676.
|
|
Closes #35975.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
|
|
|
|
|
|
|
|
Closes #34959.
|
|
Closes #33598.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
|
|
|
|
|
|
Closes #32419.
|
|
Closes #30018.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
|
|
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
|
|
|
|
Closes #27625.
|
|
|
|
This reverts commit 1aa37cd177e3439fafd5ea626d0b6b4d04b09590.
|
|
|
|
|
|
|
|
|
|
|
|
Closes #26469.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
|
|
Closes #26372.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
|
|
Closes #25730.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
|
|
|
|
Closes #23894.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
|
|
Closes #23305.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
|
|
Closes #22556.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
|
|
Closes #22113.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
|
|
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
|
|
|
|
They are both identical. Difference lies in the config and libs.
|
|
|
|
|
|
Closes #20755.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
|
|
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 #19919.
|
|
|
|
|
|
|
|
|
|
The sip path option was missing from the sip keg. This broke py2app.
Closes #12388.
|
|
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
|
|
- Pass in CFLAGS and LDFLAGS. Note, LDFLAGS have to be passed into
configure.py as "LFLAGS".
Closes #12884.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
|
|
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>
|
|
The SIP dowload URL on the Riverbank website is not stable. The Mercurial
archives are.
Sorts out patch application and version numbering for HEAD builds.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
|