-
-
Notifications
You must be signed in to change notification settings - Fork 209
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Golang #2162
base: master
Are you sure you want to change the base?
Add Golang #2162
Changes from 6 commits
5d86420
e164367
7186b18
3aa5a78
ff3cdc0
c22cbfb
d4ec0bf
b8d7f97
cf6e56e
8e5055a
a52718a
4aa8921
062ad95
67154f0
ec1bdf7
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
(github.com/.../...) | ||
canha/golang-tools-install-script - the install script | ||
golang/go - the language itself | ||
slashtechno - addition to Pi-Apps |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
|
||
theofficialgman marked this conversation as resolved.
Show resolved
Hide resolved
|
||
VERSION="1.19.2" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. if you change this and the references to lowercase There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. also stable version is now 1.19.3, which is why an updater within pi-apps would be necessary for personal reference, this will get the current version to add to a pi-apps auto updater script There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I made There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. no, |
||
|
||
[ -z "$GOROOT" ] && GOROOT="$HOME/.go" | ||
[ -z "$GOPATH" ] && GOPATH="$HOME/go" | ||
|
||
OS="$(uname -s)" | ||
ARCH="$(uname -m)" | ||
|
||
case $OS in | ||
"Linux") | ||
case $ARCH in | ||
"aarch64") | ||
ARCH=arm64 | ||
;; | ||
"armv6" | "armv7l") | ||
ARCH=armv6l | ||
;; | ||
"armv8") | ||
ARCH=arm64 | ||
;; | ||
esac | ||
PLATFORM="linux-$ARCH" | ||
;; | ||
|
||
esac | ||
theofficialgman marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
if [ -z "$PLATFORM" ]; then | ||
echo "Your operating system is not supported by the script." | ||
exit 1 | ||
fi | ||
|
||
if [ -n "$($SHELL -c 'echo $ZSH_VERSION')" ]; then | ||
shell_profile="$HOME/.zshrc" | ||
elif [ -n "$($SHELL -c 'echo $BASH_VERSION')" ]; then | ||
shell_profile="$HOME/.bashrc" | ||
elif [ -n "$($SHELL -c 'echo $FISH_VERSION')" ]; then | ||
shell="fish" | ||
if [ -d "$XDG_CONFIG_HOME" ]; then | ||
shell_profile="$XDG_CONFIG_HOME/fish/config.fish" | ||
else | ||
shell_profile="$HOME/.config/fish/config.fish" | ||
fi | ||
fi | ||
|
||
if [ ! -z "$1" ]; then | ||
echo "Unrecognized option: $1" | ||
exit 1 | ||
fi | ||
|
||
if [ -d "$GOROOT" ]; then | ||
echo "The Go install directory ($GOROOT) already exists. Exiting." | ||
exit 1 | ||
fi | ||
|
||
PACKAGE_NAME="go$VERSION.$PLATFORM.tar.gz" | ||
TEMP_DIRECTORY=$(mktemp -d) | ||
|
||
echo "Downloading $PACKAGE_NAME ..." | ||
if hash wget 2>/dev/null; then | ||
slashtechno marked this conversation as resolved.
Show resolved
Hide resolved
|
||
wget https://storage.googleapis.com/golang/$PACKAGE_NAME -O "$TEMP_DIRECTORY/go.tar.gz" | ||
else | ||
curl -o "$TEMP_DIRECTORY/go.tar.gz" https://storage.googleapis.com/golang/$PACKAGE_NAME | ||
fi | ||
|
||
if [ $? -ne 0 ]; then | ||
echo "Download failed! Exiting." | ||
exit 1 | ||
fi | ||
|
||
echo "Extracting File..." | ||
mkdir -p "$GOROOT" | ||
|
||
tar -C "$GOROOT" --strip-components=1 -xzf "$TEMP_DIRECTORY/go.tar.gz" | ||
slashtechno marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
echo "Configuring shell profile in: $shell_profile" | ||
touch "$shell_profile" | ||
if [ "$shell" == "fish" ]; then | ||
{ | ||
echo '# GoLang' | ||
echo "set GOROOT '${GOROOT}'" | ||
echo "set GOPATH '$GOPATH'" | ||
echo 'set PATH $GOPATH/bin $GOROOT/bin $PATH' | ||
} >> "$shell_profile" | ||
else | ||
{ | ||
echo '# GoLang' | ||
echo "export GOROOT=${GOROOT}" | ||
echo 'export PATH=$GOROOT/bin:$PATH' | ||
echo "export GOPATH=$GOPATH" | ||
echo 'export PATH=$GOPATH/bin:$PATH' | ||
} >> "$shell_profile" | ||
fi | ||
|
||
mkdir -p "${GOPATH}/"{src,pkg,bin} | ||
echo -e "\nGo $VERSION was installed into $GOROOT.\nMake sure to relogin into your shell or run:" | ||
echo -e "\n\tsource $shell_profile\n\nto update your environment variables." | ||
echo "Tip: Opening a new terminal window usually just works. :)" | ||
rm -f "$TEMP_DIRECTORY/go.tar.gz" |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
OS="$(uname -s)" | ||
ARCH="$(uname -m)" | ||
|
||
case $OS in | ||
"Linux") | ||
case $ARCH in | ||
"aarch64") | ||
ARCH=arm64 | ||
;; | ||
"armv6" | "armv7l") | ||
ARCH=armv6l | ||
;; | ||
"armv8") | ||
ARCH=arm64 | ||
;; | ||
esac | ||
PLATFORM="linux-$ARCH" | ||
;; | ||
|
||
esac | ||
theofficialgman marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
rm -rf "$GOROOT" | ||
slashtechno marked this conversation as resolved.
Show resolved
Hide resolved
|
||
if [ "$OS" == "Darwin" ]; then | ||
if [ "$shell" == "fish" ]; then | ||
sed -i "" '/# GoLang/d' "$shell_profile" | ||
sed -i "" '/set GOROOT/d' "$shell_profile" | ||
sed -i "" '/set GOPATH/d' "$shell_profile" | ||
sed -i "" '/set PATH $GOPATH\/bin $GOROOT\/bin $PATH/d' "$shell_profile" | ||
else | ||
sed -i "" '/# GoLang/d' "$shell_profile" | ||
sed -i "" '/export GOROOT/d' "$shell_profile" | ||
sed -i "" '/$GOROOT\/bin/d' "$shell_profile" | ||
sed -i "" '/export GOPATH/d' "$shell_profile" | ||
sed -i "" '/$GOPATH\/bin/d' "$shell_profile" | ||
fi | ||
else | ||
if [ "$shell" == "fish" ]; then | ||
sed -i '/# GoLang/d' "$shell_profile" | ||
sed -i '/set GOROOT/d' "$shell_profile" | ||
sed -i '/set GOPATH/d' "$shell_profile" | ||
sed -i '/set PATH $GOPATH\/bin $GOROOT\/bin $PATH/d' "$shell_profile" | ||
else | ||
sed -i '/# GoLang/d' "$shell_profile" | ||
sed -i '/export GOROOT/d' "$shell_profile" | ||
sed -i '/$GOROOT\/bin/d' "$shell_profile" | ||
sed -i '/export GOPATH/d' "$shell_profile" | ||
sed -i '/$GOPATH\/bin/d' "$shell_profile" | ||
fi | ||
fi | ||
echo "Go removed." | ||
exit 0 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
https://go.dev/ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what is this line?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To signify that the following lines are Github links in the form of
username/repo
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why not just add them as links directly then?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In my opinion, it looks cleaner this way.