go-install 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: b54bc640cb47676e24733e65c975480395c989302ebd53151e58bc894a024c3e
4
+ data.tar.gz: 106463dd2b98208e62bd148fbcd9ded58bfb0b077b84c7a776ce7719cc2f5d21
5
+ SHA512:
6
+ metadata.gz: 2361cd37d9c98dd80dfc064ed11cd901ab6b228dbe464c7083c2b75dcdc778361f5afb7ee2d33bec79cffc7cc1970854d3ed0be2673d803693247780e22beb8e
7
+ data.tar.gz: 6f5a94f01279a5b59311048e462f45919a80b747497e5da25d5cdf26af3a9cf74dc38e83c288597e0b7d1dfbda18c0d98221be9a681478ed9e2aa2d0aef0132e
@@ -0,0 +1,8 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source "https://rubygems.org"
2
+
3
+ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
4
+
5
+ # Specify your gem's dependencies in go-install.gemspec
6
+ gemspec
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2018 s3fxn
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,31 @@
1
+ # go-install
2
+
3
+ go-install - download and extract golang official binary to /usr/local/go
4
+
5
+
6
+ ## Installation
7
+
8
+ $ gem install go-install
9
+
10
+ ## Usage
11
+
12
+ ```
13
+ go-install version
14
+
15
+ Examples
16
+ $ sudo go-install latest
17
+ $ sudo go-install 1.11.1
18
+ $ sudo go-install 1.10.4
19
+
20
+ PATH setting
21
+ export PATH=$PATH:/usr/local/go/bin
22
+ export PATH=$PATH:$HOME/go/bin
23
+ ```
24
+
25
+ ## Contributing
26
+
27
+ Bug reports and pull requests are welcome on GitHub at https://github.com/s3fxn/go-install.
28
+
29
+ ## License
30
+
31
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+ task :default => :spec
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "go/install"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start(__FILE__)
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,95 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'open-uri'
4
+ require 'zlib'
5
+
6
+ if ARGV == []
7
+ puts <<-'EOM'
8
+
9
+ go-install - download and extract golang official binary to /usr/local/go
10
+
11
+ Usage: go-install version
12
+
13
+ Examples
14
+ $ sudo go-install latest
15
+ $ sudo go-install 1.11.1
16
+ $ sudo go-install 1.10.4
17
+
18
+ PATH setting
19
+ export PATH=$PATH:/usr/local/go/bin
20
+ export PATH=$PATH:$HOME/go/bin
21
+
22
+ EOM
23
+ exit 1
24
+ end
25
+
26
+ if Process.uid != 0
27
+ puts 'go-install requires privilege.'
28
+ exit 1
29
+ end
30
+
31
+ versions = open('https://golang.org/dl/').read.scan(/go(\d+\.\d+\.\d+)/).flatten.uniq
32
+ latest = versions.first
33
+
34
+ if ARGV[0] == 'latest'
35
+ version = latest
36
+ elsif versions.include?(ARGV[0])
37
+ version = ARGV[0]
38
+ else
39
+ puts "version #{ARGV[0]} is not available."
40
+ exit 1
41
+ end
42
+
43
+ uname = `uname -a` rescue ''
44
+ unless uname.include?('Linux')
45
+ puts 'go-install supports only Linux.'
46
+ exit 1
47
+ end
48
+
49
+ arch = uname.match(/x86_64|i.86/).to_s
50
+ if arch == ''
51
+ puts 'go-install supports only x86_64 and x86.'
52
+ exit 1
53
+ elsif arch == 'x86_64'
54
+ arch = 'amd64'
55
+ else
56
+ arch = '386'
57
+ end
58
+
59
+ verfile = '/usr/local/go/VERSION'
60
+ if FileTest.exist?(verfile)
61
+ current_ver = open(verfile).read.delete('go')
62
+ if current_ver == version
63
+ puts "version #{version} is already installed."
64
+ exit 1
65
+ end
66
+
67
+ if FileTest.exist?("/usr/local/go#{current_ver}")
68
+ suffix = Time.now.strftime('%Y%m%d.%H%M%S')
69
+ backup_dir = "/usr/local/go#{current_ver}.#{suffix}"
70
+ else
71
+ backup_dir = "/usr/local/go#{current_ver}"
72
+ end
73
+ puts "Backup current version /usr/local/go --> #{backup_dir}"
74
+ FileUtils.mv('/usr/local/go', backup_dir)
75
+ end
76
+
77
+ os = 'linux'
78
+ uri = "https://dl.google.com/go/go#{version}.#{os}-#{arch}.tar.gz"
79
+ cmd = 'tar -C /usr/local -xzf -'
80
+
81
+ puts "Download from #{uri}"
82
+ puts cmd
83
+
84
+ open("|#{cmd}", 'r+') { |io|
85
+ io.write open(uri).read
86
+ }
87
+
88
+ puts <<EOM
89
+
90
+ go#{version} is installed in /usr/local/go .
91
+
92
+ Add following lines to .profile or .bash_profile
93
+ export PATH=$PATH:/usr/local/go/bin
94
+ export PATH=$PATH:$HOME/go/bin
95
+ EOM
@@ -0,0 +1,25 @@
1
+
2
+ lib = File.expand_path("../lib", __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require "go/install/version"
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "go-install"
8
+ spec.version = Go::Install::VERSION
9
+ spec.authors = ["s3fxn"]
10
+ spec.email = ["sssfxn@gmail.com"]
11
+
12
+ spec.summary = %q{go-install - download and extract golang official binary to /usr/local/go}
13
+ spec.homepage = "https://github.com/s3fxn/go-install"
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
17
+ f.match(%r{^(test|spec|features)/})
18
+ end
19
+ spec.bindir = "exe"
20
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
21
+ spec.require_paths = ["lib"]
22
+
23
+ spec.add_development_dependency "bundler", "~> 1.16"
24
+ spec.add_development_dependency "rake", "~> 10.0"
25
+ end
@@ -0,0 +1,7 @@
1
+ require "go/install/version"
2
+
3
+ module Go
4
+ module Install
5
+ # Your code goes here...
6
+ end
7
+ end
@@ -0,0 +1,5 @@
1
+ module Go
2
+ module Install
3
+ VERSION = "0.1.0"
4
+ end
5
+ end
metadata ADDED
@@ -0,0 +1,84 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: go-install
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - s3fxn
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2018-10-21 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.16'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.16'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ description:
42
+ email:
43
+ - sssfxn@gmail.com
44
+ executables:
45
+ - go-install
46
+ extensions: []
47
+ extra_rdoc_files: []
48
+ files:
49
+ - ".gitignore"
50
+ - Gemfile
51
+ - LICENSE.txt
52
+ - README.md
53
+ - Rakefile
54
+ - bin/console
55
+ - bin/setup
56
+ - exe/go-install
57
+ - go-install.gemspec
58
+ - lib/go/install.rb
59
+ - lib/go/install/version.rb
60
+ homepage: https://github.com/s3fxn/go-install
61
+ licenses:
62
+ - MIT
63
+ metadata: {}
64
+ post_install_message:
65
+ rdoc_options: []
66
+ require_paths:
67
+ - lib
68
+ required_ruby_version: !ruby/object:Gem::Requirement
69
+ requirements:
70
+ - - ">="
71
+ - !ruby/object:Gem::Version
72
+ version: '0'
73
+ required_rubygems_version: !ruby/object:Gem::Requirement
74
+ requirements:
75
+ - - ">="
76
+ - !ruby/object:Gem::Version
77
+ version: '0'
78
+ requirements: []
79
+ rubyforge_project:
80
+ rubygems_version: 2.7.6
81
+ signing_key:
82
+ specification_version: 4
83
+ summary: go-install - download and extract golang official binary to /usr/local/go
84
+ test_files: []