aboutsummaryrefslogtreecommitdiffstats
path: root/Library
AgeCommit message (Collapse)Author
2016-09-11cmd/search: fix Rubocop warnings.Mike McQuaid
2016-09-11cmd/prune: fix Rubocop warnings.Mike McQuaid
2016-09-11cmd/missing: fix Rubocop warnings.Mike McQuaid
2016-09-11cmd/log: fix Rubocop warnings.Mike McQuaid
2016-09-11cmd/list: fix Rubocop warnings.Mike McQuaid
2016-09-11cmd/install: fix Rubocop warnings.Mike McQuaid
2016-09-11cmd/info: fix Rubocop warnings.Mike McQuaid
2016-09-11cmd/help: fix Rubocop warnings.Mike McQuaid
2016-09-11cmd/fetch: fix Rubocop warnings.Mike McQuaid
2016-09-11cmd/doctor: fix Rubocop warnings.Mike McQuaid
2016-09-11cmd/desc: fix Rubocop warnings.Mike McQuaid
2016-09-11cmd/commands: fix Rubocop warnings.Mike McQuaid
2016-09-11Merge pull request #911 from MikeMcQuaid/language-rubocopMike McQuaid
Fix Library/Homebrew/language RuboCop warnings
2016-09-11os/mac/xquartz: fix Rubocop warnings.Mike McQuaid
2016-09-11os/mac/xcode: fix Rubocop warnings.Mike McQuaid
2016-09-11os/mac/version: fix Rubocop warnings.Mike McQuaid
2016-09-11os/mac/sdk: fix Rubocop warnings.Mike McQuaid
2016-09-11os/mac/linkage_checker: fix Rubocop warnings.Mike McQuaid
2016-09-11os/mac/cctools_mach: fix Rubocop warnings.Mike McQuaid
2016-09-11os/mac/architecture_list: fix Rubocop warnings.Mike McQuaid
2016-09-11os/mac: fix Rubocop warnings.Mike McQuaid
2016-09-11requirements/x11_requirement: fix Rubocop warnings.Mike McQuaid
2016-09-11requirements/ruby_requirement: fix Rubocop warnings.Mike McQuaid
2016-09-11requirements/perl_requirement: fix Rubocop warnings.Mike McQuaid
2016-09-11requirements/java_requirement: fix Rubocop warnings.Mike McQuaid
2016-09-11requirements/emacs_requirement: fix Rubocop warnings.Mike McQuaid
2016-09-11bottle: set bottle block tap.Mike McQuaid
Avoids issues when using `—keep-old`
2016-09-11Merge pull request #922 from MikeMcQuaid/cask-flaky-testMike McQuaid
cask/cli/cleanup_spec: comment out flaky test.
2016-09-11cask/cli/cleanup_spec: comment out flaky test.Mike McQuaid
This has been causing sporadic CI failures.
2016-09-11test-bot: don't try to `git clean` any taps.Mike McQuaid
Also, unify the cleanup code and be more careful and consistent with untapping.
2016-09-11test-bot: try again to fix homebrew/core untap.Mike McQuaid
Be more selective with the `git clean` and remove the broken attempt to autotap if missing (as it'd be slow anyway).
2016-09-11test-bot: --ci-upload can upload from current dir.Mike McQuaid
Look in the current directory rather than only allowing upload from Jenkins.
2016-09-11Merge pull request #916 from MikeMcQuaid/bottle-old-valueMike McQuaid
bottle: fix old_value/value ordering for --merge.
2016-09-11caveats: highlight PKG_CONFIG_PATH if existsDominyk Tiller
We keep getting issues every now & again about people being confused that keg_only includes hiding the `pkg-config` files. Perhaps seems reasonable to start pointing out those exist when they do & a hint on how to access them. Hidden behind a which check to avoid redundant messages, although `pkg-config` is an incredibly popular formula. Ran some time tests, no appreciable difference from the status quo. If accepted: Closes https://github.com/Homebrew/homebrew-core/issues/4669.
2016-09-10bottle: fix old_value/value ordering for --merge.Mike McQuaid
Previously this was the wrong way around causing it to not be accepting enough on e.g. a bump from :any to :any_no_relocation.
2016-09-10bottle: use key/value rather than field.Mike McQuaid
Consistent naming is good.
2016-09-10Merge pull request #904 from DomT4/sierraDominyk Tiller
Sierra: update diagnostic message, pkg-config, Xcode doc
2016-09-10pkg-config: update Sierra's sqlite versionDominyk Tiller
2016-09-10diagnostic: tweak check_xcode_up_to_date messagingDominyk Tiller
2016-09-10bottle: further improve --keep-old mismatching.Mike McQuaid
- Make the code more similar between `bottle` and `bottle --merge`. - Also output the mismatched values when using `--merge`.
2016-09-10Merge pull request #907 from MikeMcQuaid/brew-tests-developerMike McQuaid
tests: always set HOMEBREW_DEVELOPER=1.
2016-09-10Merge pull request #908 from MikeMcQuaid/merge-cask-gitignoreMike McQuaid
Merge Cask's gitignore with root one.
2016-09-10language/python_virtualenv_constants: fix Rubocop warnings.Mike McQuaid
2016-09-10language/python: fix Rubocop warnings.Mike McQuaid
2016-09-10language/node: fix Rubocop warnings.Mike McQuaid
2016-09-10language/haskell: fix Rubocop warnings.Mike McQuaid
2016-09-10bottle: improve --keep-old failure output.Mike McQuaid
If fields have changed: tell the user what they were before and are afterwards.
2016-09-10Merge Cask's gitignore with root one.Mike McQuaid
This fixes the ignoring in libgit2 clients that don't read nested `.gitignore` files.
2016-09-10tests: always set HOMEBREW_DEVELOPER=1.Mike McQuaid
Unit tests should be run consistently no matter who is running them and we can stub `ARGV.homebrew_developer?` if we need to change them.
2016-09-09cmd/commands: always show developer commandsZhiming Wang
Per discussion in #900. Closes #900.