aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2017-10-03Merge pull request #3220 from yzguy/yzguy/cask_available_languages_to_infoMarkus Reiter
add available languages to cask info command
2017-10-03Remove `UnderscoreSupportingURI`.Markus Reiter
2017-10-02stylistic changes for cask info testsAdam Smith
2017-10-02Merge pull request #3255 from reitermarkus/summarizeMarkus Reiter
Add missing `summarize` method.
2017-10-02Merge pull request #3247 from reitermarkus/fix-trashMarkus Reiter
Fix `brew tests` leaving last file in trash.
2017-10-02Unshadow `allow_untrusted` option for pkg artifactClaudia
The pkg stanza has an option called `allow_untrusted`, which is supposed to cause `/usr/sbin/installer` to be called with the `-allowUntrusted` switch. PR #3141 seems to have renamed the `pkg_install_opts` field to `options`. At the same time, it introduces an `options` parameter for the `run_installer` method, which shadows the `options` getter method, causing the `allow_untrusted` option to be silently ignored. The issue affects just the `pkg` stanza because `Hbc::Artifact::Pkg` is the only artifact class that has an `options` method. This commit removes the shadowing by renaming the field to `stanza_options`; in one case, it uses `_options` for a parameter name (instead of the more canonical `_`) for the sake of clarity.
2017-10-02Merge pull request #3257 from sjackman/text-filesMike McQuaid
text_files: Skip the formula in .brew/formula.rb
2017-10-01text_files: Skip the formula in .brew/formula.rbShaun Jackman
2017-10-01Add missing `summarize` method.Markus Reiter
2017-10-01Merge pull request #3248 from reitermarkus/audit-warningMarkus Reiter
Add audit warning if previous Cask version cannot be read.
2017-10-01Only run trash test when collecting coverage.Markus Reiter
2017-10-01Fix `brew tests` leaving last file in trash.Markus Reiter
2017-10-01Merge pull request #3254 from MikeMcQuaid/travis-no-clone-coreMike McQuaid
travis.yml: avoid cloning Homebrew/homebrew-core.
2017-10-01travis.yml: avoid cloning Homebrew/homebrew-core.Mike McQuaid
Rearrange the test-bot clones so that the Homebrew/homebrew-core move can be successful to avoid the later clone.
2017-10-01diagnostic: remove unnecessary blank line.Mike McQuaid
2017-10-01Merge pull request #3252 from MikeMcQuaid/no-export-default-makeilovezfs
shims/super/make: don't export MAKE=make.
2017-10-01shims/super/make: don't export MAKE=make.Mike McQuaid
This is redundant and breaks Handbrake: https://github.com/HandBrake/HandBrake/issues/872
2017-09-30Merge pull request #3250 from sjackman/pour-bottleilovezfs
pour_bottle?: Check bottle.compatible_cellar?
2017-09-30pour_bottle?: Check bottle.compatible_cellar?Shaun Jackman
formula.bottled? is false when the bottle has no sha256, as with a local bottle.
2017-09-30add available languages to cask info commandAdam Smith
add language tests for dsl add fixtures, tests for languages info output add extra lines
2017-10-01Add audit warning if previous Cask version cannot be read.Markus Reiter
2017-09-30Merge pull request #3243 from reitermarkus/PATHMarkus Reiter
Use `PATH` where possible.
2017-09-29Use `PATH` where possible.Markus Reiter
2017-09-29Merge pull request #3240 from MikeMcQuaid/update-handle-ruby-changesMike McQuaid
brew: handle Ruby 2.3 more gracefully.
2017-09-29brew: handle Ruby 2.3 more gracefully.Mike McQuaid
- `brew.rb` needed updated to fail unless on Ruby 2.3 - `brew update` should unset `HOMEBREW_RUBY_PATH` to ensure that this doesn't "stick" on a Ruby 2.0 version after a portable Ruby has been installed.
2017-09-29Merge pull request #3241 from MikeMcQuaid/travis-xcodeMike McQuaid
travis.yml: update Xcode version.
2017-09-29Merge pull request #3234 from reitermarkus/localeVítor Galvão
Support UN M.49 region codes.
2017-09-29Merge pull request #3236 from MikeMcQuaid/audit-official-taps-shadowMike McQuaid
audit: don't care about shadowing official taps.
2017-09-29travis.yml: update Xcode version.Mike McQuaid
2017-09-29audit: don't care about shadowing official taps.Mike McQuaid
We're trying to import all of these formulae anyway.
2017-09-29Merge pull request #3176 from sjackman/bottle-formulaMike McQuaid
BottleLoader: Use the formula stored in the bottle
2017-09-29Merge pull request #3230 from maxim-belkin/stop-earlyMike McQuaid
install.rb: stop early when there are no formulae to be installed
2017-09-29Merge pull request #3195 from reitermarkus/fix-language_evalMarkus Reiter
Fail if no default language is specified.
2017-09-29Merge pull request #3221 from yzguy/asmith/cask-language-manpageMarkus Reiter
add --language to brew-cask manpage
2017-09-29Fail if no default language is specified.Markus Reiter
2017-09-29Support UN M.49 region codes.Markus Reiter
2017-09-28add --language to brew-cask manpageAdam Smith
2017-09-29Merge pull request #3198 from commitay/cask-java-caveatsVítor Galvão
Cask dsl caveats: bump java version to 9
2017-09-28FormulaInstaller: Warn when tap version is newerShaun Jackman
Warn if a more recent version of this formula is available in the tap.
2017-09-28Fix installing a local bottle from sourceShaun Jackman
Factor Utils::Bottles.formula_contents out of BottleLoader.
2017-09-28BottleLoader: Use the formula stored in the bottleShaun Jackman
2017-09-28testball_bottle-0.1: Add the formula to the bottleShaun Jackman
Update the SHA-256.
2017-09-28pour_bottle?: Fix when formula.bottle is nilShaun Jackman
formula.bottle is nil when bottle.compatible_cellar? is false. Use formula.bottle_specification.compatible_cellar? rather than formula.bottle.compatible_cellar?.
2017-09-28install.rb: stop early if there are no formulae to be installedMaxim Belkin
2017-09-28Fix regex styleMike McQuaid
2017-09-27Merge branch 'master' into check-for-master-no-refactorBen Muschol
2017-09-27Implement changesBen Muschol
2017-09-27receipt_path: Ensure the bottle contains INSTALL_RECEIPT.jsonShaun Jackman
2017-09-27Cask dsl caveats: bump java version to 9commitay
2017-09-27Merge pull request #3225 from Homebrew/revert-3079-os_kegilovezfs
Revert "Added tests for os/mac/keg"