aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2010-10-01brew-missing - don't count outdated as missingAdam Vandenberg
2010-10-01Some people alias 'ls' so escape it in bash completionAdam Vandenberg
2010-09-30brew-audit - use preferred debian mirrorAdam Vandenberg
2010-09-30Fix brew edit fooAdam Vandenberg
2010-09-29Use %w quoting in ENV listAdam Vandenberg
2010-09-29Tweak unknown command messageAdam Vandenberg
2010-09-29improve std_cmake_parameters commentsAdam Vandenberg
2010-09-29Move resolve_alias from ARGV to FormulaAdam Vandenberg
Also, call this function from a few places where the code was duplicated.
2010-09-29Add formula name to LLVM warningAdam Vandenberg
2010-09-29refactor compiler messagesAdam Vandenberg
2010-09-29Don't allow unsupported dep typesAdam Vandenberg
2010-09-29brew-doctor - add access check to includeAdam Vandenberg
2010-09-27add libpcap to listAdam Vandenberg
2010-09-27Tweak man entry for brew usesAdam Vandenberg
2010-09-26fix typoAdam Vandenberg
2010-09-25Fix brew list completion and add support for --versions switchJames Conroy-Finn
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-09-24Check git repos for validity before updating.Adam Vandenberg
If you `brew install erlang` and then control-C during the git clone, you can leave your cloned repo in an invalid state. This change does a "git status" on the clone if it exists, and nukes it if the status is invalid (forcing a clean clone.)
2010-09-22Add another file check to check_for_macgpg2Adam Vandenberg
2010-09-21ImageMagick - use svn repo instead of tarballsAdam Vandenberg
The ImageMagick mirrors like to drop old tarballs, which means that our formula breaks whenever the version we're using disappears. So I've switched to using their SVN repo (and added a --HEAD build.) Caveat: Their SVN repo is only served over https, with a bad cert, so this brew know has a custom SVN download strategy that auto-accepts that cert. If this bothers you, get ImageMagick to fix their cert upstream (or let us know where a stable tarball mirror lives.)
2010-09-19Let the `gzip` utility function accept multiple paths.Martin Kühl
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-09-17brew-fetch - warn if checksums differAdam Vandenberg
2010-09-16typoAdam Vandenberg
2010-09-16add 'brew install --force' to manpageAdam Vandenberg
2010-09-15test_updater: Make fixture internally consistentBo Borgerson
The update_git_pull_output_with_formulae_changes fixture (which consists of mocked-up `git pull` output) listed a few files as both updated and deleted. This caused the test_update_homebrew_with_formulae_changes test to fail. My guess is that this fixture was mocked-up before formula deletion handling was introduced, and became broken when it was. This revision just makes this fixture internally consistent, and allows the associated test to pass. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-09-14brew-audit - empty checksums with either type of quoteAdam Vandenberg
2010-09-13brew-audit - check for commented-out dependenciesAdam Vandenberg
"brew audit" will now warn about commented-out dependencies. Updated formulae that had these to either take them out or rewrite the comments around them.
2010-09-13Fetch new tags for git repos when cached.Adam Vandenberg
2010-09-12Don't descend keg-root symlinks, just show where they pointMax Howell
2010-09-12Pathname./ because it looks a lot better than +Max Howell
2010-09-09brew-audit - check SourceForge urlsAdam Vandenberg
2010-09-08brew-audit - yet another path shortcut checkAdam Vandenberg
2010-09-08brew-audit - check inreplace block var nameAdam Vandenberg
2010-09-08Fix brew-leavesAdam Vandenberg
2010-09-08Document brew optionsAdam Vandenberg
2010-09-07brew-audit - catch more interpolation style issuesAdam Vandenberg
2010-09-07Bump Xcode recommendation to 3.2.3Adam Vandenberg
2010-09-07ENV.rb - style tweakAdam Vandenberg
2010-09-07brew-doctor - fix llvm typoAdam Vandenberg
2010-09-07brew-audit: add check for git and fix warningsAdam Vandenberg
2010-09-06Add ENV.ldflags and use.Adam Vandenberg
2010-09-06Add ruby target to --configAdam Vandenberg
2010-09-06Use 'realpath'Adam Vandenberg
2010-09-06Improve :provided_by_osx rationale messageWill Robertson
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-09-04Update help optionsDavid Höppner
2010-08-30Fix typo in update.rbRyan Pavlik
Signed-off-by: David Höppner <0xffea@gmail.com>
2010-08-29Blacklist vim, screen and libarchiveDavid Höppner
2010-08-27Fixed recognition of versions like 'foobar-4.50-beta' in Pathname#versionlukas
Sphinx currently has a download name 'http://sphinxsearch.com/downloads/sphinx-1.10-beta.tar.gz', which homebrew currently can't correctly identify - with a small change to the regex for 'foobar-4.5.0-beta1' (make that trailing number optional) - it works like a charm. Signed-off-by: David Höppner <0xffea@gmail.com>
2010-08-23Remove HOMEBREW_CACHE from "brew --config"Adam Vandenberg
HOMEBREW_CACHE isn't really helpful in diagnosing problems, and some people don't like their username / home folder going into bug reports on the web, so let's take it out.
2010-08-22Define "snow_leopard_64?"Adam Vandenberg
snow_leopard_64? (defined in Hardware) is a short-cut for: MACOS_VERSION >= 10.6 and Hardware.is_64_bit? Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-08-21Only check for Jars if lib exists.Adam Vandenberg