Skip to content
Snippets Groups Projects
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 .
  1. May 30, 2017
  2. May 29, 2017
  3. May 27, 2017
    • Mike McQuaid's avatar
      Improve some `brew install` messaging. · ef59a751
      Mike McQuaid authored
      Improve the messaging around `brew install` when there's a possible user
      action such as an `upgrade` or `link` and don't tell people to
      `install --force` when it's unnecessary.
      
      While I did this, tweak the output and function usage in a couple of
      related places.
      
      Some example output before this change:
      ```
      Warning: openssl is a keg-only and another version is linked to opt.
      Use `brew install --force` if you want to install this version
      Warning: mysql@5.6 is a keg-only and another version is linked to opt.
      Use `brew install --force` if you want to install this version
      Warning: analog-6.0_1 already installed
      Warning: bash-completion@2-2.5 already installed, it's just not linked.
      ```
      
      Some example output after this change:
      ```
      Error: openssl 1.0.2k is already installed
      To upgrade to 1.0.2l, run `brew upgrade openssl`
      Warning: mysql@5.6 5.6.36_1 is already installed
      Warning: analog 6.0_1 is already installed
      Warning: bash-completion@2 2.5 is already installed, it's just not linked.
      You can use `brew link bash-completion@2` to link this version.
      ```
      ef59a751
  4. May 24, 2017
  5. May 22, 2017
  6. May 16, 2017
  7. May 15, 2017
  8. May 08, 2017
  9. May 07, 2017
    • Mike McQuaid's avatar
      Vendor all Homebrew's gems. · ee253e46
      Mike McQuaid authored
      Homebrew's actually ended up using a fair few gems. While we want to
      avoid Bundler at runtime (and this PR still does that, in fact uses
      Bundler even less at runtime than it did before) writing our own version
      to use at build-time seems redundant.
      ee253e46
  10. May 03, 2017
  11. May 01, 2017
  12. Apr 25, 2017
  13. Apr 24, 2017
    • Mike McQuaid's avatar
      search: use single HTTP call for tap searches. · b3c69aba
      Mike McQuaid authored
      Use GitHub's code search API to search using the filename based on the
      search query. This means we only need a single HTTP call and no more
      multithreading madness. This also means we're able to search everything
      in the Homebrew and Caskroom organisation by default without having to
      maintain a list of things to search (and not) in here.
      b3c69aba
  14. Apr 22, 2017
    • Mike McQuaid's avatar
      More deprecations. · ba3c46d2
      Mike McQuaid authored
      Deprecate more methods. Internal APIs have been verified to be unused
      elsewhere and removed. External APIs have had deprecation methods added.
      Existing deprecations have been either upgraded to produce warnings or
      no longer deprecated and the reasoning documented.
      ba3c46d2
  15. Apr 20, 2017
  16. Apr 18, 2017
  17. Apr 17, 2017
  18. Apr 16, 2017
  19. Apr 10, 2017
  20. Apr 04, 2017
  21. Apr 03, 2017
  22. Apr 02, 2017
    • Mike McQuaid's avatar
      Document all short flags. · 566d3cb5
      Mike McQuaid authored
      566d3cb5
    • Eugene Nikolsky's avatar
      Fix the 'export PATH' message in `link` for a keg-only formula · edd9a971
      Eugene Nikolsky authored
      Commit 4cae6a72 introduced the message,
      but it printed the wrong path, e.g. for `brew link sqlite`:
      
      ```
      If you need to have this software first in your PATH instead consider running:
        echo 'export PATH="/usr/local/opt/sqlite:$PATH"' >> ~/.zshrc/bin
      ```
      
      where `/bin` is appended at the end, but should be inserted before
      `:$PATH`: `echo 'export PATH="/usr/local/opt/sqlite/bin:$PATH"' >> ~/.zshrc`.
      This patch fixes that and updates a test to verify it.
      edd9a971
  23. Mar 31, 2017
Loading