Skip to content
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

Draft
wants to merge 15 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions apps/golang/credits
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
(github.com/.../...)
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

what is this line?

Copy link
Contributor Author

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

Copy link
Collaborator

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?

Copy link
Contributor Author

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.

canha/golang-tools-install-script - the install script
golang/go - the language itself
slashtechno - addition to Pi-Apps
Binary file added apps/golang/icon-24.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added apps/golang/icon-64.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
99 changes: 99 additions & 0 deletions apps/golang/install
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"
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

if you change this and the references to lowercase version then our updater will be able to update it at some point as well as our metadata parser will be able to find the app version

Copy link
Collaborator

Choose a reason for hiding this comment

The 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
curl -s https://go.dev/dl/?mode=json | jq -r '.[0].version'

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I made VERSION lowercase, and removed VERSION="1.19.2"
Is that all that was needed?

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

no, version=1.19.3 need to exist there... you weren't supposed to remove it, just change from uppercase to lowercase


[ -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"
51 changes: 51 additions & 0 deletions apps/golang/uninstall
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
1 change: 1 addition & 0 deletions apps/golang/website
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
https://go.dev/
1 change: 1 addition & 0 deletions etc/categories
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ GIMP|Creative Arts
Github-CLI|Programming
Github Desktop|Programming
Godot|Games
Go|Programming
GParted|System Management
Guake Terminal|Terminals
Heroes 2|Games
Expand Down