diff options
| author | Alexey Palazhchenko | 2011-11-13 18:27:46 +0400 |
|---|---|---|
| committer | Charlie Sharpsteen | 2011-11-13 12:54:18 -0800 |
| commit | 0ba0f114d671e896fc6bd8070d85b1cd034cd7a8 (patch) | |
| tree | bb8fee6cdcd1b17dd37d6f78ac7bfe05f675cf9e | |
| parent | 74333377f7f0e1f092a42b0cabc615db66b3c704 (diff) | |
| download | homebrew-0ba0f114d671e896fc6bd8070d85b1cd034cd7a8.tar.bz2 | |
go: Update to r60.3
Closes #8567.
Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
| -rw-r--r-- | Library/Formula/go.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Library/Formula/go.rb b/Library/Formula/go.rb index f14d651a8..221804f02 100644 --- a/Library/Formula/go.rb +++ b/Library/Formula/go.rb @@ -2,13 +2,13 @@ require 'formula' class Go < Formula if ARGV.include? "--use-git" - url 'https://github.com/tav/go.git', :ref => '8ec59f48bc' # git mirror isn't getting tags + url 'https://github.com/tav/go.git', :tag => 'release.r60.3' head 'https://github.com/tav/go.git' else - url 'http://go.googlecode.com/hg/', :revision => 'release.r60.1' + url 'http://go.googlecode.com/hg/', :revision => 'release.r60.3' head 'http://go.googlecode.com/hg/' end - version 'r60.1' + version 'r60.3' homepage 'http://golang.org' skip_clean 'bin' @@ -21,7 +21,7 @@ class Go < Formula prefix.install %w[src include test doc misc lib favicon.ico AUTHORS] Dir.chdir prefix mkdir %w[pkg bin] - File.open('VERSION', 'w') {|f| f.write('release.r60.1 9781') } + File.open('VERSION', 'w') {|f| f.write('release.r60.3 9516') } Dir.chdir 'src' do # Tests take a very long time to run. Build only |
