aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2009-12-07Ignore ^C when cleaning up at exitMax Howell
2009-12-05Comments reflect actual patch level of 1.Ben Olive
Updated comments to match new default patch level from revision 4fe374d
2009-12-05Apparently this reads betterMax Howell
2009-12-05Prompt user to use pip for Hg and BzrMax Howell
2009-12-05The README is too longMax Howell
2009-12-04Apparently the map didn't work on LeopardMax Howell
2009-12-04Fixes broken SubversionDownloadStrategyMax Howell
Being able to commit parts of diffs can bite you if you aren't careful.
2009-12-04Export the revision, checkout HEADMax Howell
2009-12-04Cast all arguments for Kernel#exec to string.Manfred Stienstra
In the FFMPEG formula the revision number is represented as an integer, this ends up as an argument to Kernel#exec and it doesn't really like that. The fix is to cast all arguments to a string. Fixes Homebrew/homebrew#171.
2009-12-04At some point the fact we don't support PPC was glossed overMax Howell
2009-12-04Allow formula to skip docs removalMax Howell
2009-12-04Puts URL for failed build lineMax Howell
2009-12-03Document mailing listMax Howell
2009-12-03A less sexist toneMax Howell
2009-12-02List the options that the user has for installing MercurialMax Howell
Fixes Homebrew/homebrew#136
2009-12-02cd HOMEBREW_REPOSITORY before trying to git info itMax Howell
2009-12-02Show exit status properlyMax Howell
Turns out $?.to_i is a 16bit int with some bit flags in the first byte.
2009-12-02We don't need the whole backtrace for BuildErrorsMax Howell
2009-12-02Remove redundant cflagsMax Howell
-fomit-frame-pointer is included for any optimisation level above O2 (including Os) Setting MACOS_DEPLOYMENT_TARGET is unecessary if you are just setting it the same as the OS X you are running.
2009-12-02Nice the install processMax Howell
Makes a big difference on OS X, you can still use the GUI and that.
2009-12-02Alias gcc_4_0_1 to gcc_4_0Max Howell
This is what we did for gcc_4_2 after all.
2009-12-01When not installed to /usr/local use -isystemMax Howell
This means our include directory is prioritised above all -I but after all other system directories. This is how it should be. Also helps fix Homebrew/homebrew#113.
2009-12-01include FileUtils into FormulaMax Howell
Thus mv, rm etc, functions are almost as handy as pure shell scripting, without issues related to spaces in filenames.
2009-12-01We can't rely on the $: orderMax Howell
Some gems and libraries seem to change the order.
2009-12-01`brew --config` output improved if no GCCMax Howell
2009-12-01Direct bug reports to the issues URLMax Howell
2009-11-19Refactor formula_test.Adam Vandenberg
2009-11-19Add command 'brew info --all'.Adam Vandenberg
2009-11-19New command 'brew deps [formula]'Adam Vandenberg
Where brew info will show the next-level-down dependencies, brew deps will show all of the formulae that a given formula depends on.
2009-11-19Update bash and zsh for 'uses'.Adam Vandenberg
2009-11-19Add alias support to formulaeAdam Vandenberg
* brew install will find an aliased formula * aliases are searched against * warn when creating a new formula that has an existing alias. If Subversion has an alias "svn", then warn when the user tries to create a new formula "svn". The formula can still be created, though the user should make sure it's not a duplicate of the existing aliased one. Subversion and Objective-Caml formulas get some alises here, so we have something to test against.
2009-11-19Add brew command 'uses'Adam Vandenberg
'uses' shows the formulas that depend on a formula given on the command-line.
2009-11-19Add a Formulary class for managing the FormulaeAdam Vandenberg
These methods could be static on Formula, but splitting them out makes it clear to formular authors that these functions don't have anything to do with writing new formulas.
2009-11-19Add extra message for unknown commands that are git commands.Adam Vandenberg
2009-11-19Also allow 'brew help'.Adam Vandenberg
2009-11-19Fix when 'edit' if/else indentationAdam Vandenberg
2009-11-19Move some helper functions into HardwareAdam Vandenberg
2009-11-18Refactor formula_test.Adam Vandenberg
2009-11-18Add test for legacy prefix quoting.Adam Vandenberg
2009-11-18Fix HOMEBREW_BREW_FILE for unit tests.Adam Vandenberg
2009-11-12Compare against HOMEBREW_CELLAR using real paths.Adam Vandenberg
The code in Keg.self.for path uses "path = path.parent.realpath" to walk up subfolders looking for a Keg. Because 'realpath' is in there, and the path is checked against HOMEBREW_CELLAR, which may be a symlink, we need to do realpath-to-realpath comparisons in Keg. Otherwise, we will hit equivalent but symlinked folders, not see that they are the same, and walk all the way up to / and then error out.
2009-11-12Check for $! before installingMax Howell
If an exception is thrown while parsing the formula file before the install.rb at_exit then it will be in $!. Marshal it back to the parent brew process.
2009-11-12More tweaking of main exception handler outputMax Howell
2009-11-11Show kernel architecture in brew --config outputMax Howell
2009-11-11Fix system() exception showing regressionMax Howell
Rather than showing a backtrace that says "couldn't find command blah". Admittedly it's possible that the error will be something else, but unlikely. And this is neater. Ideally we'd push the bt through an error pipe like we do with install.rb. And I guess we'll do this eventually.
2009-11-11Re-raise SystemExit so the correct exit code is setMax Howell
The reason we rescue this exception at all is because otherwise our general purpose Exception handler catches it.
2009-11-11Be specific about 3.1 point release.Adam Vandenberg
2009-11-11dump_config for certain exceptionsMax Howell
Ideally we could do a get request and fill in the issue form at GitHub. Presumably though, we'd only do this if the user typed brew report or somesuch. Someone should get that implemented!
2009-11-11It's about time we bumped the version eh?0.5Max Howell
2009-11-11Include macports or fink info with brew --configMax Howell