aboutsummaryrefslogtreecommitdiffstats
path: root/Library
AgeCommit message (Collapse)Author
2017-03-12update: stop autoupdate skipping no formula taps.Mike McQuaid
This will be slightly slower if you have a bunch of non-formula (i.e. command or cask) taps but it avoids the confusion of having Homebrew saying it's updated when it only did so selectively. Fixes #1946.
2017-03-12Merge pull request #2318 from reitermarkus/remove-old-caskfilesVítor Galvão
Remove old metadata when installing with `--force`.
2017-03-11Removed Hbc::Nath Tumlin
2017-03-11Moved highlight_installed from utils.rb to search.rbNath Tumlin
2017-03-11Updated highlight_installed to use Cask.installed?Nath Tumlin
2017-03-12Migrate legacy Caskroom.Markus Reiter
2017-03-11Speed up checking if cask is installed in searchNath Tumlin
Switched from loading a cask and checking the installed? variable to checking for it in the caskroom directory like search does outside cask
2017-03-11Deprecate `#plural`.Markus Reiter
2017-03-11Add test for `Formatter::pluralize`.Markus Reiter
2017-03-11Add `Formatter::pluralize`.Markus Reiter
2017-03-11Remove old metadata when installing with `--force`.Markus Reiter
2017-03-11Merge pull request #2312 from MikeMcQuaid/hardware-dunno-nativeMike McQuaid
hardware: use march=native for generic module.
2017-03-11Merge pull request #2292 from MikeMcQuaid/fix-shallow-clone-testsMike McQuaid
test: fix tests with a shallow clone.
2017-03-11Merge pull request #2313 from vszakats/patch-2Mike McQuaid
java_requirement.rb: use HTTPS in Java Platform URL
2017-03-11Merge pull request #2315 from reitermarkus/hombrew-typoMarkus Reiter
Fix “Hombrew” typo.
2017-03-11Merge pull request #2303 from reitermarkus/fix-pkg-not-uninstalling-appsMarkus Reiter
Fix `uninstall :pkgutil` leaving empty `.app` directories.
2017-03-11Fix “Hombrew” typo.Markus Reiter
2017-03-11java_requirement.rb: use HTTPS in Java Platform URLViktor Szakats
It's redirected to cleartext, though this URL will be opened in a browser so it won't be something hidden, and maybe Oracle will fix this in the future.
2017-03-11env: make prepend_path ignore system pathsilovezfs
`ENV.prepend_path "PATH", which("emacs").dirname` in the emacs requirement was causing us to end up invoking /usr/bin/clang instead of /usr/local/Homebrew/Library/Homebrew/shims/super/clang.
2017-03-11Save flags in `with_full_permissions`.Markus Reiter
2017-03-11Fix `uninstall :pkgutil` leaving empty `.app` directories.Markus Reiter
2017-03-11hardware: use march=native for generic module.Mike McQuaid
This matches Linux where this behaviour was original imported from.
2017-03-11Merge pull request #2299 from reitermarkus/cask-refactor-artifactsMarkus Reiter
Refactor artifacts.
2017-03-11Merge pull request #2310 from rwhogg/remove-python-casksMike McQuaid
Python requirements: Remove casks
2017-03-11Merge pull request #2307 from sjackman/linux-cpu-armMike McQuaid
linux: Add ARM to CPU.type
2017-03-10Added highlighting of installed casks to cask searchNath Tumlin
2017-03-10Python requirements: Remove casksBob W. Hogg
Neither python nor python3 are available from Caskroom. Signed-off-by: Bob W. Hogg <rwhogg@linux.com>
2017-03-10linux: Add ARM to CPU.typeShaun Jackman
2017-03-10test: fix tests with a shallow clone.Mike McQuaid
In this case `HOMEBREW_VERSION` is `>1.1.0 (no git repository)` so these tests failed. This was the cause of the Homebrew/homebrew-test-bot Linux CI failures as it was testing a shallow clone.
2017-03-10Refactor artifacts.Markus Reiter
2017-03-08super/cc: Fix --cc=llvm_clang invoked as clangShaun Jackman
Fix the error: brew sh --cc=llvm_clang <<<'clang --version' Failed to execute llvm_clang --version
2017-03-08Merge pull request #2289 from reitermarkus/cask-refactor-uninstallMarkus Reiter
Refactor `pkg`, `uninstall`, and `zap` artifacts.
2017-03-08Merge pull request #2293 from reitermarkus/cask-versionMarkus Reiter
Move `brew cask --version` into separate file.
2017-03-08Merge pull request #2294 from reitermarkus/cask-chmod-binaryMarkus Reiter
Always `chmod +x` `binary` stanzas.
2017-03-08Merge pull request #2291 from MikeMcQuaid/style-rubocop-improve-errorsMike McQuaid
style: improve Rubocop error handling.
2017-03-08Always `chmod +x` `binary` stanzas.Markus Reiter
2017-03-08Move `brew cask --version` into separate file.Markus Reiter
2017-03-08Merge pull request #2290 from MikeMcQuaid/keg-resolve-rack-aliasesMike McQuaid
keg: resolve rack aliases correctly.
2017-03-08Merge pull request #2252 from zmwangx/audit-no-warn-brew-mirror-urlMike McQuaid
audit: do not warn about reachability of `brew mirror`ed URL
2017-03-08style: improve Rubocop error handling.Mike McQuaid
- Check if the JSON is definitely invalid (< 2 characters) - Output the arguments that were passed to Rubocop
2017-03-08keg: resolve rack aliases correctly.Mike McQuaid
Don't use the basename but instead use the Formulary logic for rack formula resolution. Fixes #2288.
2017-03-08Refactor Cask `pkg` artifact.Markus Reiter
2017-03-08Refactor Cask `uninstall` and `zap` stanza.Markus Reiter
2017-03-08Create FormulaCop base class to reuse helper functions in custom copsGautham Goli
2017-03-08Merge pull request #2283 from reitermarkus/cask-cli-argumenterrorMarkus Reiter
Use `ArgumentError` instead of `CaskError` in `CLI`.
2017-03-07pull: check Bintray mirror URLsZhiming Wang
2017-03-08Merge pull request #2284 from reitermarkus/cask-refactor-cliMarkus Reiter
Refactor CLI options.
2017-03-08Merge pull request #2286 from reitermarkus/redundant-utilsMarkus Reiter
Remove redundant `Utils`.
2017-03-07determine_path: Fix tests FormulaUnavailableErrorShaun Jackman
Fix the brew tests error: InstallTests#test_a_basic_install: FormulaUnavailableError: No available formula with the name "gcc" Library/Homebrew/formulary.rb:231:in `get_formula' Library/Homebrew/formulary.rb:259:in `factory' Library/Homebrew/extend/ENV/shared.rb:287:in `gcc_version_formula' Library/Homebrew/extend/ENV/super.rb:124:in `determine_path' Library/Homebrew/extend/ENV/super.rb:44:in `setup_build_environment' Library/Homebrew/build.rb:87:in `install' Library/Homebrew/build.rb:201:in `<main>'
2017-03-07Remove redundant `Utils`.Markus Reiter