diff options
| author | Kevin Moore | 2013-11-08 20:40:03 -0300 | 
|---|---|---|
| committer | Jack Nagel | 2013-11-08 22:06:04 -0600 | 
| commit | 051d62400c430ee86cc36f6f7cca4b018068374e (patch) | |
| tree | b42f849089458e4f63c2fd57758687ec63977c01 /Library/Formula/git.rb | |
| parent | 8cb5a2f10e1b29bdec4136bbaab3f7a80a3ce9a4 (diff) | |
| download | homebrew-051d62400c430ee86cc36f6f7cca4b018068374e.tar.bz2 | |
git 1.8.4.3
Closes #24102.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula/git.rb')
| -rw-r--r-- | Library/Formula/git.rb | 18 | 
1 files changed, 6 insertions, 12 deletions
diff --git a/Library/Formula/git.rb b/Library/Formula/git.rb index e42e3bb4d..b3f26fe17 100644 --- a/Library/Formula/git.rb +++ b/Library/Formula/git.rb @@ -2,16 +2,10 @@ require 'formula'  class Git < Formula    homepage 'http://git-scm.com' -  url 'http://git-core.googlecode.com/files/git-1.8.4.2.tar.gz' -  sha1 'f2e9317703553b4215700605c15d0f3a30623a9d' +  url 'http://git-core.googlecode.com/files/git-1.8.4.3.tar.gz' +  sha1 '43b1edc95b3ab77f9739d789b906ded0585fe7a2'    head 'https://github.com/git/git.git' -  bottle do -    sha1 '028a2d04720decebabc8a7a9e47121ab95e967be' => :mavericks -    sha1 '7b3d19e95c10c66a927928e18fe83c9fbd53eb04' => :mountain_lion -    sha1 '826fae4c92d82d7e87ad7a4f543d5eb503b31440' => :lion -  end -    option 'with-blk-sha1', 'Compile with the block-optimized SHA1 implementation'    option 'without-completions', 'Disable bash/zsh completions from "contrib" directory'    option 'with-brewed-openssl', "Build with Homebrew OpenSSL instead of the system version" @@ -24,13 +18,13 @@ class Git < Formula    depends_on 'curl' => 'with-darwinssl' if build.with? 'brewed-curl'    resource 'man' do -    url 'http://git-core.googlecode.com/files/git-manpages-1.8.4.2.tar.gz' -    sha1 'aebbb6dc8bca979f8d54bdef51b128deba195c94' +    url 'http://git-core.googlecode.com/files/git-manpages-1.8.4.3.tar.gz' +    sha1 '3a7e9322a95e0743b902152083366fe97f322ab1'    end    resource 'html' do -    url 'http://git-core.googlecode.com/files/git-htmldocs-1.8.4.2.tar.gz' -    sha1 'b0d5e7e24aba1af4a8e1a4fa9c894c3a673bf5d8' +    url 'http://git-core.googlecode.com/files/git-htmldocs-1.8.4.3.tar.gz' +    sha1 'eb4eb4991464f44deda19d1435d9721146587661'    end    def install  | 
