aboutsummaryrefslogtreecommitdiffstats
path: root/Library
AgeCommit message (Collapse)Author
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-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-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
2010-08-21Warn about jars in lib.Adam Vandenberg
Java software tends to come with its own mini file layout including bin, lib and other folders. The lib folder typically holds jars, which can conflict between packages if linked into HOMEBREW_PREFIX/lib and aren't needed to compile other .dylib based software anyway. The recommendation for Java software is to install to "libexec" and then symlink or wrap binaries from libexec/bin to bin in the Cellar.
2010-08-21brew audit - Google Code homes w/o trailing slashAdam Vandenberg
Without a trailing slash, you redirect to the URL w/ a slash, so might as well have it there in the first place.
2010-08-21Deal with symlinked meta filesAdam Vandenberg
2010-08-21Man sections only run through 8Adam Vandenberg
2010-08-21Document HOMEBREW_KEEP_INFOAdam Vandenberg
2010-08-21HOMEBREW_KEEP_INFO to keep info pagesAdam Vandenberg
2010-08-21use f.infoAdam Vandenberg
2010-08-21Move cleaner to separate fileAdam Vandenberg
2010-08-21comment link stepAdam Vandenberg
2010-08-20Document 'brew man' and add links to gems.Adam Vandenberg
2010-08-20Document HOMEBREW_DEBUG_PREFIXAdam Vandenberg
2010-08-20Let 'interactive_shell' take a formula and set ENV vars.Adam Vandenberg
Pull duplicate code out of install --debug and install -i up into 'interactive_shell'.
2010-08-20Add 'HOMEBREW_DEBUG_PREFIX'Adam Vandenberg
When doing "brew install -i", set the "HOMEBREW_DEBUG_PREFIX" variable to the prefix of the formula being installed.
2010-08-20'brew cleanup' no longer complains about single versionsAdam Vandenberg
Previously "brew cleanup" would complain if the most recent version of a brew wasn't installed. We now suppress this message if only one (outdated) formula is present.
2010-08-18brew doctor - look for MacGPG2 installed via the .mpkgAdam Vandenberg
2010-08-17Tweak brew server - fixes Homebrew/homebrew#2191Adam Vandenberg
2010-08-16Use 1.9 compat syntax. Fixes Homebrew/homebrew#2192Adam Vandenberg
2010-08-16brew doctor - tweak multiple volume checkAdam Vandenberg
2010-08-16Document HOMEBREW_DEBUG_INSTALLAdam Vandenberg
2010-08-15Fix brew server and document.Adam Vandenberg
2010-08-15Make errors during link step more visible.Adam Vandenberg
2010-08-15Move method back to Pathname.Adam Vandenberg
2010-08-15Document 'brew test' and sort external commands.Adam Vandenberg
2010-08-15Fix typo in manpage.Adam Vandenberg
2010-08-15Document 'brew missing'.Adam Vandenberg
2010-08-15Tweak brew missingAdam Vandenberg
2010-08-15brew audit - check for FileUtils.Adam Vandenberg
2010-08-15External command "brew missing"Adam Vandenberg
This will print installed brews that are missing deps.
2010-08-15brew audit - another man variationAdam Vandenberg
2010-08-13Add 'brew graph' external command.Adam Vandenberg
This command generates a GraphViz dot file from the Hoembrew dependency graph. $ brew install graphviz $ brew graph | dot -Tsvg -ohomebrew.svg $ open homebrew.svg
2010-08-11Tweak ARGV.usageAdam Vandenberg
2010-08-11Reformat manpage slightlyAdam Vandenberg
2010-08-11Add "brew uses --installed"Adam Vandenberg
Passing --installed will limit the list to formulae that you have installed. Documented this and "brew deps --1" which limits the dependency list to one level down (direct dependencies).
2010-08-11Tweak default templateAdam Vandenberg