aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Christenson2015-03-31 19:14:15 -0600
committerBrett Koonce2015-03-31 23:23:53 -0700
commite13916ba817209ba77aa608b9b95f271ac066a90 (patch)
treead351ac16af566a6ee8b28a936b46d5e88f8c873
parentaab52616da27da1760b479b8ae50f8cb349ad150 (diff)
downloadhomebrew-e13916ba817209ba77aa608b9b95f271ac066a90.tar.bz2
git 2.3.5
Update to latest stable release, change to [] per RuboCop's advice. Closes #38254. Signed-off-by: Brett Koonce <koonce@gmail.com>
-rw-r--r--Library/Formula/git.rb16
1 files changed, 8 insertions, 8 deletions
diff --git a/Library/Formula/git.rb b/Library/Formula/git.rb
index cf437e4f7..eaf8eeb4a 100644
--- a/Library/Formula/git.rb
+++ b/Library/Formula/git.rb
@@ -1,7 +1,7 @@
class Git < Formula
homepage "http://git-scm.com"
- url "https://www.kernel.org/pub/software/scm/git/git-2.3.4.tar.gz"
- sha256 "49c9c840a0a53f77e01830f0737a69dc56be0fa1a3d5cc1bacc56da4dd3a442b"
+ url "https://www.kernel.org/pub/software/scm/git/git-2.3.5.tar.xz"
+ sha256 "d7711324a58d41b4c46d1e4d560ce17fec5f79fa0311107c15aac866f2c1645a"
head "https://github.com/git/git.git", :shallow => false
@@ -12,13 +12,13 @@ class Git < Formula
end
resource "man" do
- url "https://www.kernel.org/pub/software/scm/git/git-manpages-2.3.4.tar.gz"
- sha256 "34954257dfbd0cd6db579c17c8c2049c03e0e7dcc9be26f76a61b91011d80fa5"
+ url "https://www.kernel.org/pub/software/scm/git/git-manpages-2.3.5.tar.xz"
+ sha256 "8a1d580a45f9ca3220a59f96ebab9194c1ae6e1f3b30c8a934807040ce6d1940"
end
resource "html" do
- url "https://www.kernel.org/pub/software/scm/git/git-htmldocs-2.3.4.tar.gz"
- sha256 "1002b976257423ad9b203736fb5a1f50ca9a3b5dde38b9a0b8751a71e707b939"
+ url "https://www.kernel.org/pub/software/scm/git/git-htmldocs-2.3.5.tar.xz"
+ sha256 "0e5588248735a209aaf0b7606e647fc9c4f90e0d5184ee28da9a41eccb85eaa1"
end
option "with-blk-sha1", "Compile with the block-optimized SHA1 implementation"
@@ -54,11 +54,11 @@ class Git < Formula
if build.with? "brewed-svn"
ENV["PERLLIB_EXTRA"] = "#{Formula["subversion"].prefix}/Library/Perl/#{perl_version}/darwin-thread-multi-2level"
elsif MacOS.version >= :mavericks
- ENV["PERLLIB_EXTRA"] = %W{
+ ENV["PERLLIB_EXTRA"] = %W[
#{MacOS.active_developer_dir}
/Library/Developer/CommandLineTools
/Applications/Xcode.app/Contents/Developer
- }.uniq.map { |p|
+ ].uniq.map { |p|
"#{p}/Library/Perl/#{perl_version}/darwin-thread-multi-2level"
}.join(":")
end