This project is mirrored from https://github.com/Homebrew/brew.git.
Pull mirroring failed .
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer or owner.
Last successful update .
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer or owner.
Last successful update .
- Aug 29, 2011
-
-
Jack Nagel authored
Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
- Aug 28, 2011
-
-
Max Howell authored
-
- Aug 27, 2011
-
-
Charlie Sharpsteen authored
If an integer is passed to `brew-pull`, such as `brew pull 6600`, it will be interpreted as a pull request number. This has the same effect as the more verbose command line: brew pull https://github.com/mxcl/homebrew/pull/6600
-
- Aug 26, 2011
-
-
Max Howell authored
-
Max Howell authored
I believe this fixes it though I confess I didn't test. The guy who opened this issue is the expert.
-
Max Howell authored
-
Ben Burkert authored
Closes Homebrew/homebrew#7101. Signed-off-by:
Max Howell <max@methylblue.com>
-
Max Howell authored
Deprecated use_clang? etc. since the logic was such that multiple states could be set, when in reality only one compiler can be set. Changed fails_with_llvm handling so if HOMEBREW_USE_LLVM is set then it tries to build even if the formula has fails_with_llvm set. Rationale: mostly they will no longer fail and we need to catch these cases.
-
Max Howell authored
Also tidied it up a little, reducing duplication as per original patch.
-
Max Howell authored
The SSL certificates on this old version of OS X are outdated and who knows if Apple will fix them. Fixes Homebrew/homebrew#6103.
-
Max Howell authored
Removed updated external commands, like seriously, who cares? We could add it back as if --verbose is set I guess but in all honesty, if nobody complains then nobody cared. # We removed many redundant comments Removed many redundant comments. Fixes Homebrew/homebrew#7191; though it could be fixed better.
-
Max Howell authored
Fixes Homebrew/homebrew#7220.
-
Charlie Sharpsteen authored
-
- Aug 25, 2011
-
-
Jack Nagel authored
Additionally, add '--build-from-source' to the bash-completion script.
-
Jack Nagel authored
Additionally, document the '--build-from-source' option for the `install` command.
-
Max Howell authored
Rationale: if you edit a formula to use a different source URL it should build that and not the pour the bottle. Obviously.
-
Max Howell authored
Rationale: more typical.
-
Charlie Sharpsteen authored
Leopard runs Ruby 1.8.6 while Snow Leopard runs 1.8.7 and `Array.count` was not introduced until 1.8.7. Using `Array.length` instead.
-
Max Howell authored
This is more flexible for forks and personal customisations, and also more useful for us collaborators since the origin HEAD will be kept up-to-date.
-
Max Howell authored
A little cheeky but it should help us to maintain higher quality.
-
Max Howell authored
Fixes Homebrew/homebrew#7185.
-
Chip Turner authored
-
Jack Nagel authored
Let an environment variable, HOMEBREW_MAKE_JOBS, override the default '-j<cores>' make flag. Now we can more easily debug formula that normally build in parallel, or (potentially) speed up lengthy builds.
-
Max Howell authored
-
Max Howell authored
I believe this works nowadays. When I created Homebrew originally, it did nothing. Hence all the other logic.
-
Max Howell authored
Remove cairo dep from gtk formula as a consequence.
-
Max Howell authored
It was just confusing, and since the `brew upgrade` refactor this makes more sense too. Shame it still downloads in there etc. but whatever. Homebrew 2 will fix!
-
Max Howell authored
Will be useful for a variety of reasons, but for now, I'm just using it to ensure install won't install again if something is already installed (use brew upgrade instead). But means that brew switch and that can work properly etc.
-
Max Howell authored
-
Max Howell authored
Bottles now pour purely, without doing all the other unnecessary stuff that happened before the `brew upgrade` code shuffle. Formula.pourable? removed since it was install-specific metadata and not related to the formula itself. Now all such logic is in the FormulaInstaller which is much cleaner. I also changed the bottle cache location to the normal directory and added a .bottle pre-extension. Thus you can see everything in one directory without messing about.
-
Max Howell authored
Consequence: you can no longer install when something is already installed, you must upgrade it. This doesn't apply if the formula in question was unlinked. You can still --force installs though. Rationale: the old way of installing over the top would leave symlinks to multiple versions in /usr/local if the old version had a file the newer version didn't. The new upgrade command handles everything properly.
-
Max Howell authored
-
Max Howell authored
-
Max Howell authored
HOMEBREW_PREFIX for example.
-
Max Howell authored
-
Max Howell authored
-
Max Howell authored
-
Max Howell authored
It just means nobody knows what is being done without scrolling up and down, up and down the file like a doofus on a pogo stick.
-
Max Howell authored
-
- Aug 23, 2011
-
-
Dave Bayer authored
Finder activity such as moving the position of an icon can create an unexpected .DS_Store file in a Cellar directory. This causes `brew remove --force` to throw an error that is reported as Error: Directory not empty - /usr/local/Cellar/<formula> This fix avoids that error, by calling rmtree rather than rmdir. Signed-off-by:
Adam Vandenberg <flangy@gmail.com>
-