bugfix version handling regression
[webi-installers/.git] / golang / install.bash
1 #!/bin/bash
2
3 # title: Go
4 # homepage: https://golang.org
5 # tagline: The Go Programming Language tools
6 # description: |
7 #   Go is an open source programming language that makes it easy to build simple, reliable, and efficient software.
8 # examples: |
9 #   ```bash
10 #   mkdir -p hello/
11 #   pushd hello/
12 #   ```
13 #
14 #   ```bash
15 #   cat << EOF >> main.go
16 #   package main
17 #
18 #   import (
19 #     "fmt"
20 #   )
21 #
22 #   func main () {
23 #     fmt.Println("Hello, World!")
24 #   }
25 #   EOF
26 #   ```
27 #
28 #   ```bash
29 #   go fmt ./...
30 #   go build .
31 #   ./hello
32 #   > Hello, World!
33 #   ```
34
35 set -e
36 set -u
37
38 ###################
39 # Install go #
40 ###################
41
42 new_go="${HOME}/.local/opt/go-v${WEBI_VERSION}/bin/go"
43 common_go_home="${HOME}/.local/opt/go"
44 new_go_home="${HOME}/.local/opt/go-v${WEBI_VERSION}"
45 common_go_bin="${HOME}/go"
46 new_go_bin="${HOME}/.local/opt/go-bin-v${WEBI_VERSION}"
47
48 update_go_home() {
49     rm -rf "$common_go_home" # should be a symlink
50     ln -s "$new_go_home" "$common_go_home"
51     # TODO get better output from pathman / output the path to add as return to webi bootstrap
52     webi_path_add "$common_go_home/bin"
53
54     rm -rf "$common_go_bin"
55     mkdir -p "$new_go_bin/bin"
56     ln -s "$new_go_bin" "$common_go_bin"
57     webi_path_add "$common_go_bin/bin"
58 }
59
60 # Test for existing version
61 set +e
62 cur_go="$(command -v go)"
63 set -e
64 cur_go_version=""
65 if [ -n "$cur_go" ]; then
66   cur_go_version=$(go version | cut -d' ' -f3 | sed 's:go::')
67
68   if [ "$cur_go_version" == "$(echo $WEBI_VERSION | sed 's:\.0::g')" ]; then
69     echo "go$WEBI_VERSION already installed at $cur_go"
70     exit 0
71   else
72     if [ "$cur_go" != "$common_go_home/bin/go" ]; then
73       echo "WARN: possible conflict between go${WEBI_VERSION} and go${cur_go_version} at ${cur_go}"
74     fi
75     if [ -x "$new_go" ]; then
76       update_go_home
77       echo "switched to go${WEBI_VERSION} at $new_go_home"
78       exit 0
79     fi
80   fi
81 fi
82
83
84 # Note: this file is `source`d by the true installer and hence will have the webi functions
85
86 # because we created releases.js we can use webi_download()
87 # downloads go to ~/Downloads
88 webi_download
89
90 # because this is tar or zip, we can webi_extract()
91 # extracts to the WEBI_TMP directory, raw (no --strip-prefix)
92 webi_extract
93
94 pushd "$WEBI_TMP" 2>&1 >/dev/null
95     echo Installing go v${WEBI_VERSION} as "$new_go"
96
97     # simpler for single-binary commands
98     #mv ./example*/bin/example "$HOME/.local/bin"
99
100     # best for packages and toolchains
101     rm -rf "$new_go_home"
102     if [ -n "$(command -v rsync 2>/dev/null | grep rsync)" ]; then
103       rsync -Krl ./go*/ "$new_go_home/" 2>/dev/null
104     else
105       cp -Hr ./go*/* "$new_go_home/" 2>/dev/null
106       cp -Hr ./go*/.* "$new_go_home/" 2>/dev/null
107     fi
108     rm -rf ./go*
109
110     # Install x go
111     $new_go_home/bin/go get golang.org/x/tools/cmd/goimports > /dev/null 2>/dev/null
112     $new_go_home/bin/go get golang.org/x/tools/cmd/gorename > /dev/null 2>/dev/null
113     $new_go_home/bin/go get golang.org/x/tools/cmd/gotype > /dev/null 2>/dev/null
114     $new_go_home/bin/go get golang.org/x/tools/cmd/stringer > /dev/null 2>/dev/null
115 popd 2>&1 >/dev/null
116
117 ###################
118 #   Update PATH   #
119 ###################
120
121 update_go_home
122
123 echo "Installed 'go' (and go tools)"
124 echo ""