aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew
AgeCommit message (Collapse)Author
2017-01-23Fix installer deleting artifacts if they already exist.Markus Reiter
2017-01-23Remove legacy cask cache instead of migrating.Markus Reiter
2017-01-23Delete with_environment from cask tests.Markus Reiter
2017-01-23tests: slightly stricter match in tab testMarkus Reiter
Suggested by @reitermarkus in https://github.com/Homebrew/brew/pull/1890#discussion_r97234536, and then I added the \A and \Z.
2017-01-23Change regex to catch multi-line `pubDate` tags.Markus Reiter
2017-01-23Add internal command to calculate appcast checkpoint.Markus Reiter
2017-01-23Merge pull request #1895 from xu-cheng/bottleMike McQuaid
bottle: fix regex
2017-01-22Fix "Failed to eject" errors with DMGsTrevor Powell
Use "diskutil unmount force" to unmount DMGs.
2017-01-23cask - internal_stanza: arguments to argsVítor Galvão
2017-01-22tests: remove with_git_env methodAlyssa Ross
A common git environment is now used in all tests, so this is no longer required.
2017-01-22tests: use more recent git committer dateAlyssa Ross
This will allow the `brew bundle` test to use the default git environment.
2017-01-22tests: remove unnecessary commentAlyssa Ross
See https://github.com/Homebrew/brew/pull/1890#discussion_r97229473.
2017-01-22tests: re-use with_environment in using_git_envMarkus Reiter
Proposed by @reitermarkus in https://github.com/Homebrew/brew/pull/1890#discussion_r97210285. I made one slight adjustment of preserving the previous date string in case anything was relying on it.
2017-01-22tests: remove remainder of ARGV stubsAlyssa Ross
I was waiting for confirmation that there wasn't a good reason for these to be stubbed before I removed them.
2017-01-22tests: set verbose in ENV instead of stubbing ARGVAlyssa Ross
2017-01-22tests: set developer in ENV rather than stubbingAlyssa Ross
2017-01-22tests: automatically restore ENV in teardownAlyssa Ross
2017-01-22tests: extract a common using_git_env methodAlyssa Ross
2017-01-22bottle: fix regexXu Cheng
Noted that this is intended for the revision of this formula instead of rebuild of a bottle.
2017-01-22tests: remove more per-test file system cleanupAlyssa Ross
These locations are now all automatically cleaned up after every test.
2017-01-22tests: remove explicit tmpdir deletionsAlyssa Ross
These are no longer necessary.
2017-01-22tests: clean up file system for all testsAlyssa Ross
(No longer just integration tests.)
2017-01-21tests: reset ARGV in teardownAlyssa Ross
2017-01-21tests: clear tab cache in global teardownAlyssa Ross
2017-01-21tests: enforce `super` in lifecycle hooksAlyssa Ross
This will allow us to have global setup and teardown for tests. For example, we can automatically clear caches after each test, to avoid annoying intermittent failures like #1879 and #1886.
2017-01-20audit: exempt wine's deps from the universal deprecationilovezfs
This can be reverted when wine's dependencies are all vendored.
2017-01-19keg: use Forwardable to methods delegated to #pathAlyssa Ross
2017-01-19keg: don't conditionally switch alias targetAlyssa Ross
This seems to be a remnant of Ruby 1.8.
2017-01-19tests: revert modification to ARGV at end of testAlyssa Ross
Similar to 6fc1747e0550545b4fe80f5a1854d16dd2b08afe. I hadn't seen any test failures caused by this, but I noticed it in the process of trackign that down and it's an accident waiting to happen.
2017-01-19tests: add a missing Tab cache clearAlyssa Ross
This was responsible for the sporadic failures I encountered in #1878.
2017-01-18Add --fix option to brew audit commandGautham Goli
2017-01-18formula_installer: use attr_accessor for installed_*Mike McQuaid
2017-01-18upgrade: temporarily comment out for fix.Mike McQuaid
2017-01-18upgrade: tab installed_{as_dependency,on_request}Mike McQuaid
2017-01-18install: set installed_{as_dependency,on_request}.Mike McQuaid
2017-01-18formula_installer: use installed_* variables.Mike McQuaid
Also, report formulae installed on request. This is useful in differentiating between those formulae that are popular because they are widely requested and those that are popular because they are widely depended on.
2017-01-18formula: installed_{as_dependency,on_request} hashMike McQuaid
Which, in turn, provides them for `brew info --json=v1` so other tools such as e.g. `brew bundle` can make use of this information.
2017-01-18tab: store installed_{as_dependency,on_request}.Mike McQuaid
These are used to determine whether or not a formula’s install was specifically requested by a user and/or pulled in as a dependency.
2017-01-18Add custom cop to refactor revision to rebuild in bottle blockGautham Goli
2017-01-18integration_command_test_case: improve fail outputMike McQuaid
Instead of `puts`ing when the failure occurs save it until the error message and print a prose description of what the failure was and the output from the command. This makes the output from failing tests significantly easier to read.
2017-01-18Merge pull request #1868 from zmwangx/bottle-add-improve-regexpMike McQuaid
bottle: add: improve regexp to recognize comments
2017-01-17Merge pull request #1869 from MikeMcQuaid/versioned_formula_conflicts_fixMike McQuaid
audit: only warn on versioned conflicts_with.
2017-01-17Merge pull request #1863 from alyssais/uses_ignore_untappedMike McQuaid
uses: properly handle untapped formulae in recursive dependency expansion (again!)
2017-01-17Merge pull request #1862 from alyssais/uses_include_optionalMike McQuaid
uses: fix recursive requirement resolution
2017-01-17rubocop_todo: bump max module length to 400Zhiming Wang
2017-01-17audit: only warn on versioned conflicts_with.Mike McQuaid
Rather than all versioned formulae regardless. Oops.
2017-01-17bottle: add: improve regexp to recognize commentsZhiming Wang
This would have eliminated the need for Homebrew/homebrew-core#9000, for instance.
2017-01-17Merge pull request #1851 from MikeMcQuaid/keg-only-versionMike McQuaid
Add `keg_only :versioned_formula`.
2017-01-17suite_test: skip flaky test.Mike McQuaid
2017-01-17Add `keg_only :versioned_formula`.Mike McQuaid
This is used to indicate a formula is a version of another formula. This will be used to provide a consistent interface for older formulae versions and replaces the use of `conflicts_with`.