aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/pyside.rb
AgeCommit message (Collapse)Author
2015-02-03pyside: fix urlDominyk Tiller
The homepage moved to where it actually auto-redirects to. The URL on this formula is actually dead, as the former QT SSL/TLS link now has a certificate error and users will just run headlong into SSL failures trying to use it. Otherwise, just strict audit failures fixed.
2014-12-13pyside: add 1.2.2 bottle.BrewTestBot
2014-12-13bottle pyside and shiboken against system PythonTim D. Smith
pyside and shiboken can be built against system Python and imported with Homebrew's Python; use `option "without-python"` instead of `depends_on :python` in order to bottle against system Python so we don't install Homebrew's python unnecessarily. Closes #34945.
2014-05-02Remove orphaned patch declarationsJack Nagel
2014-05-02pyside 1.2.2João Ventura
2014-03-20pyside: use patch DSLJack Nagel
2014-03-17pyside, shiboken: Python 3 support.Xu Cheng
2014-03-09pyside: install sphinx at build-time to build docsAdam Vandenberg
Also provide an option to skip building docs, though it doesn't seem to save much time overall and may be removed. Closes #27228.
2014-02-27pyside: use Formula[]Adam Vandenberg
2014-01-04pyside: cleanup python usage.Mike McQuaid
2013-11-17pyside 1.2.1 and pyside-tools 0.2.15Xin Sun
2013-08-08pyside: 1.2.0, --HEADSamuel John
Needed a patch fix moc_qpytextobject.cxx not found (https://codereview.qt-project.org/62479). use `include` for `ALTERNATE_QT_INCLUDE_DIR`. Point to Qt src dir.
2013-06-03pyside: fix shiboken depJack Nagel
2013-06-03pyside: styleJack Nagel
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-03Add frameworks helper to formulaAdam Vandenberg
2013-04-21Remove global methods from formulaeSimon Sigurdhsson
Removes any global methods from formulae, and moves #kext_prefix (which seems to be at least somewhat abstractable) into the Formula class. The only formula with global methods is now aspell; it (and its generating script in contrib) has been changed to prefix that method with `aspell_`, to minimize the risk of name collisions. Closes #19331. Closes #19343. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2013-01-10pyside: use qt-project URLJack Nagel
2012-10-13pyside 1.1.2Jack Nagel
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-10-13pyside: use temporary MacPorts mirrorJack Nagel
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-07-12pyside 1.1.1nibbles 2bits
Upgrade pyside to version 1.1.1, which supports Qt-4.8. Add and out of source build to match shiboken, seeing as shiboken is also from the same developers. Tested on Lion with clang and llvm from XCode-4.3.3. Tested with and it needs shiboken >= 1.1.1. Closes #13331. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-05-22Use new std_cmake_args methodJack Nagel
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-05-15Break long linesJack Nagel
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-05-15Shore up a number of shell quoting issuesJack Nagel
When interpolating in strings passed to Formula#system, it should be done in such a way that if any interpolated variables contain spaces, they are either (a) passed as part of a list or (b) protected by quotes if they are part of a long string (which is subject to shell expansion). Otherwise, they will be split on the space when expanded by the shell and passed as multiple arguments to whatever process is being executed. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-05-03Revert "ENV.rb: Always return integers from make_jobs"Charlie Sharpsteen
This reverts commit ea1a9e603abe3dab90bf5b157d2614cf58e2cc8e. Argh. Unrelated PySide changes slipped in.
2012-05-03ENV.rb: Always return integers from make_jobsCharlie Sharpsteen
When referencing `Hardware.processor_count`, `ENV.make_jobs` will return an integer. If referencing the environment variable `HOMEBREW_MAKE_JOBS`, it returned a string. Now, the function always returns an integer. Fixes #12033.
2012-02-24Put source path last in cmake argsAdam Vandenberg
2012-01-08PySide: Update to 1.1.0Charlie Sharpsteen
Also updates the following dependencies: - ApiExtractor - GeneratorRunner - Shiboken Also clean up dependency statements.
2011-12-02PySide: Update to 1.0.9Charlie Sharpsteen
Also updates dependencies: - apiextractor - generatorrunner - shiboken
2011-11-09PySide: Update to 1.0.8Charlie Sharpsteen
Also updates dependencies: - apiextractor - generatorrunner - shiboken
2011-09-22PySide: Update to 1.0.7Charlie Sharpsteen
Also updates apiextractor, generatorrunner and shiboken.
2011-08-26Pyside: Fix path to site-packagesJohn Harrison
Corrected the site-packages paths for pyside and pyside-tools to agree with python's formula. Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
2011-08-25New formula for PySideCharlie Sharpsteen
PySide is a set of LGPL-licensed Python bindings for the Qt libraries that is mostly compatible with PyQt. This formula builds the Python run-time modules. For development tools such as Qt UI and Resource compilers, see the PySideTools formula.