| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-02-10 | Fix Regexp encoding under 1.9/2.0 | Jack Nagel | |
| 2013-02-10 | search homebrew-x11 | Adam Vandenberg | |
| 2013-02-10 | Show permission changes in debug mode | Adam Vandenberg | |
| 2013-02-09 | ConflictRequirement: pass argument to superclass initalizer | Jack Nagel | |
| 2013-02-09 | Extract formula locks into a class | Jack Nagel | |
| 2013-02-09 | build: ignore non-explicit build-time dependencies | Jack Nagel | |
| Given the following dependency tree: foo bar (bottled) baz (build-time only) We skip installing baz because it is a build-time dependency of something that is bottled. However, during the build of foo, this filter is not applied because the dependent-dep relationship is not considered at this stage. If baz wasn't installed prior to this build, fixopt(baz) will fail. Further, build-time deps are tightly coupled to the formula they are specified by, and we shouldn't rely on them coming from dependencies several levels down. Fixes Homebrew/homebrew#17697. | |||
| 2013-02-08 | Revert "brew: move to Library/brew.rb" | Mike McQuaid | |
| This reverts commit 67d06b84d00a17cf43770eedf34e37e50e209741. Closes Homebrew/homebrew#17683. Closes Homebrew/homebrew#17685. | |||
| 2013-02-08 | LanguageModuleDependency: foward args to superclass initalizer | Jack Nagel | |
| 2013-02-07 | debrew: restore ARGV even when IRB.setup raises | Jack Nagel | |
| 2013-02-07 | brew: move to Library/brew.rb | Mike McQuaid | |
| 2013-02-07 | Reduce footprint of readline hack | Jack Nagel | |
| 2013-02-07 | Fix typo | Jack Nagel | |
| 2013-02-07 | Manpage: remove `brew install --force`. | Adam Vandenberg | |
| Closes Homebrew/homebrew#17654. | |||
| 2013-02-07 | audit: allow alpha.gnu.org URLs | Jack Nagel | |
| 2013-02-07 | superenv bin directory is under HOMEBREW_REPOSITORY | Jack Nagel | |
| 2013-02-07 | download_strategy: move requires out of method | Jack Nagel | |
| This can cause subtle issues when an exception is marshaled between the build process and the main Homebrew process, as the marshaled exception may contain URI objects even when the main Homebrew process has not loaded the URI library. Closes Homebrew/homebrew#17642. | |||
| 2013-02-07 | MacOSVersion -> MacOS::Version | Jack Nagel | |
| 2013-02-07 | Flesh out MacOSVersion tests | Jack Nagel | |
| 2013-02-06 | Print formula plist_manual caveat unless loaded. | Mike McQuaid | |
| 2013-02-06 | Version: remove pointless private call | Jack Nagel | |
| 2013-02-06 | Version: kill silly class method | Jack Nagel | |
| Overriding <=> directly is much simpler. | |||
| 2013-02-06 | MacOS: cache calls to mdfind | Jack Nagel | |
| 2013-02-06 | Add tests for raise monkey patch | Jack Nagel | |
| 2013-02-06 | Split debrew up to faciliate test isolation | Jack Nagel | |
| We want to be able to test the raise functionality without monkey-patching #raise on every object in the system, which is one of the side effects of loading debrew.rb. | |||
| 2013-02-06 | Don't discard exception instance data in debug mode | Jack Nagel | |
| If the debugger's monkey-patched raise was passed an instantiated exception, the #exception method was called with a potentially nil argument, causing its instance data to be thrown away. This hides potentially useful information from the user. Fix it by allowing instantiated exceptions to be reraised unharmed. Fixes Homebrew/homebrew#17622. | |||
| 2013-02-05 | brew-pull: fix third-party taps | Eashwar Ranganathan | |
| Closes Homebrew/homebrew#17588. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com> | |||
| 2013-02-05 | xcrun: remove suggestion that doesn't work | Adam Vandenberg | |
| Closes Homebrew/homebrew#17443. | |||
| 2013-02-04 | XQuartz.version: return dunno as a string and not a symbol | Jack Nagel | |
| 2013-02-04 | Xcode.version: return dunno as a string and not a symbol | Jack Nagel | |
| 2013-02-03 | Architecture: add flag for ppc support | Adam Vandenberg | |
| 2013-02-03 | audit: check for missing xz build-time dep | Jack Nagel | |
| Closes Homebrew/homebrew#17565. | |||
| 2013-02-03 | audit: mark intltool as a build-time dep | Jack Nagel | |
| 2013-02-03 | update: abort if formula names are given | Adam Vandenberg | |
| Closes Homebrew/homebrew#11154. | |||
| 2013-02-03 | Fix typo in XQuartz comment | Adam Vandenberg | |
| 2013-02-02 | download_strategy: fix typo | Jack Nagel | |
| 2013-02-02 | Make `CurlDownloadStrategy` resume aborted downloads | Simon Sigurdhsson | |
| * `CurlDownloadStrategy#_fetch` (and the same methods in its subclasses) now fetches the file to a temporary path, and `CurlDownloadStrategy#fetch` moves it to the correct location. * `Homebrew#cleanup` cleans the temporary files `CurlDownloadStrategy` creates if they're left in the cache. Closes Homebrew/homebrew#13953. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com> | |||
| 2013-02-02 | FormulaInstaller#check_requirements: fix inverted conditional | Jack Nagel | |
| 2013-02-02 | Move ruby methods to FileUtils extension | Jack Nagel | |
| 2013-02-02 | Fix args to ruby method | Jack Nagel | |
| 2013-02-02 | audit: inspect dep name, not dep object | Jack Nagel | |
| 2013-02-02 | Ensure :cairo and :pixman resolve to standard formula deps | Jack Nagel | |
| We do not use X11 to satisfy these deps for consistency reasons, but we should continue to support the symbols for compatibility. | |||
| 2013-02-01 | Mark symbol-style autotools deps as build deps by default | Jack Nagel | |
| 2013-02-01 | Refactor fetch | Jack Nagel | |
| Remove direct references to checksum types, access them through the Checksum::TYPES constant instead. | |||
| 2013-02-01 | Move MD5 deprecation warning into Pathname#md5 | Jack Nagel | |
| This way it will print when the verification takes place, making it a bit more obvious which formula it refers to. | |||
| 2013-02-01 | Update `tap --repair` function to ignore non-directory files in Library/Taps/ | Elliot Saba | |
| Closes Homebrew/homebrew#17518. Closes Homebrew/homebrew#17511. Signed-off-by: Adam Vandenberg <flangy@gmail.com> | |||
| 2013-02-01 | audit: wrap patches in ENV.with_build_environment block | Jack Nagel | |
| 2013-02-01 | Don't call methods on xcrun_path if it's nil | Jack Nagel | |
| 2013-02-01 | Add md5 support to compatibility, with deprecation warning | Jack Nagel | |
| 2013-02-01 | Formula is not a formula. | Adam Vandenberg | |
| Closes Homebrew/homebrew#17492. | |||
| 2013-01-31 | Don't let xcrun find superenv tools. | Mike McQuaid | |
| Causes an infinite loop when trying to find e.g. missing gcc. Closes Homebrew/homebrew#17426 References Homebrew/homebrew#17455 | |||
