This project is mirrored from https://github.com/Homebrew/brew.git.
Pull mirroring failed .
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer or owner.
Last successful update .
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer or owner.
Last successful update .
- Jun 17, 2019
-
-
dependabot-preview[bot] authored
Bumps [html-proofer](https://github.com/gjtorikian/html-proofer) from 3.10.2 to 3.11.0. - [Release notes](https://github.com/gjtorikian/html-proofer/releases) - [Commits](https://github.com/gjtorikian/html-proofer/compare/v3.10.2...v3.11.0 ) Signed-off-by:
dependabot-preview[bot] <support@dependabot.com>
-
- Jun 16, 2019
-
-
Michka Popoff authored
Correct the link to Homebrew on Linux GitHub issues
-
Issy Long authored
-
Mike McQuaid authored
Resource#fetch: verify downloads by default.
-
Mike McQuaid authored
This API is used internally correctly and externally mostly correctly but #6230 reveals the external usage is fairly confusing and a bit unsafe by default. Preserve the existing API while verifying the checksum by default and providing an opt-out. Using the existing, safe method will result in a double verification of the checksum which is harmless. A Homebrew/homebrew-core PR will follow shortly to address those cases. Fixes #6230
-
- Jun 14, 2019
-
-
Mike McQuaid authored
build: bump rspec-core from 3.8.0 to 3.8.1 in /Library/Homebrew
-
Mike McQuaid authored
build: bump parallel_tests from 2.29.0 to 2.29.1 in /Library/Homebrew
-
dependabot-preview[bot] authored
Bumps [rspec-core](https://github.com/rspec/rspec-core) from 3.8.0 to 3.8.1. - [Release notes](https://github.com/rspec/rspec-core/releases) - [Changelog](https://github.com/rspec/rspec-core/blob/master/Changelog.md) - [Commits](https://github.com/rspec/rspec-core/compare/v3.8.0...v3.8.1 ) Signed-off-by:
dependabot-preview[bot] <support@dependabot.com>
-
dependabot-preview[bot] authored
Bumps [parallel_tests](https://github.com/grosser/parallel_tests) from 2.29.0 to 2.29.1. - [Release notes](https://github.com/grosser/parallel_tests/releases) - [Commits](https://github.com/grosser/parallel_tests/compare/v2.29.0...v2.29.1 ) Signed-off-by:
dependabot-preview[bot] <support@dependabot.com>
-
Mike McQuaid authored
build: bump rspec-mocks from 3.8.0 to 3.8.1 in /Library/Homebrew
-
- Jun 13, 2019
-
-
dependabot-preview[bot] authored
Bumps [rspec-mocks](https://github.com/rspec/rspec-mocks) from 3.8.0 to 3.8.1. - [Release notes](https://github.com/rspec/rspec-mocks/releases) - [Changelog](https://github.com/rspec/rspec-mocks/blob/master/Changelog.md) - [Commits](https://github.com/rspec/rspec-mocks/compare/v3.8.0...v3.8.1 ) Signed-off-by:
dependabot-preview[bot] <support@dependabot.com>
-
Mike McQuaid authored
build: bump docile from 1.3.1 to 1.3.2 in /Library/Homebrew
-
dependabot-preview[bot] authored
Bumps [docile](https://github.com/ms-ati/docile) from 1.3.1 to 1.3.2. - [Release notes](https://github.com/ms-ati/docile/releases) - [Changelog](https://github.com/ms-ati/docile/blob/master/HISTORY.md) - [Commits](https://github.com/ms-ati/docile/compare/v1.3.1...v1.3.2 ) Signed-off-by:
dependabot-preview[bot] <support@dependabot.com>
-
- Jun 12, 2019
-
-
Mike McQuaid authored
system_config: hide HOMEBREW_BUNDLE_* env vars.
-
Mike McQuaid authored
These are being introduced in e.g. https://github.com/Homebrew/homebrew-bundle/pull/486 and we don't care about them in Homebrew bug reports.
-
Mike McQuaid authored
Add fish shell completions to brew Co-authored-by:
Alexey Alekhin <laughedelic@gmail.com>
-
Lawrence authored
-
Lawrence authored
-
- Jun 11, 2019
-
-
Mike McQuaid authored
build: bump rspec-support from 3.8.0 to 3.8.2 in /Library/Homebrew
-
Mike McQuaid authored
build: bump rspec-expectations from 3.8.3 to 3.8.4 in /Library/Homebrew
-
dependabot-preview[bot] authored
Bumps [rspec-expectations](https://github.com/rspec/rspec-expectations) from 3.8.3 to 3.8.4. - [Release notes](https://github.com/rspec/rspec-expectations/releases) - [Changelog](https://github.com/rspec/rspec-expectations/blob/master/Changelog.md) - [Commits](https://github.com/rspec/rspec-expectations/compare/v3.8.3...v3.8.4 ) Signed-off-by:
dependabot-preview[bot] <support@dependabot.com>
-
dependabot-preview[bot] authored
Bumps [rspec-support](https://github.com/rspec/rspec-support) from 3.8.0 to 3.8.2. - [Release notes](https://github.com/rspec/rspec-support/releases) - [Changelog](https://github.com/rspec/rspec-support/blob/master/Changelog.md) - [Commits](https://github.com/rspec/rspec-support/compare/v3.8.0...v3.8.2 ) Signed-off-by:
dependabot-preview[bot] <support@dependabot.com>
-
- Jun 10, 2019
-
-
Mike McQuaid authored
audit: check bind for development versions
-
Mike McQuaid authored
-
Mike McQuaid authored
-
Mike McQuaid authored
java_requirement: set cask attribute
-
Jan Viljanen authored
-
Cheng XU authored
Set `@cask` attribute for JavaRequirement, which is used by `brew info` to track cask requirement for formulae and `brew bundle dump` to sort the formulae and casks. Before: ``` $ brew info --json languagetool | jq '.[0].requirements' [ { "name": "java", "cask": null, "download": null } ] $ brew cask install adoptopenjdk; brew install languagetool $ brew bundle dump brew "languagetool" cask "adoptopenjdk" ``` After: ``` $ brew info --json languagetool | jq '.[0].requirements' [ { "name": "java", "cask": "adoptopenjdk", "download": null } ] $ brew cask install adoptopenjdk; brew install languagetool $ brew bundle dump cask "adoptopenjdk" brew "languagetool" ``` Also added relevant test cases.
-
- Jun 09, 2019
- Jun 07, 2019
-
-
Mike McQuaid authored
Add MPICH cop and test
-
Mike McQuaid authored
-
Mike McQuaid authored
Update documentation to codify MPI and BLAS/LAPACK library choices & link rubydoc
-
Izaak Beekman authored
-
Izaak Beekman authored
-
Izaak Beekman authored
- Split off from PR Homebrew/brew#6209 - Create stand alone class for cop w/ auto-correct
-
Misty De Meo authored
Bottles: allow skipping or_later tags
-
Misty De Meo authored
This is a developer-only feature, so it's gated via `HOMEBREW_DEVELOPER`. This is intended to enable testing of macOS 10.15; users building software manually to test compatibility of early betas need to be able to build software from source instead of via pouring 10.14 bottles. This isn't intended to be a general-purpose `HOMEBREW_BUILD_FROM_SOURCE` replacement, and has no effect on released versions of macOS.
-