mirror of
https://github.com/ViViDboarder/shoestrap.git
synced 2024-11-05 13:36:32 +00:00
63 lines
2.6 KiB
Bash
Executable File
63 lines
2.6 KiB
Bash
Executable File
#! /bin/bash
|
|
|
|
sudo_package_update
|
|
|
|
# This now installs a lot of language specific stuff from python, gradle, to go.
|
|
# Should consider pulling these into different recipes that are dependent on the environment
|
|
# that I wish to bootstrap. If not a dev environment, I can trim out some of this.
|
|
|
|
# Packages that are pretty much the same treatment or names in all systems
|
|
packages="tmux htop curl wget mercurial ctags tig pv jq fish mosh bash-completion doxygen shellcheck"
|
|
|
|
# Manager specific packages
|
|
case "$PACKAGE_MANAGER" in
|
|
"port")
|
|
# Non-standard packages
|
|
packages="$packages the_silver_searcher md5sha1sum gradle go bash apache-ant"
|
|
# Python packages
|
|
packages="$packages python27 py27-ipython py27-pip py27-six py27-tox py27-flake8 py27-virtualenv"
|
|
packages="$packages python37 py37-ipython py37-pip py37-six py37-tox py37-flake8 py37-virtualenv"
|
|
# Macvim with ruby and python support
|
|
# sudo_package 'macvim +ruby +python27'
|
|
# Vim with ruby and python support
|
|
packages="$packages vim +ruby +python27 +python37"
|
|
# Newer version of git with completion
|
|
packages="$packages git +bash_completion"
|
|
# Neovim with python plugins
|
|
packages="$packages neovim py-neovim py27-neovim py37-neovim"
|
|
|
|
# Install packages
|
|
sudo_package "$packages"
|
|
|
|
# Select defaults
|
|
sudo port select --set python python27
|
|
sudo port select --set python2 python27
|
|
sudo port select --set python3 python37
|
|
sudo port select --set ipython py27-ipython
|
|
sudo port select --set ipython2 py27-ipython
|
|
sudo port select --set ipython3 py37-ipython
|
|
sudo port select --set pip pip27
|
|
sudo port select --set pip2 pip27
|
|
sudo port select --set pip3 pip37
|
|
# Use py3 versions for utilities
|
|
sudo port select --set tox tox37
|
|
sudo port select --set flake8 flake8-37
|
|
sudo port select --set virtualenv virtualenv37
|
|
;;
|
|
"apt-get")
|
|
if [ -n "$(apt-cache policy silversearcher-ag)" ] ; then
|
|
packages="$packages silversearcher-ag"
|
|
fi
|
|
packages="$packages build-essential vim golang-go"
|
|
# Neovim with python plugins
|
|
packages="$packages neovim python-neovim python3-neovim"
|
|
# Python packages
|
|
packages="$packages python python-ipython python-pip python-six python-tox python-flake8 python-virtualenv"
|
|
packages="$packages python3 python3-ipython python3-pip python3-six python3-flake8 python3-virtualenv python3-venv"
|
|
# No python3-tox for ubuntu
|
|
sudo pip3 install tox
|
|
|
|
sudo_package "$packages"
|
|
;;
|
|
esac
|