aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libplist.rb
AgeCommit message (Collapse)Author
2014-11-10libplist: update 1.12 bottle.BrewTestBot
2014-11-10libplist 1.12Dominyk Tiller
Version bump, fixed HEAD, version bump to cython and Python build adjustments. Closes #34079. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2014-10-20libplist: update 1.11 bottle.BrewTestBot
2014-08-21libplist: use Cython resourceJack Nagel
Closes #31294.
2014-05-23libplist: add 1.11 bottle.BrewTestBot
2014-05-23libplist 1.11Jack Nagel
2014-04-11Use .diff instead of .patch for github commit sourced patchesSteven Peters
This modifies multiple formulae in a single commit, replacing the patch suffix with diff per #28315. I used the following command: ~~~ sed -i -e 's@patch"$@diff"@' `grep -rlI 'commit.*patch"$' .` ~~~ The patch shasums are then computed using: ~~~ brew fetch --build-from-source `git st | sed -e 's@^ M@@'` ~~~ and manually updated. Fixes #28315. Fixes #28335. Closes #28339. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2014-03-16libplist: use checksummed patchesJack Nagel
2014-02-24libplist: add 1.10 bottle.BrewTestBot
2014-01-04libplist: cleanup python usage.Mike McQuaid
2013-11-06libplist: add upstream patch for 10.9Jack Nagel
Fixes #23464.
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-03-26libplist: Update to 1.10.0, enable Cython bindingsAnton Rieder
Closes #18691. Signed-off-by: Samuel John <github@SamuelJohn.de>
2012-09-03Batch convert MD5 formula to SHA1.Mike McQuaid
Closes #14653.
2012-05-22Use new std_cmake_args methodJack 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-02-23libplist: fix inreplace pythonNibbles 2bits
libplist-1.8 has a broken inreplace that is supposed to disable swig python bindings. Fix that and inline the patch to prevent future inreplace failures. Also disables Cython python bindings until there is a homebrew formula for Cython. Tested on Lion with Homebrew python-2.7.2. Closes #10436. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-02-20libplist: fix errors with ClangNibbles 2bits
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-02-20libplist 1.8Adam Vandenberg
2011-09-12libplist: Deparallize buildCharlie Sharpsteen
Parallel build fails on an 8 core Mac.
2011-06-28libplist 1.6Jordan
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-05-10libplist 1.4Josh Wisenbaker
Bump libplist to 1.4 to fix some major bugs. Also update the project to its new homepage. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-03-12Use ruby style for inheritance.Adam Vandenberg
2011-02-16Update Formula: libplistAlexis Hildebrandt
Correct install name of dynamic libraries using CMAKE_INSTALL_NAME_DIR cmake variable Signed-off-by: David Höppner <0xffea@gmail.com>
2010-11-18Use https for all GitHub URLsTianyi Cui
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-10-12Mark scons, cmake & pkg-config as build-time depsAdam Vandenberg
2010-08-07Update formulae for version 0.7Adam Vandenberg
* Use new "url" features * Use keg_only DSL * Use "skip_clean :all" DSL * Whitespace and style cleanups * Make bash invocations less silly * Use new man2-man8 helpers * Remove "FileUtils." since it is included in Formula * Use real names for deps instead of aliases * ENV.x11 now updates path, so remove that from individual brews
2010-06-10libplist - remove keg-only by deleting duplicate commandAdam Vandenberg
2010-06-10Added libplist 1.3.Edward George
A library to handle Apple Property List formats. Signed-off-by: Adam Vandenberg <flangy@gmail.com>