aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2013-07-23audit: add TODOAdam Vandenberg
2013-07-23audit: use !~ instead of "not ... =~"Jack Nagel
2013-07-23audit: fix dep name escapingJack Nagel
2013-07-22audit: escape dep before regexp interpolationJack Nagel
2013-07-22audit: fix indentationJack Nagel
2013-07-22audit: fix broken conditionJack Nagel
2013-07-22Update commentJack Nagel
2013-07-22Handle optional build-time deps correctlyJack Nagel
2013-07-22Check deps of satisfied depsJack Nagel
2013-07-22Pathname#write: don't check ARGV.force?Jack Nagel
Closes Homebrew/homebrew#21390.
2013-07-22typoPhil Smith
Closes Homebrew/homebrew#21385. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-07-22Silence warningsJack Nagel
2013-07-22Fix python dependency hash equalityJack Nagel
eql? should not depend on the hash value as hash values of uneql objects can collide, but eql values may only collide for objects that are actually eql. Further, python dependencies are uniquely identified by the combination of the name and imports attributes, so there is no reason to involved the expensive binary computation for simple equality checks. Fixes Homebrew/homebrew#20840.
2013-07-22Remove redundant reader methodJack Nagel
2013-07-22Map pkginfo versions to actual XQuartz versionsJack Nagel
2013-07-22Fall back on pkgutil when mdls cannot determine XQuartz versionJack Nagel
2013-07-22Separate version detection from accessorJack Nagel
2013-07-22Extract version_from_pkgutilJack Nagel
2013-07-22Extract version_from_mdlsJack Nagel
2013-07-22Extract guess_system_versionJack Nagel
2013-07-22Extract bundle_path from XQuartz.versionJack Nagel
2013-07-21Cache pkgutil results at the sourceJack Nagel
2013-07-21Eliminate nested conditionalJack Nagel
2013-07-21Extract bundle_path method from Xcode#prefixJack Nagel
2013-07-21Existence of directory is implied by existence of executablesJack Nagel
2013-07-21Pull another unwieldy condition into a methodJack Nagel
2013-07-21Update comment about CLTJack Nagel
This was worded in a confusing way, and made an assumption about future OS X versions that we don't know to be true. Also, it's probably wrong to state that the CLT location is dependent on the OS X version; surely there will be a newer CLT for 10.8 that gets installed in the same location as on 10.9. But we don't know any better yet.
2013-07-21Split up unreadable conditionalJack Nagel
2013-07-21These should be integersJack Nagel
2013-07-20Remove unnecessary use of globals in compiler version methodsJack Nagel
2013-07-20Don't report llvm-gcc if it's actually clangJack Nagel
2013-07-19Add String#end_with?Jack Nagel
I'm tired of not remembering if start_with?/end_with? are portable, so just add them both if they're not defined.
2013-07-19Fix String#start_with? implementationJack Nagel
It is supposed to accept a variable number of prefixes, and also to check if they are convertible to strings. This matches behavior documented in RubySpec.
2013-07-19Enable superenv on Snow LeopardMisty De Meo
This has been tested with several dozen formulae without any superenv-related issues.
2013-07-19SUPPORTERS.md fixed some missing http://Samuel John
some links like example.com were not clickable in some markdown viewers.
2013-07-18upgrade: put exit statements in both conditional branchesAdam Coffman
This check was only occurring in one branch of the conditional. As a result, if you ran `brew upgrade` with no args and there were no packages to upgrade, the nonsensical message "==> Upgrading 0 outdated package, with result:" would be printed. Closes Homebrew/homebrew#21316. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2013-07-18brew-test-bot: only install bottle if created OK.Mike McQuaid
2013-07-18brew-test-bot: only force fetch with --cleanup.Mike McQuaid
2013-07-18Warn more about failing bottle version detection.Mike McQuaid
This is needed for local bottle installation and also possible when detecting bottle versions from URLs.
2013-07-18Move getting formula names from bottles to method.Mike McQuaid
2013-07-18Formula: temporarily set PYTHONPATH.Mike McQuaid
Needs a less hacky fix but at least this will stop failing tests.
2013-07-18brew-test-bot: add devel/HEAD install options.Mike McQuaid
2013-07-17check_PATH: return early if (s)bin doesn't exist.Mike McQuaid
2013-07-17Remove stray quotation markJack Nagel
2013-07-17Escape interpolation examplesJack Nagel
2013-07-17audit: skip an audit for mongodbAdam Vandenberg
2013-07-17audit: ARGV.find is a warning, .value is allowedAdam Vandenberg
2013-07-17add ARGV.valueAdam Vandenberg
2013-07-17doctor: Using Xcode-only is no longer experimentalSamuel John
In 10.9 we'll probably have to use that code path anyways and by now we have adapted all formulae to be able to build on Xcode-only.
2013-07-17Typo in commentsSamuel John