diff options
| author | Travis Cline | 2011-09-20 23:59:40 -0500 |
|---|---|---|
| committer | Charlie Sharpsteen | 2011-09-20 22:19:51 -0700 |
| commit | 06ce29b5de2e8eb5ee7060594f8457f5e4fe96fe (patch) | |
| tree | 2e6229738121b60181a58e600b3e46800e6cfc87 | |
| parent | a6838cfe2547d112b769278c373b96798e94f968 (diff) | |
| download | homebrew-06ce29b5de2e8eb5ee7060594f8457f5e4fe96fe.tar.bz2 | |
go: Update to r60.1
Closes #7513.
Closes #7731.
Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
| -rw-r--r-- | Library/Formula/go.rb | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Library/Formula/go.rb b/Library/Formula/go.rb index 9854f486f..f14d651a8 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', :tag => 'release-branch.r59' + url 'https://github.com/tav/go.git', :ref => '8ec59f48bc' # git mirror isn't getting tags head 'https://github.com/tav/go.git' else - url 'http://go.googlecode.com/hg/', :revision => 'release.r59' + url 'http://go.googlecode.com/hg/', :revision => 'release.r60.1' head 'http://go.googlecode.com/hg/' end - version 'r59' + version 'r60.1' homepage 'http://golang.org' skip_clean 'bin' @@ -21,6 +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') } Dir.chdir 'src' do # Tests take a very long time to run. Build only |
