| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-04-05 | FormulaInstaller: this local is an ivar now | Jack Nagel | |
| 2013-04-05 | FormulaInstaller: initialize @tab | Jack Nagel | |
| 2013-04-05 | Make some groups non-capturing | Jack Nagel | |
| 2013-04-05 | Use #grep where it will suffice | Jack Nagel | |
| 2013-04-05 | Allow pipe fd to be inherited under Ruby 2.0 | Jack Nagel | |
| 2013-04-05 | Remove obsolete comment about download_strategy | Jack Nagel | |
| The canonical way to select a custom download strategy is to pass :using => StrategyClass as an argument to the url DSL method. | |||
| 2013-04-04 | Rename checksums.rb to match class name | Jack Nagel | |
| 2013-04-04 | Remove circular require | Jack Nagel | |
| 2013-04-03 | Recognize 7z files by magic bytes, not filename | Jack Nagel | |
| 2013-04-03 | Don't error out when a package is already installed | Jack Nagel | |
| Fixes Homebrew/homebrew#17010. | |||
| 2013-04-03 | brew-server: clean up | Jack Nagel | |
| 2013-04-03 | brew-server: add Bootstrap styling | Jan-Henrik Bruhn | |
| Closes Homebrew/homebrew#18041. Signed-off-by: Jack Nagel <jacknagel@gmail.com> | |||
| 2013-04-03 | use separate args in brew create | Adam Vandenberg | |
| 2013-04-03 | Document `brew deps --installed` | Jack Nagel | |
| 2013-04-02 | tap/untap: use Array#length, not #count | Misty De Meo | |
| Array#count was apparently introduced in 1.8.7. | |||
| 2013-04-02 | Fix missing require in x11_dependency.rb | Jack Nagel | |
| Fixes Homebrew/homebrew#18918. | |||
| 2013-04-02 | Suppress warnings in test_pathname_install | Jack Nagel | |
| 2013-04-02 | Add test for differing module and import name | Jack Nagel | |
| 2013-04-02 | Fix requires in test_x11_dependency.rb | Jack Nagel | |
| 2013-04-02 | Shrink requirements.rb | Jack Nagel | |
| 2013-04-02 | Don't use "assert_not_nil" | Jack Nagel | |
| 2013-04-02 | Split out and fix LanguageModuleDependency tests | Jack Nagel | |
| 2013-04-02 | Simplify setting this ivar | Jack Nagel | |
| 2013-04-02 | Fix chicken scheme imports | Jack Nagel | |
| 2013-04-02 | Add new tests for fails_with DSL | Jack Nagel | |
| 2013-04-02 | Isolate compiler selector tests | Jack Nagel | |
| 2013-04-02 | CompilerSelector: don't use non-existent compilers | Jack Nagel | |
| 2013-04-02 | Bump useable clang version to 318 | Jack Nagel | |
| Build 211 can build most things, but I've seen intermittent miscompilation and slower code. Also it comes from Xcode 4.2, so most people don't have it anyway. Let's use 218 as the minimum viable version. | |||
| 2013-04-02 | Move x86_64 Requirement into core | Jack Nagel | |
| Closes Homebrew/homebrew#18886. | |||
| 2013-04-02 | Use satisfy syntax for CLTDependency | Jack Nagel | |
| 2013-04-01 | Test that X11 env is triggered correctly | Jack Nagel | |
| 2013-04-01 | Fix X11 env setup | Jack Nagel | |
| 2013-04-01 | Requirement: env DSL is evaluated in context of self, not ENV | Jack Nagel | |
| This was meant to support: env do |req| append_path 'PATH', req.some_method ... end i.e., the block was evaluated in the context of ENV. But it turned out to be not so useful after all, so I'm ripping it out before something actually depends on it. | |||
| 2013-04-01 | Add optional post_install method to Formula. | Mike McQuaid | |
| Sometimes we may want to run commands after bottle installation (such as creating directories outside the Cellar) so this method allows us to do so. Closes Homebrew/homebrew#18382. | |||
| 2013-04-01 | formula_installer: warn on bottles being skipped. | Mike McQuaid | |
| We want to notify users that non-/usr/local installs may result in some bottles being not used. References Homebrew/homebrew#18540 | |||
| 2013-04-01 | Make testing_env somewhat readable | Jack Nagel | |
| 2013-04-01 | Silence stderr in test suite | Jack Nagel | |
| 2013-04-01 | audit: fix check for depending on requirement classes | Jack Nagel | |
| Don't complain if it's instantiating the class so that it can pass arguments. Fixes Homebrew/homebrew#18883. | |||
| 2013-04-01 | Fix `list --pinned` for non-formula kegs | Jack Nagel | |
| Fixes Homebrew/homebrew#18885. | |||
| 2013-03-31 | Fix uninstallation of non-formula kegs | Jack Nagel | |
| Grrr... | |||
| 2013-03-31 | onoe and opoo print to stderr | Jack Nagel | |
| This may result in some undesired output for things that suppress stdout, but we'll fix those as we go. Fixes Homebrew/homebrew#18650. | |||
| 2013-03-31 | DRY ohai truncation | Jack Nagel | |
| 2013-03-31 | brew-pin: Fix bug in `FormulaPin#pinned?` | Simon Sigurdhsson | |
| Since `pinned?` was using `File#exists?`, broken symlinks left by force-upgraded formulae made `pinned?` return false while `pin` returned with an error because it could not overwrite the broken link. This is fixed by using `File#symlink?` instead, which returns true for broken symlinks and false only when they do not exist. Closes Homebrew/homebrew#18858. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com> | |||
| 2013-03-31 | brew-info: Add pinned status to info. | Simon Sigurdhsson | |
| Closes Homebrew/homebrew#18851. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com> | |||
| 2013-03-30 | Fix typo for pin command in bash_completion | Jaime Marquínez Ferrándiz | |
| Closes Homebrew/homebrew#18849. Signed-off-by: Adam Vandenberg <flangy@gmail.com> | |||
| 2013-03-30 | Simplify destructuring this array | Jack Nagel | |
| 2013-03-30 | brew-pin: prevent selected formulae from upgrade. | Simon Sigurdhsson | |
| * Added `pin` et. al. to manpage. * Added `brew pin` to `brew.1` * Added `brew unpin` to `brew.1` * Added `brew list --pinned` to `brew.1` * Added information about frozen formulae to `brew upgrade` in `brew.1` * Added `pin` et.al. to completion scripts. * Unpin formulae when uninstalling them * Unpin and re-pin formulae when upgrading (avoids stale symlink) References Homebrew/homebrew#18386. Closes Homebrew/homebrew#18515. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com> | |||
| 2013-03-29 | Use each_key instead of keys.each | Jack Nagel | |
| 2013-03-29 | doctor: restore newlines between checks | Adam Vandenberg | |
| Closes Homebrew/homebrew#18060. | |||
| 2013-03-29 | superenv: Filter out -isysroot | Samuel John | |
| Closes Homebrew/homebrew#16576. Signed-off-by: Adam Vandenberg <flangy@gmail.com> | |||
