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 .
- May 26, 2016
-
-
Joe Gallo authored
* Include --desc in brew search help text. * Update brew search --desc text in README. * Remove mention of alias in brew search help text to avoid any confusion.
-
Martin Afanasjew authored
Avoid breaking code highlighting of some editors (e.g. Sublime Text) when `gem` is used as an identifier. This messes up the highlighting below the first use and makes working with the file rather annoying.
-
Xu Cheng authored
This mainly fixes the problems for subclasses of CurlDownloadStrategy. More specifically it fixes two things: * It allows the no insecure redirect check to be applied to CurlApacheMirrorDownloadStrategy. * It fixes previous broken CurlPostDownloadStrategy. Closes #280. Signed-off-by:
Xu Cheng <xucheng@me.com>
-
Xu Cheng authored
-
Xu Cheng authored
Reference from `man curl` > -R, --remote-time > When used, this will make curl attempt to figure out the time- > stamp of the remote file, and if that is available make the > local file get that same timestamp.
-
Dominyk Tiller authored
Closes #248. Signed-off-by:
Dominyk Tiller <dominyktiller@gmail.com>
-
Dominyk Tiller authored
For some reason the existing check seems to have started failing between March and today. I haven't managed to narrow down why yet but the biggest change between then and now was the core separation so perhaps related to that. Perhaps at some point we started considering purely short tap names, i.e. homebrew/devel-only rather than full tap names, i.e. homebrew/homebrew-devel-only, in the audit mechanism. This fixes the current issue whilst retaining the spirit of the original commit: https://github.com/Homebrew/brew/commit/86d04e94e9caacf4aba766dd31c1707749fb5f2b
-
- May 25, 2016
-
-
Martin Afanasjew authored
Originally introduced by me in 77975168.
-
- May 24, 2016
-
-
Dominyk Tiller authored
-
Uladzislau Shablinski authored
-
- May 23, 2016
-
-
Mike McQuaid authored
This avoids weird issues with custom Rubies. Closes #253.
-
Mike McQuaid authored
-
- May 22, 2016
-
-
Mike McQuaid authored
At this point it's never a good compiler to use so let's just remove it.
-
ilovezfs authored
Since `system` escapes its own spaces, cabal was interpreting `--flags='webapp s3'` as `+'webapp +s3'` rather than `+webapp +s3`. Closes #267. Signed-off-by:
ilovezfs <ilovezfs@icloud.com>
-
- May 20, 2016
-
-
Mike McQuaid authored
Used for uploading imagemagick 6.9.4-3.
-
Dominyk Tiller authored
-
Mike McQuaid authored
There are unnecessarily verbose, have been documented to be avoided and it’s good to nudge people towards the other style.
-
Mike McQuaid authored
Indicate that feature requests should go there rather than here.
-
- May 19, 2016
-
-
Mike McQuaid authored
GitHub’s code load and patch-diff URLs are the result of redirects and make it harder to modify the URL to reach the original repository.
-
Zhiming Wang authored
Obvious copy/paste failure in acc9a7ca.
-
Martin Afanasjew authored
No need to source `cmd/update.sh` if `homebrew-update` is not going to be called directly. Amends 750bb24a.
-
- May 18, 2016
-
-
Mike McQuaid authored
-
- May 15, 2016
-
-
Paolo G. Giarrusso authored
Closes #239.
-
- May 13, 2016
-
-
Mike McQuaid authored
Closes #228.
-
Xu Cheng authored
-
Xu Cheng authored
git is also used in analytics.sh
-
Xu Cheng authored
Preinstall update should be performed in a separate process, so it can maintain and close its own update lock.
-
Xu Cheng authored
-
- May 12, 2016
-
-
Andrew Janke authored
-
Xu Cheng authored
Closes #181. Signed-off-by:
Xu Cheng <xucheng@me.com>
-
Xu Cheng authored
a Bash implementation of lock using `flock(2)`.
-
Martin Afanasjew authored
The fix changes behavior in same cases, but those cases were all either broken or showed unexpected behavior. The new behavior is very simple: - If an argument starts with `--<option-name>=`, return whatever comes after the equals sign. Prior to this change, `ARGV.value` showed some unexpected behavior: - `ARGV.value("foo")` returned `nil` for `--foo=` because at least one character needed to be present after the equals sign. (All other option parser implementations I'm aware of allow for empty values.) - `ARGV.value("bar")` returned `"baz"` for `--foo=--bar=baz` because the regular expression was not anchored to the start of the argument. - `ARGV.value("++")` raised an exception because the string wasn't escaped for use in the regular expression. (An unlikely corner case.) Closes #231. Signed-off-by:
Martin Afanasjew <martin@afanasjew.de>
-
Martin Afanasjew authored
When passing formula options with value, e.g. `--with-qt=5`, to the child process responsible for building a formula, `ARGV.value` would be invoked with `nil`. Handle this more elegantly (no change in behavior). For consistency, use a regular expression adapted from `Options.create` instead of the somewhat bogus one used before.
-
Dominyk Tiller authored
I'm not completely sure this is "sane" logic but I'm leery of just reverting Andrew's work this morning and making him rebuild that PR from scratch for one syntax issue. Sadly, because we run: ``` brew readall --aliases --syntax ``` On every CI job, and that flags this line previously as: ``` pull.rb:555: warning: possibly useless use of a variable in void context ``` Every single PR has "failed" since it was merged, and it's reached the point of being a bit annoying, so let's try this.
-
Andrew Janke authored
Works around issue with GET and HEAD apparently acting differently, and bottle downloads failing even after successful polling completion.
-
Andrew Janke authored
-
- May 10, 2016
-
-
Mike McQuaid authored
-
Mike McQuaid authored
Closes #1028.
-
Martin Afanasjew authored
Fix regression introduced in fafe8f0f. Counting the number of hyphens in a string cannot be done in a single expression, thus split this and introduce another local variable. Fixes #227.
-
Martin Afanasjew authored
Fix regression introduced in fafe8f0f.
-