aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd
AgeCommit message (Collapse)Author
2011-04-04brew audit: --strict warning for using $ in caveatsAdam Vandenberg
For multiple lines of commands to enter at a prompt, don't use $ as a prompt marker to make it easier to copy/paste.
2011-04-04brew doctor: add check for GREP_OPTIONSAdam Vandenberg
2011-04-04brew doctor: update expat checkAdam Vandenberg
Apaprently both expat.framework and libexpat.framework exist and interfere with CMake.
2011-04-01Fix CLICOLOR_FORCE checkAdam Vandenberg
2011-04-01Fix brew-audit Fortran checkCharlie Sharpsteen
The Fortran regex only allowed for trailing whitespace after: depends_on 'gfortran' This missed conditional dependencies, such as: depends_on 'gfortran' if something? Such a dependency was present in the NetCDF formula. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-03-29brew doctor - only check unique path foldersAdam Vandenberg
2011-03-28Use Formula#installed_prefix for brew --prefix formulaDave Lee
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-03-28brew doctor - add check for CLICOLOR_FORCEAdam Vandenberg
2011-03-28brew doctor - reword stray dylib messageAdam Vandenberg
2011-03-28brew doctor - also check permisisons on shareAdam Vandenberg
2011-03-28reword auditAdam Vandenberg
2011-03-26remove whitespaceAdam Vandenberg
2011-03-21brew up: star installed formulaeJonas Pfenniger
When running `brew up`, if a mentioned formulae is also installed, it will get a wildcard start at the end. It makes it easier to see if any installed formulae is impacted. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-03-21update manpage for brew audit --strictAdam Vandenberg
This removes the single use of 'brew audit --warn' and changes it to --strict as well.
2011-03-21brew audit: add strict check for <Formula spacingAdam Vandenberg
2011-03-21Add audit for xcodebuild.Adam Vandenberg
xcodebuild should be passed an explicit SYMROOT, since the user can override this. Also added --strict, so certain audits can be ignored in most cases (including this one.)
2011-03-19Fix brew --cellar fooAdam Vandenberg
2011-03-19brew options: allow --allAdam Vandenberg
2011-03-15brew audit: check that homepage includes the protocolAdam Vandenberg
2011-03-14Don't make brew doctor complain about Xcode 4.Mike McQuaid
2011-03-14X11 is part of OSX, not Xcode.Mike McQuaid
2011-03-14brew info should fetch remote formula infoJoshua Peek
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-03-13Remove unused exception; Closes #4652Max Howell
If version cannot be determined, then instruct the user to add one.
2011-03-13Optimise/simplify `brew help`Max Howell
Be more useful by being more concise. I referenced dozens of other mature commands’ usage to figure out what to do here. Also separated out the help into its own command for consistency.
2011-03-13Replace create --cache with create --no-fetchMax Howell
Because since 0.8 we do the opposite, ie. download by default.
2011-03-12Fix 'brew log -p foo'.Adam Vandenberg
2011-03-12brew audit: check for missing depsAdam Vandenberg
2011-03-12Fix 'brew rm -f'Adam Vandenberg
2011-03-12brew audit - check for depends_on 'gfortran'Charlie Sharpsteen
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-03-12'brew fetch' now an official commandAdam Vandenberg
2011-03-12brew cleanup - do not clean up keg-only brews for nowAdam Vandenberg
2011-03-12brew cleanup - fix formula name in warningAdam Vandenberg
2011-03-12'brew options' now an official commandAdam Vandenberg
2011-03-12'brew test' now an official commandAdam Vandenberg
2011-03-12Silence cleanup warningAdam Vandenberg
When a cellar exists for an unknown formula, no longer print a warning. External tools using Brew to manage diy-installs will create a large number of non-formula cellars.
2011-03-12Use ruby style for inheritance.Adam Vandenberg
2011-03-12Fix 'brew search' with no parameter.Adam Vandenberg
2011-03-12Have brew-doctor refer to the correct LLVM/GCC env variablesMarkus Prinz
The HOMEBREW_(LLVM|GCC) variables mentioned in brew-doctor's `check_cc_symlink` method are actually named HOMEBREW_USE_(LLVM|GCC) Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-03-12Use + instead of /.Adam Vandenberg
2011-03-12audit - check formula permissionsAdam Vandenberg
2011-03-12Add expat.framework check to doctorAdam Vandenberg
2011-03-12Added --use-gcc flag.Stephen Allred
This allows you to use llvm as your default compiler and keep the cc symlink pointed at llvm, while allowing you to build forumla that requires the gcc. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-03-12Fix `brew log foo`Max Howell
2011-03-12Don't throw if no gcc 4.0 installedMax Howell
2011-03-12`brew deps foo bar` now gives the dependency intersectionMax Howell
Rationale: this is more useful than the union, and you can still easily get the union by running the command twice and concatenating the result.
2011-03-12Some CleanupMax Howell
2011-03-12Move brew-audit to cmdsAdam Vandenberg
2011-03-12Refactor the blacklistsMax Howell
Also don't abort searches if the query matches a blacklist. Eg. `brew search vim` should return macvim and the information that vim itself is not packaged.
2011-03-12More modular cmd/install and FormulaInstallerMax Howell
2011-03-12Refactor the brew command into one file per commandMax Howell
The code was sucking. To the extent that maintenance was hard. It's a lot easier to work with code that is sensibly split at sensible boundaries. So now it is more like that. But the refactor is minimal. Because we don't want you to have more merge hell than absolutely necessary. If you merge you will need to pay attention to brew.h.rb (as it is deleted) and bin/brew (as command logic is gone). It will be painful, but you will just have to help git out by moving any changes around manually. Note compatibility.rb. It ensures that any function renames or removals don't break anything. We're pretty serious about backwards compatibility. And that's because we encourage you to hack around with the innards. And we couldn't do that if we would then just make stuff disappear behind your back.