| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2017-12-29 | Merge pull request #3604 from alyssais/cask_no_arguments | Mike McQuaid | |
| cask: exit successfully when given no arguments. | |||
| 2017-12-29 | Merge pull request #3603 from MikeMcQuaid/deprecate-some-requirements | Mike McQuaid | |
| Deprecate more requirements. | |||
| 2017-12-24 | utils: stop debug exploding when zsh is used | Dominyk Tiller | |
| 2017-12-24 | cask: exit successfully when given no arguments | Alyssa Ross | |
| Fixes https://github.com/Homebrew/brew/issues/3601. | |||
| 2017-12-24 | caveats: tweak root_dir definition style. | Mike McQuaid | |
| 2017-12-23 | caveats: correct completion/function paths for keg_only | Dominyk Tiller | |
| 2017-12-23 | gpg: cleanup and simplify. | Mike McQuaid | |
| 2017-12-23 | lines_cop: check for more deprecated requirements. | Mike McQuaid | |
| 2017-12-23 | Deprecate more requirements. | Mike McQuaid | |
| These are ones that were either already deprecated due to audit rules or are just a simple `which` with a `default_formula` so should just be a dependency. | |||
| 2017-12-23 | dependency_collector: cleanup optional system deps | Mike McQuaid | |
| 2017-12-23 | Revert "Revert "shims/scm/git: Fix the search for brewed git"" | ilovezfs | |
| 2017-12-21 | Revert "shims/scm/git: Fix the search for brewed git" | ilovezfs | |
| 2017-12-21 | Merge pull request #3589 from sjackman/shims-scm | Mike McQuaid | |
| shims/scm/git: Fix the search for brewed git | |||
| 2017-12-21 | Merge pull request #3592 from sjackman/development-tools-installed | Mike McQuaid | |
| DevelopmentTools.installed?: Use locate | |||
| 2017-12-20 | DevelopmentTools.installed?: Use locate | Shaun Jackman | |
| Use locate rather than which to search for clang or gcc. locate searches both $HOMEBREW_PREFIX/bin and /usr/bin. | |||
| 2017-12-20 | shims/scm/git: Fix the search for brewed git | Shaun Jackman | |
| Search for brewed git in both locations: $HOMEBREW_PREFIX/Homebrew/Library/Homebrew/shims/scm/../../../../../bin/git $HOMEBREW_PREFIX/Library/Homebrew/shims/scm/../../../../bin/git | |||
| 2017-12-20 | brew.sh: Use shims/scm/git for HOMEBREW_VERSION | Shaun Jackman | |
| Move the use of git to determine HOMEBREW_VERSION below the definition of the function git. | |||
| 2017-12-19 | Added info about no_proxy to docs | Ivars Berzinsh | |
| 2017-12-16 | Merge pull request #3401 from DomT4/vendor_or_na1.4.1 | Mike McQuaid | |
| go: various tweaks to recommendations | |||
| 2017-12-16 | Merge pull request #3564 from commitay/revert-https-audit | Vítor Galvão | |
| Partially revert "Add audit check for URL schema" | |||
| 2017-12-15 | Merge pull request #3581 from MikeMcQuaid/post_install_homebrew_path | ilovezfs | |
| post_install: use HOMEBREW_PATH. | |||
| 2017-12-15 | post_install: use HOMEBREW_PATH. | Mike McQuaid | |
| Do this instead of appending the `HOMEBREW_PREFIX` as it's more reliable at finding e.g. keg-only and requirement PATH additions. It's not ideal as it overrides some environment filtering but the only real alternative is recreate the entire build environment by shelling out to `build.rb` in `formula_installer`. | |||
| 2017-12-15 | Merge pull request #3578 from MikeMcQuaid/tests-no-duplicate-seed-output | Mike McQuaid | |
| tests: don't output seed multiple times. | |||
| 2017-12-15 | tests: don't output seed multiple times. | Mike McQuaid | |
| This clutters up the output. Instead, hide it with a RSpec formatter and generate and output it ourselves. | |||
| 2017-12-14 | java_requirement: use popen_read :err option. | Mike McQuaid | |
| 2017-12-14 | bump-formula-pr: use popen_read :err option. | Mike McQuaid | |
| 2017-12-14 | gist-logs: use full path to brew. | Mike McQuaid | |
| This fixes the command with environment filtering enabled. | |||
| 2017-12-14 | Merge pull request #3577 from MikeMcQuaid/python_requirement_tweaks | Mike McQuaid | |
| python_requirement: various tweaks/fixes. | |||
| 2017-12-14 | python_requirement: various tweaks/fixes. | Mike McQuaid | |
| - simplify the code by avoiding some unnecessary variables and rename functions - make more stuff private so implementation details don't leak - make Python 2 binary `python2.7` to handle cases like those in https://github.com/Homebrew/homebrew-core/issues/21500 - only set `PYTHONPATH` for system Python; Homebrew's Python doesn't need it. | |||
| 2017-12-14 | postinstall: add HOMEBREW_PREFIX/{,s}bin to PATH. | Mike McQuaid | |
| This avoids the need for workarounds such as: https://github.com/Homebrew/homebrew-core/pull/21688 | |||
| 2017-12-13 | Merge pull request #3566 from sjackman/path | Mike McQuaid | |
| Do not specify absolute paths to utilities | |||
| 2017-12-13 | Merge pull request #3573 from DomT4/python_dead_code | Mike McQuaid | |
| python: remove package_available? logic | |||
| 2017-12-13 | python: remove package_available? logic | Dominyk Tiller | |
| It was added in https://github.com/Homebrew/legacy-homebrew/pull/37345 for a use case discussed in https://github.com/Homebrew/legacy-homebrew/pull/37340 that never seems to have actually emerged. I can find no reference of it ever having been used, despite it existing for 2+ years here. | |||
| 2017-12-13 | python: handle env filtering on pth check | Dominyk Tiller | |
| Since ENV filtering became the default this has been chucking erroneous warnings from both `brew doctor` and things like `brew install pygobject` about needing to run: ``` echo 'import site; site.addsitedir("/usr/local/lib/python2.7/site-packages")' >> /Users/xyz/Library/Python/2.7/lib/python/site-packages/homebrew.pth ``` even though I had Homebrew's `python` installed. | |||
| 2017-12-12 | Remove with_system_path | Shaun Jackman | |
| The method with_system_path is no longer needed, since environment filtering uses a default PATH. | |||
| 2017-12-12 | Do not specify absolute paths to utilities | Shaun Jackman | |
| Specifying an absolute path to utilities is no longer needed, since environment filtering uses a default PATH. | |||
| 2017-12-12 | Partially revert "Add audit check for URL schema" | commitay | |
| 2017-12-11 | Fix messed up parenthesis. | Markus Reiter | |
| 2017-12-11 | Merge pull request #3559 from MikeMcQuaid/git-describe-1.4.01.4.0 | Mike McQuaid | |
| brew.sh: latest HOMEBREW_VERSION is 1.4.0 | |||
| 2017-12-11 | brew.sh: latest HOMEBREW_VERSION is 1.4.0 | Mike McQuaid | |
| 2017-12-11 | doctor: tell people not to file issues. | Mike McQuaid | |
| This stuff doesn't matter. | |||
| 2017-12-11 | Merge pull request #3553 from MikeMcQuaid/bump-formula-pr-messages | Mike McQuaid | |
| bump-formula-pr: improve error messages. | |||
| 2017-12-11 | caveats: fix fish caveats under env filtering | Dominyk Tiller | |
| 2017-12-11 | bump-formula-pr: improve error messages. | Mike McQuaid | |
| - Be clearer about how URLs/tags/revisions/versions are specified in error messages. - Give a better error message if `hub` isn't configured. | |||
| 2017-12-11 | Merge pull request #3551 from laurent22/master | Mike McQuaid | |
| Mentions how hub needs to be configured | |||
| 2017-12-11 | caveats: fix PKG_CONFIG_PATH nudge under env filtering | Dominyk Tiller | |
| 2017-12-10 | Merge pull request #3543 from MikeMcQuaid/remove-env-unsets | Mike McQuaid | |
| Remove some unset/checked environment checks | |||
| 2017-12-10 | Merge pull request #3529 from MikeMcQuaid/env-filtering-default | Mike McQuaid | |
| Default environment filtering to on for all users. | |||
| 2017-12-10 | Merge pull request #3510 from MikeMcQuaid/remove-bottle-hooks | Mike McQuaid | |
| hooks/bottles: remove bottle hooks. | |||
| 2017-12-10 | Merge pull request #3542 from MikeMcQuaid/xcode-9.2 | Mike McQuaid | |
| Xcode 9.2 | |||
