| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-10-31 | Remove FormulaAlreadyInstalledError | Jack Nagel | |
| install is the only command that can trigger this warning, so it should be handled before instantiating the installer. | |||
| 2014-09-18 | Pass command and arg list into ErrorDuringExecution constructor | Jack Nagel | |
| 2014-09-14 | Consistently call name on formula instead of relying on to_s | Jack Nagel | |
| 2014-09-14 | Remove InstallationError superclass | Jack Nagel | |
| None of these subclasses share any behavior other than what is inherited from RuntimeError, so we can just get rid of the superclass. | |||
| 2014-09-13 | Remove unused attribute from BuildError | Jack Nagel | |
| 2014-09-13 | Pass the ENV hash into the BuildError constructor | Jack Nagel | |
| 2014-09-12 | Use the superclass properly | Jack Nagel | |
| 2014-09-12 | Make parameter names match superclass parameter names | Jack Nagel | |
| 2014-09-12 | Remove default argument from Homebrew::InstallationError | Jack Nagel | |
| This class is never instantiated directly, and all subclasses initializers have different signatures and do not rely on this. | |||
| 2014-09-12 | Make exception subclasses use their superclass properly | Jack Nagel | |
| 2014-08-25 | Inline variable | Jack Nagel | |
| 2014-08-22 | Decouple IncompatibleCxxStdlibs from its superclass | Jack Nagel | |
| This exception is never used outside of the CxxStdlib class, so we don't need the Homebrew::InstallationError superclass. | |||
| 2014-07-12 | Linuxbrew: Move ISSUES_URL to os from global | Shaun Jackman | |
| Closes Homebrew/linuxbrew#103 Closes #30830. Signed-off-by: Jack Nagel <jacknagel@gmail.com> | |||
| 2014-07-11 | exceptions: fix typo | Matt Hauck | |
| Closes #30821. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com> | |||
| 2014-07-06 | Drop pointless string split | Jack Nagel | |
| 2014-05-28 | Remove unused attribute | Jack Nagel | |
| 2014-05-28 | Remove unused method and associated test fixtures | Jack Nagel | |
| 2014-05-08 | exceptions: fix tap issue URL. | Mike McQuaid | |
| Closes #29043. | |||
| 2014-04-30 | --config -> config | Adam Vandenberg | |
| 2014-04-23 | Use gcc instead of apple-gcc42 when needed. | Mike McQuaid | |
| 2014-04-06 | show formula version in failed build output | Adam Vandenberg | |
| 2014-04-06 | Remove now unnecessary realpath calls | Jack Nagel | |
| 2014-04-05 | Automatically reinstall up-to-date dependencies that are missing options | Jack Nagel | |
| Closes #21223. | |||
| 2014-03-17 | Don't check issues on Ruby 1.8.6 | Misty De Meo | |
| The system certs are too old to be able to read from Github, so don't try to use the Github API on 1.8.6 either. | |||
| 2014-02-28 | Add custom exception for untapped formulae | Jack Nagel | |
| 2014-02-27 | Pass expansion-time build options to install_dependency | Jack Nagel | |
| 2014-02-18 | Tweak DownloadError message to include wrapped exception | Jack Nagel | |
| 2014-02-18 | Add DownloadError to catch a broader range of resource download errors. | Drew Rodman | |
| Adding a broader exception class allows for errors raised in Resource.fetch to be caught in upgrade and prevent the process from being killed when a download fails. This should resolve issue 18364. Fixes #18364. Closes #26618. Signed-off-by: Jack Nagel <jacknagel@gmail.com> | |||
| 2014-02-18 | Inline static exception text to remove a rescue | Jack Nagel | |
| 2014-02-08 | Don't let issue search kill install process | Jack Nagel | |
| 2014-02-02 | C++ stdlibs: issue warning, don't fail the build | Misty De Meo | |
| 2014-01-20 | utils: improve issue searching. | Mike McQuaid | |
| * issues_matching now returns an array * prints issues titles and URLs * find_pull_requests shows closed PRs if no matching PRs are open Closes #26032. | |||
| 2014-01-03 | exceptions: remove unused AlreadyTappedError. | Mike McQuaid | |
| 2013-12-14 | Update string references to mxcl/homebrew. | Mike McQuaid | |
| 2013-12-03 | Make CompilerSelectionError an InstallationError | Jack Nagel | |
| Fixes #19962. | |||
| 2013-11-11 | exceptions: improve tap error message. | Mike McQuaid | |
| Point users to the tap's issue tracker URL. | |||
| 2013-10-31 | Use HOMEBREW_LOGS more consistently. | Mike McQuaid | |
| 2013-10-30 | exceptions: direct to correct tap on failure. | Mike McQuaid | |
| Closes #23757. | |||
| 2013-10-27 | fix build log output | Stefan | |
| Closes #23669. Signed-off-by: Adam Vandenberg <flangy@gmail.com> | |||
| 2013-10-22 | Different regex for user/tap/formula and user/tap. | Mike McQuaid | |
| Closes #23430. | |||
| 2013-10-21 | tap: use dedicated exception for already tapped. | Mike McQuaid | |
| 2013-10-21 | global: unify tap regex. | Mike McQuaid | |
| Signed-off-by: Mike McQuaid <mike@mikemcquaid.com> | |||
| 2013-09-27 | Adjust CompilerSelectionError message | Misty De Meo | |
| 2013-09-11 | Implement Resources | Adam Vandenberg | |
| Closes #20212. | |||
| 2013-09-01 | Check dependencies for a compatible C++ stdlib | Misty De Meo | |
| There are now a few possible C++ standard libraries a given build could be using, with subtle incompatibilities and possibility of breakage when mixed. This makes sure that the dependency chain was compiled in a compatible manner. Fortunately all of the Apple compilers use the same libstdc++, and we don't yet support building with libc++, so this will primarily only nag users trying to use GNU gcc who already have software installed with Apple compilers. Future TODOs: * Add general support for building with libc++ (compatibility checking already handled here) * Possibly track formulae which actually build C++ bindings, so that users aren't bothered by spurious nagging re: interpreted languages, pure-C software, etc. | |||
| 2013-08-08 | exception style | Adam Vandenberg | |
| 2013-06-24 | Use 'path or URL' as tap for non-tap, non-core formulae | Adam Vandenberg | |
| 2013-06-24 | Show tap/path for non-core formulae on build failure | Adam Vandenberg | |
| Closes #16373. Closes #20725. | |||
| 2013-06-09 | Separate formula conflicts from requirements | Jack Nagel | |
| Closes #20357. | |||
| 2013-06-08 | Consolidate sudo checks. | Adam Vandenberg | |
| Closes #20318. | |||
