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. Apr 09, 2015
    • Tim D. Smith's avatar
      Keep Homebrew site-packages in sys.path during brew test · a5e1f698
      Tim D. Smith authored
      Formulas that build python things and which are tested with system
      Python will encounter test failures unless system Python is configured
      to add Homebrew's site-packages to sys.path. This change makes sure that
      configuration is performed in the test environment.
      
      Both lines are needed; the first reads and processes .pth files and the
      second makes sure that Homebrew's site-packages is read before the
      system extras, so that formulas depending on Homebrew/python/numpy get
      the Homebrew/python version and not the old system version.
      
      Closes Homebrew/homebrew#38466.
      a5e1f698
    • Xu Cheng's avatar
      Use UNIXSocket to pass file descriptor · f5c8e3fd
      Xu Cheng authored
      
      This is a more standard way to pass fd in UNIX world.
      At the same time, it helps to remove a few hacks and
      simplifies the code in the sandbox.
      
      Closes Homebrew/homebrew#38434.
      
      Signed-off-by: default avatarXu Cheng <xucheng@me.com>
      f5c8e3fd
    • Xu Cheng's avatar
      uninstall: display file size · cd00abab
      Xu Cheng authored
      
      Closes Homebrew/homebrew#38475.
      
      Signed-off-by: default avatarXu Cheng <xucheng@me.com>
      cd00abab
    • Geoff Nixon's avatar
      figtoipe: move to head-only. · 8d94fff1
      Geoff Nixon authored
      
      Closes Homebrew/homebrew#37059.
      
      Signed-off-by: default avatarMike McQuaid <mike@mikemcquaid.com>
      8d94fff1
    • Geoff Nixon's avatar
      dromeaudio: move to head-only. · 68897092
      Geoff Nixon authored
      
      Closes Homebrew/homebrew#37057.
      
      Signed-off-by: default avatarMike McQuaid <mike@mikemcquaid.com>
      68897092
    • Tim D. Smith's avatar
      FortranDependency: make sure gfortran ends up in PATH · c803b3d9
      Tim D. Smith authored
      Per requirements.rb:
      
          >  XXX If the satisfy block returns a Pathname, then make sure that it
          >  remains available on the PATH. This makes requirements like
          >    satisfy { which("executable") }
          >  work, even under superenv where "executable" wouldn't normally be on the
          >  PATH.
          >  This is undocumented magic and it should be removed, but we need to add
          >  a way to declare path-based requirements that work with superenv first.
      
      Fixes homebrew/homebrew-python#170.
      
      Closes Homebrew/homebrew#38448.
      c803b3d9
  2. Apr 08, 2015
  3. Apr 07, 2015
  4. Apr 06, 2015
  5. Apr 03, 2015
    • Jack Nagel's avatar
      Switch PkgVersion to use composition · 27092cab
      Jack Nagel authored
      Comparing PkgVersion and Version objects can produce nonsensical
      results. For example, equality is not symmetric:
      
      irb(main):002:0> PkgVersion.new("1.0", 0) == Version.new("1.0")
      => false
      irb(main):003:0> Version.new("1.0") == PkgVersion.new("1.0", 0)
      => true
      
      Rather than attempt to deal with subclass-superclass equality, let's use
      composition and punt on the problem altogether.
      27092cab
  6. Apr 02, 2015
  7. Apr 01, 2015
  8. Mar 31, 2015
  9. Mar 30, 2015
  10. Mar 29, 2015
  11. Mar 28, 2015
Loading