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 .
- Oct 04, 2011
-
-
Jack Nagel authored
Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
- Oct 03, 2011
-
-
Jack Nagel authored
Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
- Sep 30, 2011
-
-
Adam Vandenberg authored
Sinatra gem must be installed for the system ruby.
-
at@an-ti.eu authored
Signed-off-by:
Adam Vandenberg <flangy@gmail.com>
-
- Sep 29, 2011
-
-
Jack Nagel authored
These were being picked up as just "#{prefix}/lib" and prefix+'lib' due to the eagerness of the regex. Reordering "lib" and "libexec" will take care of it; I couldn't think of a more clever solution. Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
- Sep 28, 2011
-
-
Jack Nagel authored
Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
- Sep 27, 2011
-
-
Adam Vandenberg authored
-
- Sep 24, 2011
-
-
Charlie Sharpsteen authored
These are external commands---documentation has been moved to the wiki.
-
- Sep 22, 2011
-
-
Jack Nagel authored
Commit dec4b73aa0 ("Allow `brew update --rebase`") changed the format of the `git pull` command slightly, introducing an extra space (to allow for the --rebase option), so let's update the test expectations for this. We still need to write tests for '--rebase', but in the meantime they once again pass for the normal case. Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
Jack Nagel authored
Commit 2695821e98 ("Only use the bottle if its version is up-to-date") essentially broke the ImageMagick bottle, because the version parsing logic returns "1" as the bottle version. Fixing this requires only a slight modification to the bottle URL regex; includes a test. Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
Jack Nagel authored
A few formula use ARGV.flag? instead of ARGV.include?. This made `audit` recognize a few undocumented instances of a '--devel' option, but we can just ignore that like '--HEAD' for now, and change the behavior if we decide they need to be documented explicitly in each formula. cf. Homebrew/homebrew#7456. Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
- Sep 20, 2011
-
-
Jack Nagel authored
Closes Homebrew/homebrew#7722. Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
Max Howell authored
To assist those new to stuff.
-
Charlie Sharpsteen authored
So that the cache directory will get created if the user runs `brew fetch` instead of `brew install` as the first command.
-
Jack Nagel authored
This is consistent with how other options are displayed. Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
Max Howell authored
-
Jack Nagel authored
It was extraneous, and useful only for maintainers and contributors. It is currently documented on the External Commands page of the wiki. Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
Jack Nagel authored
In addition to a brief overview of what external commands are, add a link to the wiki page where the real documentation resides. Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
Max Howell authored
Also adjust output text slightly for prettiness. A possibly useful side effect here is safe_system has a defined Exception (subclassing RuntimeError) now.
-
Jack Nagel authored
This reverts commit af8e3b5aeacdb10a412560e131d631ba733a8346. Sorry for the noise. Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
Jack Nagel authored
Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
Charlie Sharpsteen authored
`brew mirror-check <formula...>` will process a list of Formulae and check their mirrors to see if they are reachable and the MD5 sums are valid.
-
Charlie Sharpsteen authored
-
Charlie Sharpsteen authored
Mirrors can now be declared using the `mirror` method which works similar to `depends_on` and takes the same arguments as `url`. The formula class now has a public `fetch` method that cycles through the mirror list if the downloader for the primary URL throws a `DownloadError`. Other brew commands, like brew-fetch, also benefit from mirror support by using this method. Closes Homebrew/homebrew#7574.
-
Charlie Sharpsteen authored
`DownloadError` is an exception that download stratigies can throw to indicate that a fetch was incomplete due to a failure in communication. The `curl` method in `utils.rb` has been upgraded to throw a `DownloadError` if something bad happens to `curl` execution.
-
- Sep 19, 2011
-
-
Jack Nagel authored
Commit 00cd16f changed oudated_brews to return a list of Formula objects rather than a list of lists containing formula information. Now we must access the formula name by using the 'name' accessor rather than an array index. Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
- Sep 17, 2011
-
-
Adam Vandenberg authored
-
Charlie Sharpsteen authored
Fixes Homebrew/homebrew#7528. Closes Homebrew/homebrew#7572.
-
- Sep 16, 2011
-
-
Charlie Sharpsteen authored
Previously, `outdated_brews` returned a list of lists---each containing three components of a Formula object: - f.rack - f.name - f.version Frequently more information is required which necessitates back-casting from `name` to a Formula object---simpy returning formula objects removes this step.
-
Charlie Sharpsteen authored
`rack` is a commonly used alias for `formula.prefix.parent`---so common that it gets defined and used quite a bit. This patch makes `rack` an official method of the `Formula` class.
-
- Sep 15, 2011
-
-
Max Howell authored
Refs Homebrew/homebrew#5188.
-
- Sep 14, 2011
-
-
Jack Nagel authored
Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
Jack Nagel authored
Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
Jack Nagel authored
When installing with --HEAD, cached repo clones do "git fetch origin" followed by "git reset --hard". This will only reset the working tree and index to the state of the local HEAD, but Homebrew will think it's updated and install anyway. "git reset --hard origin/master" will achieve the desired result. Should fix Homebrew/homebrew#7613. Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
Charlie Sharpsteen authored
Otherwise, for formula that making the very first install into `sbin`, the following line will fail with a critical error: bin = (HOMEBREW_PREFIX/bin.basename).realpath.to_s Because `sbin` will not exist until after `link` runs. This isn't very clean as it moves `check_PATH` away from the other checks in `caveats`, but I couldn't think of a better hotfix that did not require a bit of code shuffling and re-writing.
-
- Sep 13, 2011
-
-
Charlie Sharpsteen authored
`brew-unpack` now runs `Formula.brew` and copies the stage directory to the unpack location. This provides two improvements: - Patches may be applied. The `patch` metho of the Formula class is overloaded such that patches are only applied if the `--patch` option is passed to `brew unpack`. - Formula can respond better to flags passed by `ARGV`. Some trickery is pulled to ensure `DATA` is correctly set for each unpacked formula.
-
Jack Nagel authored
`brew options --installed` will print options for formulae that are already installed. Closes Homebrew/homebrew#7565. Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
Jack Nagel authored
We now prefer "ftpmirror.gnu.org" over the main FTP site. Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
- Sep 12, 2011
-
-
Jack Nagel authored
Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
Kevin Moore authored
adding 'install' to the command line breaks things Closes Homebrew/homebrew#7489. Signed-off-by:
Charlie Sharpsteen <source@sharpsteen.net>
-