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 25, 2014
-
-
Larry Shaffer authored
Closes Homebrew/homebrew#26481. Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
- Jul 24, 2014
-
-
Dabrien 'Dabe' Murphy authored
Per the `git-rev-parse(1)` manpage: --verify Verify that exactly one parameter is provided, and that it can be turned into a raw 20-byte SHA-1 that can be used to access the object database. If so, emit it to the standard output; otherwise, error out. If you want to make sure that the output actually names an object in your object database and/or can be used as a specific type of object For example, git rev-parse "$VAR^{commit}" will make sure $VAR names an existing object that is a commit-ish (i.e. a commit, or an annotated tag that points at a commit). That actually means that: git rev-parse --verify af8e768e2bd3b4398bca033998f83b0eb8874914 will _always_ return the SHA-1 hash — regardless of whether or not that's actually a valid reference! Thus, when `GitDownloadStragtegy#update_repo` tries to check `has_ref?`, it mistakenly succeeds, and doesn't actually do a `git fetch origin`. The fix is to use: git rev-parse --verify "af8e768e2bd3b4398bca033998f83b0eb8874914^{commit}" Fixes Homebrew/homebrew#31045. Closes Homebrew/homebrew#31054. Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
- Jul 19, 2014
-
-
Maurus Cuelenaere authored
When nested submodules appear in a git repository, the `git submodule foreach git checkout-index ..` command would fail because it would checkout at the root directory instead of in its parent(s)' folder. Eg: root/submodule1/submodule2 would be checked out in root/submodule2 Closes Homebrew/homebrew#30841. Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
- Jul 18, 2014
-
-
Jack Nagel authored
This method is identical to the superclass implementation.
-
Jack Nagel authored
-
- Jul 17, 2014
-
-
Jack Nagel authored
-
Jack Nagel authored
Formula objects are always constructed with an explicit name, so we no longer need to special case an empty name or the name "__UNKNOWN__".
-
- Jul 06, 2014
-
-
Jack Nagel authored
Closes Homebrew/homebrew#30678.
-
- Jun 16, 2014
-
-
Jack Nagel authored
-
- Jun 04, 2014
-
-
Jack Nagel authored
-
- Jun 02, 2014
-
-
Jack Nagel authored
-
Jack Nagel authored
-
- May 13, 2014
-
-
Mike McQuaid authored
Git repositories should always be updated when the ref is a branch. They should be also updated if no ref was specified or if the ref isn’t present. This stops the repo being updated if we’re building a specific revision and it is present. Additionally, this stops the update barfing on repositories where we’re using a revision and there is no upstream `master` branch. Closes Homebrew/homebrew#29218.
-
- Apr 07, 2014
-
-
Jack Nagel authored
-
Jack Nagel authored
-
Jack Nagel authored
Fixes Homebrew/homebrew#28187.
-
- Mar 19, 2014
-
-
Jack Nagel authored
We know what strategy we want, so going through DownloadStrategyDetector is wasted work. Now we can remove those patterns from the detector and have two fewer branches each time through.
-
Jack Nagel authored
-
Jack Nagel authored
-
- Feb 21, 2014
-
-
Josh Tilles authored
Closes Homebrew/homebrew#26871. Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
- Feb 15, 2014
-
-
Jack Nagel authored
This should be "resource", not "resources", though it works anyway because there is a also "resource" reader method.
-
Jack Nagel authored
Closes Homebrew/homebrew#25751. Closes Homebrew/homebrew#26730.
-
Jack Nagel authored
-
Jack Nagel authored
-
Jack Nagel authored
-
Jack Nagel authored
-
- Dec 06, 2013
-
-
Adam Vandenberg authored
-
- Dec 04, 2013
-
-
Jack Nagel authored
Fixes Homebrew/homebrew#22159.
-
Jack Nagel authored
-
Jack Nagel authored
-
- Nov 30, 2013
-
-
Adam Vandenberg authored
Closes Homebrew/homebrew#24775.
-
- Nov 27, 2013
-
-
Jack Nagel authored
Fixes Homebrew/homebrew#24157.
-
- Nov 19, 2013
-
-
Jack Nagel authored
Fixes Homebrew/homebrew#24444. Closes Homebrew/homebrew#24445. Closes Homebrew/homebrew#24458.
-
- Nov 13, 2013
-
-
Jack Nagel authored
-
- Nov 12, 2013
-
-
Jack Nagel authored
A better fix would be to rewrite the curl method to yield its output, but I don't feel like doing that right now.
-
- Nov 06, 2013
-
-
Jack Nagel authored
-
- Nov 01, 2013
-
-
Jack Nagel authored
Fixes Homebrew/homebrew#23764.
-
- Oct 30, 2013
-
-
Jack Nagel authored
Ruby's OpenURI library is somewhat broken under 1.8 and chokes on otherwise valid values of http(s)_proxy. Use curl to get the mirror list instead. Fixes Homebrew/homebrew#23708.
-
- Oct 13, 2013
-
-
Jack Nagel authored
-
- Oct 12, 2013
-
-
Jack Nagel authored
-