aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd
AgeCommit message (Collapse)Author
2013-11-12audit generic binary namesAdam Vandenberg
Binaries with names like 'run' or 'service' are likely to conflict. Warn about these and suggest a libexec-style install instead.
2013-11-12bottle: always use HOMEBREW_REPOSITORY.Mike McQuaid
2013-11-11info: fix on non-tty terminals.Mike McQuaid
References #18922. Closes #24188. Closes #24190.
2013-11-11info: decorate deps to show installed status?Colin Dean
* shows green tick if installed or red cross if not * only highlight dependency if HOMEBREW_NO_EMOJI is set Closes #18922. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2013-11-09Clarify XQuartz warningJack Nagel
Closes #24094.
2013-11-07HOMEBREW_USE variables are no longer honored, ignore themJack Nagel
2013-11-07Display only HOMEBREW_CC/CXX in `brew --env` under superenvJack Nagel
The other values will be identical.
2013-11-06doctor: quoting fixWilliam Entriken
The one liner should put `#{HOMEBREW_PREFIX}/bin:$PATH` into bash profile. Previously it was being interpreted by the shell before being put in bash profile. Closes #24008. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-11-04Remove special cases in build-time dep auditJack Nagel
Closes #23931.
2013-11-03Doctor: fix check_access_logsMisty De Meo
Fixes #23936.
2013-11-02Fix regression in `brew deps`Jack Nagel
The default mode is intended to display recursive dependencies, with the `--1` flag to display only one level.
2013-11-01update: check if Cellar exists instead of factory.Mike McQuaid
Fixes #23881.
2013-11-01Remove "-c1" one-line configJack Nagel
This is broken and nobody noticed, so remove it. Closes #23878.
2013-10-31bottle: improve written bottle output.Mike McQuaid
2013-10-31bottle: write to relative path if exists.Mike McQuaid
2013-10-31install: search when formula isn't found.Mike McQuaid
2013-10-31bottle: improve relocatable debugging.Elliot Saba
* When Homebrew developer mode is enabled, if a bottle is not found to be relocatable attempt to explain why * Print out paths of each file that still contains the string search for * If the string searched for was found in an executable, check to see if `otool` can explain the string's appearance * If otool can't explain, see if `strings` can explain Closes #23824. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2013-10-31Use HOMEBREW_LOGS more consistently.Mike McQuaid
2013-10-31fetch: check for existing cache file before downloadingJack Nagel
2013-10-31fetch: clear partial downloads when --force is givenJack Nagel
Fixes #23764.
2013-10-31sh: only activate X11 if it's installedJack Nagel
Fixes #23835.
2013-10-30Cleanup use of some global constants.Mike McQuaid
2013-10-30deps: don't use symbol-like output by default.Mike McQuaid
2013-10-30doctor: strengthen osx-gcc-installer warning.Mike McQuaid
We hate it and we should tell people why. Next step may be blocking it altogether.
2013-10-30install: print osx-gcc-installer doctor warning.Mike McQuaid
2013-10-30update: automatically tap migrated formulae.Mike McQuaid
When a formula is removed from core and installed let's tap it so users can get updates without caring which tap we want to put things in. This should allow us to migrate a lot of things to taps. Closes #23760.
2013-10-30global: add more tap regexes.Mike McQuaid
2013-10-30uses: display requirements.Mike McQuaid
Closes #23758.
2013-10-30deps: display requirements default_formulae.Mike McQuaid
2013-10-30doctor: ensure git --version actually matches.Mike McQuaid
Closes #23791.
2013-10-29New command: `brew unlinkapps`Teo Ljungberg
The name is pretty self explanatory, it unlinks all installed applications found under `brew --prefix` from either `~/Applications` or `/Applications` Closes #22729. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-10-28versions: fix bottle_filenames.Mike McQuaid
Previously if a bottle had no checksum for a particular platform (i.e. currently there are no Mavericks bottles) then it would generate a different revision (and thus filename) to the rest of the bottles being generated which meant bottles needed to be manually renamed. Instead check the actual bottle object's checksums to make sure that we've looked at the previous bottles for all platforms rather than just the current one.
2013-10-26create: escape example interpolationJack Nagel
Fixes #23643.
2013-10-26add note about test path to create templateAdam Vandenberg
2013-10-25doctor: require CLT on 10.9.Mike McQuaid
Xcode-only setup is badly broken and will remain that way until fixed by Apple. For many 10.9 issues this fixes things so let's tell the users.
2013-10-25create: detect name from GitHub archives.Mike McQuaid
2013-10-25Add HOMEBREW_NO_GITHUB_API env var.David MacMahon
This patch allows users to "opt out" of using the GitHub API altogether by setting the HOMEBREW_NO_GITHUB_API environment variable. The value of the environment variable does not matter (it can even be empty!). For Bash/ZSH: export HOMEBREW_NO_GITHUB_API=1 Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2013-10-24config: omit llvm-gcc if it's not installedJack Nagel
2013-10-23Improve Xcode and CLT installation instructions.Mike McQuaid
2013-10-22Avoid comparing Xcode.version to floatsJack Nagel
2013-10-22Avoid comparing MacOS.version to floatsJack Nagel
2013-10-22doctor: remove 10.9 warningJack Nagel
2013-10-22Different regex for user/tap/formula and user/tap.Mike McQuaid
Closes #23430.
2013-10-21install: silently ignore already tapped taps.Mike McQuaid
2013-10-21tap: use dedicated exception for already tapped.Mike McQuaid
2013-10-21install: fix trying to tap local bottles.Mike McQuaid
2013-10-21install: tap if full tap formula format given.Mike McQuaid
Closes #23411. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2013-10-21global: unify tap regex.Mike McQuaid
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2013-10-18libextractor: add runtime dependency on libtoolJack Nagel
Fixes #23306.
2013-10-16add pin/unpin to helpStan
Closes #23267. Signed-off-by: Adam Vandenberg <flangy@gmail.com>