aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/sip.rb
AgeCommit message (Collapse)Author
2015-02-10sip: update 4.16.5 bottle.BrewTestBot
2015-02-10sip: build test with sip's build systemTim D. Smith
and set PYTHONPATH for the bot. Closes #36676.
2015-01-17sip: add testXu Cheng
Closes #35975. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-01-16sip: update 4.16.5 bottle.BrewTestBot
2015-01-16sip 4.16.5Florian Bruhin
2014-12-14sip: update 4.16.3_1 bottle.BrewTestBot
2014-12-14sip: bump revision to point to current PythonTim D. Smith
Closes #34959.
2014-10-26sip: update 4.16.3 bottle.BrewTestBot
Closes #33598. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-10-26sip: create shared sip dir as post-install action.Lorenz Meier
2014-10-22sip: add 4.16.3 bottle.BrewTestBot
2014-09-19sip 4.16.3Tim D. Smith
Closes #32419.
2014-06-10sip 4.16.1Larry Shaffer
Closes #30018. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2014-05-29sip 4.16Ben Hagen
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2014-03-24sip 4.15.5Jens H. Nielsen
2014-03-17sip: remove bottle.Mike McQuaid
Closes #27625.
2014-03-13sip: add 4.15.4 bottle.BrewTestBot
2014-03-13Revert "sip: add 4.15.4 bottle."Mike McQuaid
This reverts commit 1aa37cd177e3439fafd5ea626d0b6b4d04b09590.
2014-03-13sip: add 4.15.4 bottle.BrewTestBot
2014-03-12sip: use Language::Python.Mike McQuaid
2014-02-21Formula#downloader should not be used directlyJack Nagel
2014-02-10sip: remove unneeded PYTHONPATH.Mike McQuaid
2014-02-07sip: use array for pythons.Mike McQuaid
2014-02-06sip: fix --HEADChristian Moritz
Closes #26469. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-02-05sip: add Python 3 support.David Wales
Closes #26372. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-01-08sip 4.15.4Brian Jensen
Closes #25730. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-01-04sip: cleanup python usage.Mike McQuaid
2013-11-02sip: force deployment target.Anthony Ramine
Closes #23894. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2013-10-16sip 4.15.3Michka Popoff
Closes #23305. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2013-09-15Sip 4.15.2Michka Popoff
Closes #22556. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-08-24Sip 4.15.1Michka Popoff
Closes #22113. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-08-23Sip 4.15Michka Popoff
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-08-08sip: Caveats tell about sip-dir for Python 2.x and 3.xSamuel John
2013-08-08sip: We don't need sip and sip3 binariesSamuel John
They are both identical. Difference lies in the config and libs.
2013-07-22sip: simplify sip3 installationJack Nagel
2013-07-22sip: remove unused variableJack Nagel
2013-06-24sip 4.14.7Iyed
Closes #20755. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
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-18sip: only apply patch to HEADJack Nagel
Fixes #19919.
2013-05-18sip 4.14.6Jack Nagel
2012-10-28sip: fix patch fuzzAdam Vandenberg
2012-08-22sip: use new dslAdam Vandenberg
2012-08-18Replace version strings with Version objectsJack Nagel
2012-08-09sip: add sipdirSebastian Krysmanski
The sip path option was missing from the sip keg. This broke py2app. Closes #12388.
2012-06-23SIP 4.13.3Michael Bashkirov
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-06-16sip: fix for Xcode-only installsamueljohn
- 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>
2012-02-16sip & pyqt: Now use lib/pythonX.Y/site-packagessamueljohn
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>
2012-02-12sip 4.13.2Nibbles 2bits
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-12-23PyQt: Update to 4.9Jussi Sarkkinen
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>
2011-08-10SIP 4.12.4Charlie Sharpsteen
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-05-06Revert SIP URL to Mercurial archivesCharlie Sharpsteen
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>