aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
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
2013-07-16Fix SYMROOT auditJack Nagel
2013-07-16add full lib path to auditAdam Vandenberg
2013-07-16More linewise auditsJack Nagel
2013-07-16Audit text linewiseJack Nagel
2013-07-16Audit conditional deps that can be made declarativeJack Nagel
2013-07-16Fix some false-positive build-time dep auditsJack Nagel
2013-07-16brew-test-bot: audit after installation.Mike McQuaid
Enables new post-installation Cellar audit failures. Closes Homebrew/homebrew#21242.
2013-07-16audit: use FormulaCellarChecks module.Mike McQuaid
Perform post-installation checks if a formula is installed. Added for brew test-bot to be able to fail on bad Cellar installation.
2013-07-16FormulaInstaller: move Cellar checks to module.Mike McQuaid
2013-07-16FormulaInstaller: cleanup check_/audit_ functions.Mike McQuaid
2013-07-16Audit LanguageModuleDependency for pythonSamuel John
LanguageModuleDependency.new(:python,...) is deprecated now. Replace it by depends_on :python => ['module' => 'name-on-PyPi']
2013-07-16Allow specifying version in depends_on :pythonSamuel John
Note, in the explict form: PythonInstalled.new('2.7') => :recommended the tag :recommended is ignored (not a limitation of PythonInstalled itself). One solution was to write PythonInstalled.new('2.7', [:recommended]) but that is not as beautiful as we like it. Therefore, now it is possible to: depends_on :python => ['2.7', :recommended] Only the first tag is attempted to be parsed as a version specifyer "x" or "x.y" or "x.y.z"...
2013-07-15upgrade: don't rely on return value of 'onoe'Jack Nagel
2013-07-15upgrade: make condition clearerJack Nagel
2013-07-15upgrade: move require out of method bodyJack Nagel
2013-07-15upgrade: remove redundant conditionalJack Nagel
Since e1c62c35465eb6149688c745e4309438c08c410b, we exit early if the outdated array is empty, so we no longer need to check this before proceeding.
2013-07-15brew-test-bot: reset before checkout.Mike McQuaid
2013-07-15Fix multiple execution of python do ... end blocksSamuel John
Only run the `python do ... end` loop once even if multiple `depends_on :python => 'module-name'` are present.
2013-07-15Clarify behavior of `brew search` without an argumentJack Nagel
As documented in the man page, when given no arguments, `brew search` will list all formulae. This is different than giving an *empty* argument.
2013-07-15GitHub API access may result in SSL errorsJack Nagel
Closes Homebrew/homebrew#21216.
2013-07-14bottle: fix cellar output.Mike McQuaid
2013-07-13Handle NULs in link targets in Pathname#resolved_path_exists?Jack Nagel
Fixes Homebrew/homebrew#19475. Fixes Homebrew/homebrew#21184.
2013-07-13keg: more gnome foldersAdam Vandenberg
2013-07-12audit: improve commentAdam Vandenberg
2013-07-12audit: remove github warningAdam Vandenberg
All core formulae have been migrated to .io addresses except for software maintained by github itself.
2013-07-12Move inreplace off of ObjectJack Nagel
Closes Homebrew/homebrew#21163.
2013-07-12Man page: document `brew fetch --build-from-source`chdiza
Closes Homebrew/homebrew#21070. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2013-07-11Remove unreachable branch in ENV.fortranJack Nagel
Now that this is handled by a Requirement with a default formula, this code cannot be triggered under normal circumstances. The advice given has now been moved to the Formula Cookbook on the wiki.
2013-07-10Show symlink target if linking failsAdam Vandenberg
Closes Homebrew/homebrew#21060.
2013-07-10fix depsAdam Vandenberg
Closes Homebrew/homebrew#21113.
2013-07-09github doesn't use .io urlsAdam Vandenberg
2013-07-09Remove duplication in updater testsJack Nagel
2013-07-09Properly define tapped formulae in updatephinze
A tapped formula is a ruby file present: - in the root of the tap - in directory of the tap called Formula - in a directory of the tap called HomebrewFormula And nowhere else. This corrects an overzealous definition of tapped formula in the updater. (the correct definition has been in Pathname since e613cbe5783cea2abb8100b56c22126a1ab6b9f2) Refs Homebrew/homebrew#19743. Closes Homebrew/homebrew#21087. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2013-07-09Respect $VISUAL when picking an editorJack Nagel
2013-07-09fix comment typoAdam Vandenberg
2013-07-08add mime-info to Gnome foldersAdam Vandenberg
2013-07-08Completion for brew untap command in zsh shell.Jozef Izso
Closes Homebrew/homebrew#21074. Signed-off-by: Adam Vandenberg <flangy@gmail.com>