| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2015-04-09 | preliminary write control only sandbox | Xu Cheng | |
| Closes #38361. Signed-off-by: Xu Cheng <xucheng@me.com> | |||
| 2014-11-30 | Allow searching/installing Homebrew Casks. | Mike McQuaid | |
| People want to install things like GIMP using Homebrew so let's make it easier for them to find a decent installation method. Closes #34496. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com> | |||
| 2014-11-03 | Add ARGV.git? | Jack Nagel | |
| 2014-08-29 | Add a method for retrieving only flags from ARGV | Jack Nagel | |
| 2014-08-28 | Simplify implementation of ARGV.flag? and ARGV.switch? | Jack Nagel | |
| 2014-08-28 | Use two-argument form of String#slice | Jack Nagel | |
| 2014-08-28 | Implement ARGV.named in terms of ARGV.options_only | Jack Nagel | |
| 2014-08-28 | ARGV.spec should be private | Jack Nagel | |
| 2014-07-17 | Remove commentary from error message | Phillip Calvin | |
| It might be best not to use the word "lame" here, as it's often considered to be an ableist slur. Closes #30915. Signed-off-by: Jack Nagel <jacknagel@gmail.com> | |||
| 2014-07-02 | Accept -s as shorthand for --build-from-source | Jack Nagel | |
| This is experimental and will be reverted if it causes problems. Closes #30392. | |||
| 2014-06-26 | Use canonical_name in the exception message | Jack Nagel | |
| 2014-06-26 | Use canonical_name when checking LinkedKegs and opt | Jack Nagel | |
| name is the user-provided string and may be an alias, path, or URL. | |||
| 2014-06-26 | The rack variable is only used inside the block now | Jack Nagel | |
| 2014-06-26 | Remove a dead branch from ARGV.kegs | Jack Nagel | |
| rack cannot be nil at the point where FormulaUnavailableError is raised, so we don't need a branch to deal with that. | |||
| 2014-06-26 | Simplify NoSuchKegError condition | Jack Nagel | |
| dirs will be empty if the rack directory does not exist. | |||
| 2014-06-22 | Move deprecated Formula class methods to compat | Jack Nagel | |
| These have all been moved to Formulary. | |||
| 2014-06-20 | Remove ARGV.filter_for_dependencies | Jack Nagel | |
| 2014-06-20 | Decouple spec selection from ARGV | Jack Nagel | |
| 2014-05-27 | --help and --version only apply as first argument | Adam Vandenberg | |
| This fixes external commands that provide their own help and version subcommands. Closes #26755. | |||
| 2014-04-05 | Remove obsolete guards around canonical_name return value | Jack Nagel | |
| 2014-04-05 | Avoid realpath where it is not necessary | Jack Nagel | |
| Symlinks in opt and LinkedKegs point directly at a keg in the cellar, so only resolving one symlink should suffice, and make it clear what path we are actually interested in. | |||
| 2014-03-15 | Prefer opt prefix over linked keg entry when picking active keg | Jack Nagel | |
| 2014-03-15 | Add an extra sanity check | Jack Nagel | |
| 2014-03-15 | Refactor ARGV.kegs | Jack Nagel | |
| 2014-03-15 | Use canonicalized name in NoSuchKegError message | Jack Nagel | |
| cf. #22778. | |||
| 2014-03-13 | Simplify ARGV.filter_for_dependencies | Jack Nagel | |
| 2014-03-13 | Make debug an installer mode | Jack Nagel | |
| 2014-03-13 | Make verbose an installer mode | Jack Nagel | |
| 2014-03-13 | Make interactive an installer mode | Jack Nagel | |
| 2014-03-13 | Add ARGV.env | Jack Nagel | |
| 2014-03-10 | Reduce the number of things that trigger ARGV.build_from_source? | Jack Nagel | |
| The newly generalized bottle implementation removes the need to defensively check for --devel, --HEAD, and others in this method. | |||
| 2014-03-10 | Make build_bottle an explicit installer mode | Jack Nagel | |
| 2014-03-08 | Remove "--fresh" option from installer | Jack Nagel | |
| Turns out that this doesn't really work at all. `brew install` _never_ reuses options in the first place, and using this option with `brew upgrade` results in some nasty corner cases in passing options to dependencies. | |||
| 2014-02-14 | ARGV.help?: anchor to end of string | Misty De Meo | |
| Fixes #26735. | |||
| 2014-02-14 | brew: check for --help and friends in more of ARGV | Mike McQuaid | |
| Let's check for e.g. --help anywhere in the ARGV array rather than just the first value to avoid brew upgrade --help causing problems. Closes #26675. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com> | |||
| 2014-02-11 | Revert "Recognize --head as an alias for --HEAD" | Adam Vandenberg | |
| This reverts commit c32ab0a35a2dfa9b593f759ef0ae8b7af077b0b7. There are other hard-coded uses of HEAD, in build_options for instance. These all need to be fixed before enabling this. | |||
| 2014-02-09 | Recognize --head as an alias for --HEAD | Misty De Meo | |
| Homebrew currently recognizes "--head" during the install process, but rather than actually fetch HEAD it just nags the user to use the correct option. Since we recognize the spelling anyway, this just promotes the lowercase version to an official alias. Closes #26555. | |||
| 2013-12-19 | install: add --only-dependencies option | Steven Peters | |
| The traditional approach to installing the dependencies of a formula is the following: brew install `brew deps formula` This approach ignores any options that are specified in the parent formula. This pull request adds a --only-dependencies option to brew install that installs the dependencies of a formula with optional flags, but returns before installing the parent formula. Closes #25272. Signed-off-by: Jack Nagel <jacknagel@gmail.com> | |||
| 2013-09-01 | Allow forcing bottle installation. | Mike McQuaid | |
| 2013-08-30 | Add --cc= syntax for selecting compilers | Misty De Meo | |
| 2013-08-28 | Allow building bottles with custom architectures | Misty De Meo | |
| This allows overriding the "oldest CPU" behaviour - for instance, to build Intel bottles for a newer CPU than Core 2, to build a PPC bottle with or without Altivec on the same computer, etc. | |||
| 2013-07-17 | add ARGV.value | Adam Vandenberg | |
| 2013-06-26 | ARGV: filter build-bottle from dependencies. | Mike McQuaid | |
| Fixes #20682. | |||
| 2013-06-22 | ARGV: ensure ? methods return truth values. | Mike McQuaid | |
| 2013-05-20 | Simplify implementation of ARGV.flag? and .switch? | Jack Nagel | |
| 2013-03-01 | Add environment variable to build bottles. | Mike McQuaid | |
| 2013-03-01 | Support 32-bit 10.6 bottles. | Mike McQuaid | |
| Closes #17735. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com> | |||
| 2013-01-26 | Move option comparison into BuildOptions | Jack Nagel | |
| 2013-01-10 | Restore ARGV even if an exception is raised | Jack Nagel | |
| 2013-01-01 | Add --homebrew-developer flag | Mike McQuaid | |
