aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew
AgeCommit message (Collapse)Author
2014-04-20Remove obsolete DEVELOPER_DIR hacksJack Nagel
These days Homebrew refuses to do anything if the xcode-select path is busted, so this workaround is unnecessary.
2014-04-19Add another commentJack Nagel
2014-04-19Elaborate on why we should remove this codeJack Nagel
2014-04-19Move mydumper to the boneyardAdam Vandenberg
This software compiles against now-private APIs: https://github.com/Homebrew/homebrew/issues/24748 http://bugs.mysql.com/bug.php?id=70672 https://answers.launchpad.net/mydumper/+question/239895 Closes #24748.
2014-04-19colormake 0.9Yann-R
Closes #27345. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2014-04-18Handle formula URLs with query parameters. This is useful for fetching ↵David Turner
formulas from cgit repositories, which uses ?h= to choose branches. Closes #28314. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2014-04-18search: move nginx to Homebrew organisation.Mike McQuaid
2014-04-15Don't use assert_nothing_raisedJack Nagel
2014-04-15Remove questionable testJack Nagel
This is already covered in test_mach.rb.
2014-04-15Update commentJack Nagel
2014-04-15Start cleaning up Xcode.versionJack Nagel
2014-04-15Fix syntax errorJack Nagel
2014-04-15Xcode.bad_xcode_select_path? is used only once, so inline itJack Nagel
2014-04-15Remove yet another xcode-select checkJack Nagel
2014-04-15Don't call xcrun twiceJack Nagel
2014-04-15Remove another unnecessary checkJack Nagel
2014-04-15Remove unnecessary xcode-select checkJack Nagel
This is handled here: https://github.com/Homebrew/homebrew/blob/67fbb313da8843234c4d1785c9c074af5a025394/Library/brew.rb#L34-46
2014-04-15Document some unanswered questions in the Xcode moduleJack Nagel
2014-04-15Remove dead constantJack Nagel
2014-04-14Use quiet_system to silence some useless warningsJack Nagel
2014-04-14Remove overzealous exceptionsJack Nagel
2014-04-14CompilerFailure: llvm can't build C++11 eitherMisty De Meo
2014-04-13Use correct basename when updating dylib IDsJack Nagel
2014-04-13Allow access to both the linked dylibs and the dylib IDJack Nagel
2014-04-13Always return a string from dylib_id_forJack Nagel
2014-04-12CompilerFailure: don't mutate compiler hashesMisty De Meo
Fixes #28357.
2014-04-12Formula: provide compiler failure collectionsMisty De Meo
`needs` allows formulae to specify dependencies on cross-compiler dependencies, allowing multiple failures to be specified in a single statement. For instance, `needs :cxx11` adds seven compiler failures. Closes #22912.
2014-04-11audit: use .diff instead of .patch for github diffsAdam Vandenberg
2014-04-10Migrate homebrew-php to Homebrew organization.Mike McQuaid
2014-04-10Add tests for new bottling hooks.Mike McQuaid
Closes #27890. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-04-10Add hooks for pouring bottles.Mike McQuaid
This should give us a bit of control over what e.g. Boxen are doing whilst at the same time stopping us from accidentally breaking each other's stuff every so often. I'm aware this may be somewhat controversial so I'm open to other approaches.
2014-04-08unlink: prefer "symlinks" since that's how it is reported by linkJack Nagel
cf. #28244.
2014-04-07GithubGistFormula doesn't need to know the exact signature of initializeJack Nagel
2014-04-07Restore recursive tap searchJack Nagel
Fixes #28234.
2014-04-07Restore documented behavior of `brew uses foo bar`Jack Nagel
`brew uses foo bar` is supposed to return the intersection of formulae that use foo and bar. However, this was broken by changes made to support requirements that can coerce to regular dependencies.
2014-04-07uses: only check ARGV for recursive flag onceJack Nagel
2014-04-07doctor: fix typoJack Nagel
Fixes #28221.
2014-04-06Initialize cxxstdlib set lazilyJack Nagel
This is used rarely and only at build-time, so we don't need to create it when instantiating the formula.
2014-04-06drop unnecessary nil checksJack Nagel
2014-04-06Clean up test classesJack Nagel
2014-04-06Drop conditional that is always falseJack Nagel
2014-04-06show formula version in failed build outputAdam Vandenberg
2014-04-06Mirror unlink logic when checking for linked keg-only formulaeJack Nagel
2014-04-06Recognize and extract xar filesJack Nagel
2014-04-06brew audit: show line number for whitespaceLee Hanxue
Closes #24481. Closes #24490.
2014-04-06pathname: use ln_sf in install_symlink.Mike McQuaid
Closes #28136.
2014-04-06Extract common decompression code to a methodJack Nagel
2014-04-06Handle untarred bzip2 filesJack Nagel
Fixes #28187.
2014-04-06Use a case statement in Pathname#compression_typeJack Nagel
2014-04-06python caveats: use `>` instead of `>>`Samuel John
The `homebrew.pth` should be a file with a single line in it. Also (at least on zsh) if the file does not exist, `>>` will result in an error. The `>` works in both, bash and zsh and creates the file with the `echo`ed contet. Closes #28201. Signed-off-by: Jack Nagel <jacknagel@gmail.com>