aboutsummaryrefslogtreecommitdiffstats
path: root/Library
AgeCommit message (Collapse)Author
2013-12-01Revert "Disable bottles when HOMEBREW_CELLAR.parent != HOMEBREW_PREFIX"Jack Nagel
This reverts commit fdf20dc43971b728520d518f3b6ef0bcb16aeb21. Closes Homebrew/homebrew#24831. Closes Homebrew/homebrew#24780.
2013-12-01Ensure cellar path is replace correctly for relocatable bottlesJack Nagel
2013-12-01Skip path replacement when it would be a no-opJack Nagel
2013-12-01Extract repeated regexp to a methodJack Nagel
2013-12-01Move lmutil to homebrew-binaryAdam Vandenberg
Closes Homebrew/homebrew#24843.
2013-12-01bottle: make writing commit message more robust.Mike McQuaid
2013-11-30Disable bottles when HOMEBREW_CELLAR.parent != HOMEBREW_PREFIXJack Nagel
2013-11-30Revert "disable :any bottles due to Homebrew/homebrew#24780"Jack Nagel
This reverts commit 31bab6e52b7ed8c63421b9c647d0592af2ee2635.
2013-11-30typoSamyak Bhuta
Closes Homebrew/homebrew#24803. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-11-30disable :any bottles due to Homebrew/homebrew#24780Adam Vandenberg
2013-11-29Flush stdout before leaving Formula#systemJack Nagel
2013-11-29Revert "FormulaInstaller: flush before closing writes."Jack Nagel
This reverts commit 5ce8f7a3a494e1d8e812369301fd4c4a05a7d9b7.
2013-11-29support .lz archivesAdam Vandenberg
Closes Homebrew/homebrew#24775.
2013-11-28Implement MacOS.dev_tools_prefix a different wayJack Nagel
Avoid producing a dev_tools_path of "//usr/bin". Fixes Homebrew/homebrew#24751. Closes Homebrew/homebrew#24754.
2013-11-28Move cmucl to homebrew-binaryAdam Vandenberg
2013-11-28Move aimage to boneyardAdam Vandenberg
No longer maintained; homepage suggests alternatives. Closes Homebrew/homebrew#24728.
2013-11-28typoAdam Vandenberg
2013-11-27Require Formula before using itJack Nagel
2013-11-27Adjust optimization flags if the CPU does not support SSE4Jack Nagel
Tentatively fixes Homebrew/homebrew#21778, Homebrew/homebrew#24363.
2013-11-27resource: convert unpack target to Pathname.Mike McQuaid
2013-11-27Mac: add dev_tools_prefix method.Mike McQuaid
Basically dev_tools_path without the `/usr/bin`.
2013-11-27bottle: write bottle version in commit message.Mike McQuaid
2013-11-26Add test for 5c1ee9c1aeee00e512919f37d3fa66fcf637e070Jack Nagel
2013-11-26ApacheDownloadStrategy: fall back to specified mirrorsJack Nagel
Fixes Homebrew/homebrew#24157.
2013-11-26Fix parsing of "-I foo" and "-L foo" under superenvJack Nagel
Fixes Homebrew/homebrew#24654.
2013-11-26SoftwareSpec: set resource version when missingJack Nagel
Closes Homebrew/homebrew#24695.
2013-11-26audit: distinguish between nil and empty versionsJack Nagel
2013-11-26Add Hardware::CPU.aes? and Hardware::CPU.avx2?Jack Nagel
2013-11-26Add Hardware::CPU.intel? and Hardware::CPU.ppc?Jack Nagel
2013-11-26Remove caching from MacOS.preferred_archJack Nagel
The really expensive computation is now cached at its source, and this only caches true anyway.
2013-11-26Simplify Hardware::CPU.is_64_bit?Jack Nagel
2013-11-26Cache calls to sysctl_bool at the sourceJack Nagel
2013-11-26FormulaInstaller: flush before closing writes.Mike McQuaid
This seems to help the problem with `brew install -v` sometimes truncating output. Closes Homebrew/homebrew#24666.
2013-11-26tap_migrations: add opencv (even although old).Mike McQuaid
2013-11-25safer check for sys.executable in sitecustomize.pyMinRK
make sure it doesn't actually point to something else since sitecustomize.py is put in a location found by pypy, it breaks pypy by setting sys.executable to a path that is definitely wrong, and may not even exist. Closes Homebrew/homebrew#24581. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-11-25Fix some unanchored patch URLsJack Nagel
2013-11-23fix typoAdam Vandenberg
2013-11-23Redact boost149 from coreAdam Vandenberg
boost149 does not build with 10.9, so remove it from core along with two formulae that do not build with the latest version of Boost. Closes Homebrew/homebrew#23696.
2013-11-23audit: remove 'python bindings' warningAdam Vandenberg
2013-11-22Fix MacOS::CLT.installed? for 10.9+Misty De Meo
This continues to use mavericks_dev_tools? instead of trying to read from pkgutil because pkgutil is really slow. Fixes Homebrew/homebrew#24123.
2013-11-21Avoid globals when ivars will doJack Nagel
2013-11-21Move some global methods into the context in which they usedJack Nagel
2013-11-21Remove some monkeypatchesJack Nagel
2013-11-21Use grep instead of select + matchJack Nagel
2013-11-21Remove commentJack Nagel
2013-11-21Allow -Wno- flags to pass throughJack Nagel
These inhibit warnings-as-errors, so allow them to pass through.
2013-11-20Remove uses of -no-cpp-precompJack Nagel
2013-11-20Remove outdated blacklist entriesJack Nagel
libxslt was misspelled, but more to the point we have libxml2 and libxslt formulae in core these days so blacklisting them doesn't really make much sense.
2013-11-20Simplify passing archflags to cc wrapperJack Nagel
2013-11-20Move optimization flag selection out of cc wrapperJack Nagel
The mapping of architectures to optimization flags is now retrieved from Hardware::CPU and the selected flags are passed as an environmen variable, rather than duplicated in the cc wrapper and re-calculated on every invocation of the compiler. Closes Homebrew/homebrew#24540.