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. Jan 15, 2016
  2. Jan 14, 2016
  3. Jan 13, 2016
  4. Jan 12, 2016
    • Baptiste Fontaine's avatar
      agedu: import from head-only · e75e717e
      Baptiste Fontaine authored
      
      Closes Homebrew/homebrew#47967.
      
      Signed-off-by: default avatarBaptiste Fontaine <batifon@yahoo.fr>
      e75e717e
    • ilovezfs's avatar
      Fix built_as_bottle in Formula's to_hash · 07e849e7
      ilovezfs authored
      
      This was caused by a "race" between two commits.
      bash-3.2$ git log -n1 --format=%ai 3344229
      2012-08-15 22:08:40 -0500
      bash-3.2$ git log -n1 --format=%ci 3344229
      2012-09-17 20:01:37 -0500
      bash-3.2$ git log -n1 --format=%ai 8837423
      2012-08-25 11:31:57 -0700
      bash-3.2$ git log -n1 --format=%ci 8837423
      2012-08-25 11:52:37 -0700
      
      "built_bottle" was renamed "built_as_bottle" in 8837423 after the date
      3344229 was authored but before the date it was committed to master, and
      unfortunately in the interim 3344229 hadn't been updated to reflect the
      name change.
      
      This commit changes the Formula class's to_hash method to use
      tab.built_as_bottle not tab.built_bottle, which doesn't exist. At this
      time, there is no way that to_hash could have known that
      tab.built_bottle is bogus. Perhaps this could be made safer in the
      future, so that non-existent methods cause an error here rather than
      just silently returning null.
      
      Closes Homebrew/homebrew#47912
      
      Closes Homebrew/homebrew#47916.
      
      Signed-off-by: default avatarXu Cheng <xucheng@me.com>
      07e849e7
    • Misty De Meo's avatar
      superenv: filter flags for older GCCs · 256aea18
      Misty De Meo authored
      Fixes mistydemeo/tigerbrew#371.
      Fixes Homebrew/homebrew#47949.
      256aea18
  5. Jan 11, 2016
  6. Jan 10, 2016
    • Martin Afanasjew's avatar
      formula_installer: fix --default-fortran-flags · 08fb3625
      Martin Afanasjew authored
      Setting the `FC` environment variable allows the user to override the
      default Fortran compiler. The `SharedEnvExtension#fortran` method then
      checks whether any of `FCFLAGS` and `FFLAGS` environment variables are
      set and, if not, suggests to use `--default-fortran-flags` when running
      `brew install`. However, `--default-fortran-flags` never makes it to
      `build.rb` (that is executed by `FormulaInstaller`) because the flag is
      not whitelisted in `FormulaInstaller#sanitized_ARGV_options`.
      
      This change rectifies this and thereby eliminates the confusing message.
      
      Fixes Homebrew/homebrew#47852.
      08fb3625
    • Martin Afanasjew's avatar
      doctor: simplify handling of slow checks · bcedfe64
      Martin Afanasjew authored
      
      Some (rather slow) checks should run after all other checks. Make that
      more obvious by removing them from the sorted list of all checks and
      then re-appending them to the resulting list. (Should be slightly more
      efficient than the `<array>.reverse.uniq.reverse` incantation, though
      that hardly matters given the cumulated run time of all the checks.)
      
      Slightly extend the list after verifying what the slowest checks are for
      various Homebrew installations (slowest check last).
      
      Closes Homebrew/homebrew#47753.
      
      Signed-off-by: default avatarMartin Afanasjew <martin@afanasjew.de>
      bcedfe64
  7. Jan 09, 2016
  8. Jan 08, 2016
  9. Jan 07, 2016
Loading