| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-07-18 | brew-test-bot: only force fetch with --cleanup. | Mike McQuaid | |
| 2013-07-18 | Warn 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-18 | Move getting formula names from bottles to method. | Mike McQuaid | |
| 2013-07-18 | Formula: temporarily set PYTHONPATH. | Mike McQuaid | |
| Needs a less hacky fix but at least this will stop failing tests. | |||
| 2013-07-18 | brew-test-bot: add devel/HEAD install options. | Mike McQuaid | |
| 2013-07-17 | check_PATH: return early if (s)bin doesn't exist. | Mike McQuaid | |
| 2013-07-17 | Remove stray quotation mark | Jack Nagel | |
| 2013-07-17 | Escape interpolation examples | Jack Nagel | |
| 2013-07-17 | audit: skip an audit for mongodb | Adam Vandenberg | |
| 2013-07-17 | audit: ARGV.find is a warning, .value is allowed | Adam Vandenberg | |
| 2013-07-17 | add ARGV.value | Adam Vandenberg | |
| 2013-07-17 | doctor: Using Xcode-only is no longer experimental | Samuel 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-17 | Typo in comments | Samuel John | |
| 2013-07-16 | Fix SYMROOT audit | Jack Nagel | |
| 2013-07-16 | add full lib path to audit | Adam Vandenberg | |
| 2013-07-16 | More linewise audits | Jack Nagel | |
| 2013-07-16 | Audit text linewise | Jack Nagel | |
| 2013-07-16 | Audit conditional deps that can be made declarative | Jack Nagel | |
| 2013-07-16 | Fix some false-positive build-time dep audits | Jack Nagel | |
| 2013-07-16 | brew-test-bot: audit after installation. | Mike McQuaid | |
| Enables new post-installation Cellar audit failures. Closes Homebrew/homebrew#21242. | |||
| 2013-07-16 | audit: 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-16 | FormulaInstaller: move Cellar checks to module. | Mike McQuaid | |
| 2013-07-16 | FormulaInstaller: cleanup check_/audit_ functions. | Mike McQuaid | |
| 2013-07-16 | Audit LanguageModuleDependency for python | Samuel John | |
| LanguageModuleDependency.new(:python,...) is deprecated now. Replace it by depends_on :python => ['module' => 'name-on-PyPi'] | |||
| 2013-07-16 | Allow specifying version in depends_on :python | Samuel 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-15 | upgrade: don't rely on return value of 'onoe' | Jack Nagel | |
| 2013-07-15 | upgrade: make condition clearer | Jack Nagel | |
| 2013-07-15 | upgrade: move require out of method body | Jack Nagel | |
| 2013-07-15 | upgrade: remove redundant conditional | Jack Nagel | |
| Since e1c62c35465eb6149688c745e4309438c08c410b, we exit early if the outdated array is empty, so we no longer need to check this before proceeding. | |||
| 2013-07-15 | brew-test-bot: reset before checkout. | Mike McQuaid | |
| 2013-07-15 | Fix multiple execution of python do ... end blocks | Samuel John | |
| Only run the `python do ... end` loop once even if multiple `depends_on :python => 'module-name'` are present. | |||
| 2013-07-15 | Clarify behavior of `brew search` without an argument | Jack 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-15 | GitHub API access may result in SSL errors | Jack Nagel | |
| Closes Homebrew/homebrew#21216. | |||
| 2013-07-14 | bottle: fix cellar output. | Mike McQuaid | |
| 2013-07-13 | Handle NULs in link targets in Pathname#resolved_path_exists? | Jack Nagel | |
| Fixes Homebrew/homebrew#19475. Fixes Homebrew/homebrew#21184. | |||
| 2013-07-13 | keg: more gnome folders | Adam Vandenberg | |
| 2013-07-12 | audit: improve comment | Adam Vandenberg | |
| 2013-07-12 | audit: remove github warning | Adam Vandenberg | |
| All core formulae have been migrated to .io addresses except for software maintained by github itself. | |||
| 2013-07-12 | Move inreplace off of Object | Jack Nagel | |
| Closes Homebrew/homebrew#21163. | |||
| 2013-07-12 | Man page: document `brew fetch --build-from-source` | chdiza | |
| Closes Homebrew/homebrew#21070. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com> | |||
| 2013-07-11 | Remove unreachable branch in ENV.fortran | Jack 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-10 | Show symlink target if linking fails | Adam Vandenberg | |
| Closes Homebrew/homebrew#21060. | |||
| 2013-07-10 | fix deps | Adam Vandenberg | |
| Closes Homebrew/homebrew#21113. | |||
| 2013-07-09 | github doesn't use .io urls | Adam Vandenberg | |
| 2013-07-09 | Remove duplication in updater tests | Jack Nagel | |
| 2013-07-09 | Properly define tapped formulae in update | phinze | |
| 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-09 | Respect $VISUAL when picking an editor | Jack Nagel | |
| 2013-07-09 | fix comment typo | Adam Vandenberg | |
| 2013-07-08 | add mime-info to Gnome folders | Adam Vandenberg | |
| 2013-07-08 | Completion for brew untap command in zsh shell. | Jozef Izso | |
| Closes Homebrew/homebrew#21074. Signed-off-by: Adam Vandenberg <flangy@gmail.com> | |||
