aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2014-01-26upgrade: fix output when no packages to upgrade.Frizlab
When upgrading, if the only package to upgrade is a pinned package, the output looked like that: ==> Upgrading 0 packages, with result: ==> Not upgrading 1 pinned package: <<package_name & version>> The blank line is not beautiful. This commit fixes the output and replaces with: ==> No packages to upgrade ==> Not upgrading 1 pinned package: <<package_name & version>> Closes Homebrew/homebrew#26157. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-01-25brew-test-bot: install GCC if needed.Mike McQuaid
2014-01-23brew_zsh_completion: add `brew services` supportEd Lui
Closes Homebrew/homebrew#26105. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-01-22mac: note that we only track stable Xcode versions.Mike McQuaid
2014-01-21caveats: tweak python site-packages wording.Mike McQuaid
References Homebrew/homebrew#25789.
2014-01-20python_dependency: cleanup, fix satisfy.Mike McQuaid
Closes Homebrew/homebrew#26067.
2014-01-20utils: improve issue searching.Mike McQuaid
* issues_matching now returns an array * prints issues titles and URLs * find_pull_requests shows closed PRs if no matching PRs are open Closes Homebrew/homebrew#26032.
2014-01-20PythonDependency: massive refactoring.Mike McQuaid
Closes Homebrew/homebrew#24842.
2014-01-20bottle: only print relocations with --verbose.Mike McQuaid
2014-01-19caveats: print .app caveats if installed to keg.Mike McQuaid
2014-01-19keg: add function to detect if .app(s) installed.Mike McQuaid
2014-01-19README: add troubleshooting.Mike McQuaid
2014-01-19README: remove `brew server`.Mike McQuaid
2014-01-19CONTRIBUTING: shorten troubleshooting wording.Mike McQuaid
2014-01-19bottle: use new quoting style.Mike McQuaid
2014-01-18SUPPORTERS: improve links.medina
Closes Homebrew/homebrew#26008. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-01-16Only search open pull requests, not closedMisty De Meo
Refs Homebrew/homebrew#25962.
2014-01-15LICENSE: copyright 2014.David Larson
Closes Homebrew/homebrew#25917. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-01-14gist logs: print last urlStefan
Closes Homebrew/homebrew#25514. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-01-14gist logs: fix error messageStefan
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-01-11Fix typoJack Nagel
2014-01-11Fix tokenizing openssl style versionsJack Nagel
Fixes Homebrew/homebrew#25736.
2014-01-11LanguageModuleDependency: remove code that only worked by accidentJack Nagel
The array elements here are individual arguments to exec, not a string to pass to the shell; this only appeared to work. In reality, `opam list` accepts "|" as valid argument, and the command works fine without grepping the output.
2014-01-11man: add reinstall command.Mike McQuaid
2014-01-11man: use <br> instead of whitespace for linebreak.Mike McQuaid
2014-01-11Merge branch 'qt5'Mike McQuaid
2014-01-10Escape issue search stringJack Nagel
Fixes Homebrew/homebrew#25779.
2014-01-09pull: fix --bottle to no longer use mxcl.Mike McQuaid
2014-01-09search: handle tap not found and suggest update.Mike McQuaid
Closes Homebrew/homebrew#25706. Closes Homebrew/homebrew#25682.
2014-01-08Revert "detect_cxx_stdlibs: ignore executables."Mike McQuaid
This reverts commit 1cd636d368c66d1346adc1c38633c8f204c759f4.
2014-01-07brew-test-bot: output files removed from cache.Mike McQuaid
2014-01-07brew-test-bot: nuke cache on cleanup.Mike McQuaid
2014-01-07create: fix typosChristian Moritz
Closes Homebrew/homebrew#25709. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-01-07detect_cxx_stdlibs: ignore executables.Mike McQuaid
2014-01-07create: always use double quotes.Mike McQuaid
2014-01-05CONTRIBUTING: add Ruby style guide.Mike McQuaid
2014-01-04bottle: improve "not installed" message.Mike McQuaid
Fixes Homebrew/homebrew#25546.
2014-01-04caveats: show python caveats if modules installed.Mike McQuaid
2014-01-04Pathname: add methods to write env scripts.Mike McQuaid
2014-01-04ENV: add method to prepend and create a PATH.Mike McQuaid
2014-01-04formula: fix whitespace.Mike McQuaid
2014-01-04stdenv tests: add gcc-4.0 testMisty De Meo
2014-01-04ENV.gcc: remove raiseMisty De Meo
This raise happened in no other ENV methods, and isn't really necessary since fails_with guards against this method actually being called unless gcc-4.2 is actually installed.
2014-01-04Recommit ENV changesMisty De Meo
2014-01-04Revert "stdenv: fix self.cc check"Mike McQuaid
This reverts commit 0e1d52c0d3945ae0ac69383c7734e425b7fbf8f1.
2014-01-04Revert "default_cc: locate already returns Pathnames"Mike McQuaid
This reverts commit 8ec6123d439e8f4d3586bbca6a426b726bd5e9dd.
2014-01-04Revert "default_compiler: recognize gcc-4.0"Mike McQuaid
This reverts commit bedcbb806bb8a991a1317b4ccde8d16b6974cc46.
2014-01-04Revert "stdenv: set correct compiler symbol for gcc 4.0"Mike McQuaid
This reverts commit f4dc5614953b3b90acc28c83262d56587b0616b1.
2014-01-03stdenv: set correct compiler symbol for gcc 4.0Misty De Meo
2014-01-03default_compiler: recognize gcc-4.0Misty De Meo