aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew
AgeCommit message (Collapse)Author
2010-05-02Show digest mismatch in verify_download_integrityYarrow
Report "Expected <supplied digest>, got <file's digest>" when verify_download_integrity sees a mismatch. (It had been, confusingly, reporting "Expected <file's digest>".) Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-05-01Add check for gettext to brew_doctor.Adam Vandenberg
If the user has linked the keg-only gettext, then a large number of formulae which don't have "depends_on 'gettext'" will pick it up anyway. Knowing this about the user's setup may help diagnose bug reports.
2010-05-01Update gcc version checks in brew_doctorAdam Vandenberg
brew_doctor's gcc version checks wasn't taking into account the case where the user doesn't have one or both of GCC 4.0.x and 4.2.x installed.
2010-04-29Add 'Arrandale' for core i7 MBPlistrophy
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-04-22Fix universal builds on 32-bit CPUs.Adam Vandenberg
2010-04-22Add --git option to 'brew install -i'.Adam Vandenberg
This allows for easy generation of diffs, per a trick in http://wiki.github.com/mxcl/homebrew/formula-cookbook
2010-04-20brew doctor now checks pkg-config search pathAdam Vandenberg
Homebrew's pkg-config didn't originally add X11 to its search path. This causes problems for long-time Homebrew users brewing software that depends on X11-related packages, such as Cairo.
2010-04-17Read all formula in a 'rescue' block.Adam Vandenberg
For operations that read all formulae, catch exceptions and skip broken ones, rather than bomb out entirely.
2010-04-15Do not assume /Developer when checking LLVM. Fixes Homebrew/homebrew#1160.Adam Vandenberg
2010-04-12Use Array#length instead of count. Fixes Homebrew/homebrew#1165Adam Vandenberg
2010-04-12Make mod_wsgi and mod_python arch code more similar.Adam Vandenberg
2010-04-10Only respect :using specs when downloading HEAD.Martin Kühl
When a formula specifies both an `url` and a `head`, and the latter specified a `:using` spec, brew would try to fetch the `url` using the specified download strategy. With this change, brew respects `:using` specs only when determining the download strategy for `head`. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-04-09Support jruby external dependencies.Adam Vandenberg
* Add tests that run only if 'jruby' is installed. * Note that if your formula has :jruby deps, it should likely "depend_on 'jruby'" as well.
2010-04-08Quote prefix for git submodules. Fixes Homebrew/homebrew#1009Adam Vandenberg
2010-04-08Test that Homebrew's bin is in the path.Adam Vandenberg
2010-04-08Adds support for git submodules. Fixes Homebrew/homebrew#1009.Chris Thachuk
If submodules exists for a git repo then checkout their index as well into the appropriate path. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-04-06Only check @specs for :using if @specs exists. Fixes Homebrew/homebrew#1127.Adam Vandenberg
2010-04-06Allow :using on head to specify a download strategy.Adam Vandenberg
A 'head' in a formula can now specify which download strategy to use via a ':using' specification: head 'http://svn.macosforge.org/repository/darwinbuild/trunk/', :using => :svn This reduces the number of cases where "download_strategy" needs to be overriden.
2010-04-06Remove silly concatenation.Adam Vandenberg
2010-04-06Change homepage. Fixes Homebrew/homebrew#105.Adam Vandenberg
2010-04-06Move ENV tests to separate file.Adam Vandenberg
2010-04-06Split out some Formula tests.Adam Vandenberg
2010-04-06Switch test_bucket over to use testing_env.Adam Vandenberg
2010-04-06Move Pathename property tests to separate file.Adam Vandenberg
2010-04-06Move ARGV tests to separate file.Adam Vandenberg
2010-04-06Move utils tests to separate file.Adam Vandenberg
2010-04-06Tests for Pathname.install.Adam Vandenberg
2010-04-06Merge Formula class name testsAdam Vandenberg
2010-04-06Add external deps. tests.Adam Vandenberg
2010-04-06Move TestBall definition to separate file.Adam Vandenberg
2010-04-06Move checksum tests to separate file.Adam Vandenberg
2010-04-06Move version tests to separate file.Adam Vandenberg
2010-04-06Move inreplace tests to separate file.Adam Vandenberg
2010-04-06Tests - remove some unused includesAdam Vandenberg
2010-04-06Move hardware detection tests to separate file.Adam Vandenberg
2010-04-06Move install tests to separate file.Adam Vandenberg
2010-04-06Move updater tests to separate file.Adam Vandenberg
2010-04-06Add tests for patching.Adam Vandenberg
2010-04-06Add new "testing environment" include.Adam Vandenberg
2010-04-06Add shell script 'tests' to run ruby test suites.Adam Vandenberg
2010-04-06Remove silly concatenation.Adam Vandenberg
2010-04-06Add pkg-config check.Adam Vandenberg
2010-04-06Add path check.Adam Vandenberg
2010-04-06Check for root owned locale folders.Adam Vandenberg
2010-04-06Use here-strings.Adam Vandenberg
2010-04-06Prefix check.Adam Vandenberg
2010-04-06Ruby version check.Adam Vandenberg
2010-04-06Stubs for more checks.Adam Vandenberg
2010-04-06Move gcc version check.Adam Vandenberg
2010-04-06Check both gcc'sAdam Vandenberg