aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew
AgeCommit message (Collapse)Author
2017-03-31cask: remove pre_bug_report linksVĂ­tor GalvĂŁo
2017-03-31Remove osmium from blacklisted formulasIlya Zverev
2017-03-31Merge pull request #2397 from MikeMcQuaid/migrate-tweaksMike McQuaid
Migrator: various rename fixes
2017-03-31migrator: don't uninstall new_cellar if it existedMike McQuaid
Otherwise we could end up removing files unnecessarily.
2017-03-31migrator: check if taps are from same user insteadMike McQuaid
This avoids needing to use `force: true` and still let's Homebrew do what we want with our own taps.
2017-03-31Merge pull request #2403 from carlorosati/rubyreq.hbMike McQuaid
ruby_requirement: fix path prepend
2017-03-31migrator: relink linked new_cellar kegs.Mike McQuaid
2017-03-31upgrade: perform rename migrations when needed.Mike McQuaid
2017-03-31reinstall: perform rename migrations when needed.Mike McQuaid
2017-03-31install: perform rename migrations when needed.Mike McQuaid
2017-03-31update-report: more forceful rename migration.Mike McQuaid
Migrate between different taps and delete relevant subdirectories if they can be safely. Also, tweak some naming and use utility methods.
2017-03-31migrator: make headers more consistent.Mike McQuaid
Use `oh1` for moving kegs to a new directory.
2017-03-31migrator: move around some migration logic.Mike McQuaid
Move the checks for moving kegs to a new directory into the relevant method (`move_to_new_directory`) instead. Also, delete duplicated directories when we’ve confirmed they are definitely duplicated rather than telling users to do so.
2017-03-31migrator: add more helper methods.Mike McQuaid
Add methods to determine if a migration is needed and perform it if so (and no-op if not). Additionally, make `ARGV.force?` get passed as a parameter so it can be overridden without requiring users to pass `—force`.
2017-03-31Merge pull request #2374 from joshka/cleanup-command-continue-on-errorMike McQuaid
Cleanup: Continue on error removing keg
2017-03-31Brew cleanup: Continue on error removing kegJoshua McKinney
Fixes #2355 Create unremovable_kegs instance var Check cellar cleanup failure after full cleanup completes Use module_function in Homebrew::Cleanup as we never instantiate the class
2017-03-30Merge pull request #2422 from ↵Mike McQuaid
MikeMcQuaid/formula-missing-dependencies-handle-unavailable-formula formula: handle missing deps when formula missing.
2017-03-30Merge pull request #2421 from MikeMcQuaid/formula-check-alias-existsMike McQuaid
formula: check installed_alias_path exists.
2017-03-30Merge pull request #2419 from MikeMcQuaid/fix-tap-cask-migrationMike McQuaid
Fix handling of tap migrations to new cask names.
2017-03-30Merge pull request #2401 from wjlroe/print-pinned-on-outdatedMike McQuaid
Include the pinned version in brew outdated output for pinned formulae
2017-03-30Merge pull request #2414 from sjackman/update-test-fetch-shallowMike McQuaid
update-test: Use git fetch --tags --depth=1
2017-03-30Merge pull request #2418 from MikeMcQuaid/formula-installer-another-testMike McQuaid
formula_installer_spec: add default formula test.
2017-03-30formula: check installed_alias_path exists.Mike McQuaid
Otherwise return `nil`. Fixes https://github.com/Homebrew/brew/issues/2417
2017-03-30Fix handling of tap migrations to new cask names.Mike McQuaid
Need to check for two `/`s rather than one.
2017-03-30Merge pull request #2399 from MikeMcQuaid/unversioned-formulae-checkMike McQuaid
audit: check for unversioned formulae.
2017-03-30Merge pull request #2392 from MikeMcQuaid/cleanup-tapsMike McQuaid
Update all references to taps.
2017-03-30formula: handle missing deps when formula missing.Mike McQuaid
We could try and get a partial result but given it'll also be wrong it feels simpler to just return an empty array. Fixes #1928. Fixes #2027. Closes #2058. Fixes https://github.com/Homebrew/homebrew-core/issues/11827.
2017-03-30Merge pull request #2410 from reitermarkus/container-exectuableVĂ­tor GalvĂŁo
Add `Container::Executable`.
2017-03-29audit: Fix cctools invocation check regular expression.William Woodruff
Additionally, ignore the cctools formula itself, since it obviously needs to check cctools invocations.
2017-03-29formula_installer_spec: add default formula test.Mike McQuaid
Test the situation where a requirement is satisfied by a non-formula but the `default_formula` is also installed.
2017-03-28Merge pull request #1828 from woodruffw/audit-cctoolsWilliam Woodruff
audit: Check for invocations of cctools.
2017-03-28diagnostic: also accept trailing / on git urls.Mike McQuaid
2017-03-28Merge pull request #2413 from JCount/increase-minimum-git-versionMike McQuaid
diagnostic: increase minimum git version to 1.8.5
2017-03-28Merge pull request #2398 from MikeMcQuaid/doctor-check-homebrew-coreMike McQuaid
diagnostic: check homebrew/core git remote.
2017-03-28update-test: Use git fetch --tags --depth=1Shaun Jackman
Use git fetch --tags --depth=1 to fetch fewer commits.
2017-03-28diagnostic: increase minimum git version to 1.8.5JCount
older versions do not support the 'git -C <path>' option
2017-03-28update latest versions of Xcode for 10.11 & 10.12EricFromCanada
2017-03-28update suggested Xcode/CLT download URLsEricFromCanada
2017-03-28update-test: improve error handling.Mike McQuaid
Fail if the start or end commit are missing and retry finding the previous tag by fetching all tags if they are missing. This should fix CI on the current Homebrew/brew `master` branch. Closes #2404.
2017-03-28Add `Container::Executable`.Markus Reiter
2017-03-27ruby_requirement: fix path prependCarlo Rosati
2017-03-27Add pinned version to outdated json outputWilliam Roe
The structure should be consistent, so there are always pinned and pinned_version fields even if there are no pinned versions for a given formula.
2017-03-27Add pinned version to outdated outputWilliam Roe
2017-03-27Add test for verbose brew outdated outputWilliam Roe
Split the tests up into quiet and verbose output with contexts.
2017-03-27Installer#reinstall instead of #install :reinstallJoshua McKinney
Call an explicit method on Installer to reinstall rather than using a flag to indicate when we're reinstalling a cask
2017-03-26audit: bump whitelisted elm-format version to 0.6.0-alphailovezfs
2017-03-26audit: check for unversioned formulae.Mike McQuaid
If we're adding a versioned formulae we want to ensure that there's also an unversioned one too.
2017-03-26diagnostic: check homebrew/core git remote.Mike McQuaid
Check the remote for homebrew/core as well as homebrew/brew as we've seen a few cases (e.g. #2387) where it was misconfigured. While we're here, tweak the messaging to tell people what to do and how to do so with a single command.
2017-03-26Merge pull request #2393 from raza15/raza2Mike McQuaid
updating the exception for "kibana" for the "@" naming scheme. File changed: audit.rb
2017-03-26Update all references to taps.Mike McQuaid
- Remove taps that are (or will shortly be) deprecated. - Remove commands that are only relevant to the boneyard (which will shortly be removed).