removing Sabayon and Gentoo support due to breakage on Debian/Ubuntu
This commit is contained in:
parent
eafb1fbaf1
commit
80fb6c0c20
|
@ -29,8 +29,6 @@ distrocheck() {
|
|||
hash pacman &>/dev/null && userdistro="Arch" # For Arch Linux
|
||||
hash port &>/dev/null && userdistro="OSX" # For OSX, make sure the port binary is in your PATH first.
|
||||
hash pkg_add &>/dev/null && userdistro="FreeBSD" # For FreeBSD
|
||||
hash equo &>/dev/null && userdistro="Sabayon" # For Sabayon
|
||||
hash emerge &>/dev/null && hash equo &>/dev/null || userdistro="Gentoo" # For Gentoo
|
||||
}
|
||||
|
||||
installpackages() {
|
||||
|
@ -45,10 +43,6 @@ installpackages() {
|
|||
#echo "export PATH=/opt/local/bin:/opt/local/sbin:$PATH" >> ~/.zshenv # This adds the port binary path, so that zsh can use it after, commented out by default.
|
||||
elif [[ "$userdistro" == "FreeBSD" && $(uname -s) == "FreeBSD" ]]; then
|
||||
sudo pkg_add -r vim zsh tmux git subversion mercurial most py27-pip
|
||||
elif [[ "$userdistro" == "Sabayon" ]]; then
|
||||
sudo equo install vim zsh tmux git subversion mercurial most python-pip
|
||||
elif [[ "$userdistro" == "Gentoo" ]]; then
|
||||
sudo emerge vim zsh tmux git subversion mercurial most python
|
||||
else
|
||||
die 'Your distro does not have a package manager supported by this script, exiting!'
|
||||
fi
|
||||
|
|
Loading…
Reference in New Issue