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. Jun 19, 2012
  2. Jun 18, 2012
  3. Jun 17, 2012
  4. Jun 16, 2012
  5. Jun 15, 2012
  6. Jun 14, 2012
    • Adam Vandenberg's avatar
      Allow --get for non-interactive builds. · 34e51fb1
      Adam Vandenberg authored
      This is useful for doing a --debug build, as the git repo will pick up any
      changes that have been made up to that point in the build process.
      
      --git is still most useful in conjunction with --interactive, though.
      34e51fb1
  7. Jun 13, 2012
  8. Jun 12, 2012
  9. Jun 11, 2012
  10. Jun 08, 2012
  11. Jun 06, 2012
  12. Jun 04, 2012
  13. Jun 03, 2012
  14. Jun 01, 2012
    • Misty De Meo's avatar
      Replace /usr/bin/ruby with full Framework path · 7af4622b
      Misty De Meo authored
      
      Rationale: some users insist on replacing the /usr/bin/ruby symlink
      to point to another ruby on their system, which may break homebrew.
      Use the full Framework path instead, which is less likely to be tampered with.
      
      This also reorganizes the brew --config checks to reflect the different path.
      
      Fixes Homebrew/homebrew#12009.
      
      Closes Homebrew/homebrew#12333.
      
      Signed-off-by: default avatarMisty De Meo <mistydemeo@gmail.com>
      7af4622b
  15. May 31, 2012
  16. May 27, 2012
  17. May 24, 2012
    • Jack Nagel's avatar
      Set close-on-exec on the error pipe · d9fe48cf
      Jack Nagel authored
      
      We use a pipe to marshal exceptions from the build script back to the
      main Homebrew process; the associated file descriptor is stored in an
      environment variable so that the script can figure out which descriptor
      to use after being exec'd.
      
      However, any child processes of the build script inherit this
      descriptor (i.e. anything spawned via "system" by the formula during
      installation). Normally this is not an issue, but if a formula executes
      a long-running process such as a daemon, the main Homebrew process will
      never see EOF on the error pipe because the daemon still has an open
      descriptor.
      
      We can fix this while preserving current behavior by setting the
      close-on-exec flag on the build script's error pipe descriptor.
      
      Signed-off-by: default avatarJack Nagel <jacknagel@gmail.com>
      d9fe48cf
  18. May 23, 2012
Loading