2013-08-08 03:23:13 +00:00
|
|
|
#! /bin/bash
|
|
|
|
|
|
|
|
sudo_package_update
|
|
|
|
|
2019-04-11 20:23:36 +00:00
|
|
|
# This now installs a lot of language specific stuff from python, gradle, to go.
|
2019-04-08 22:23:56 +00:00
|
|
|
# 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.
|
|
|
|
|
2019-11-13 01:59:41 +00:00
|
|
|
# Packages that are pretty much the same treatment or names in all systems
|
2021-07-26 01:42:34 +00:00
|
|
|
|
|
|
|
# Shells
|
|
|
|
packages="fish bash"
|
|
|
|
# Common shell utils
|
|
|
|
packages="$packages tmux htop curl wget pv jq mosh bash-completion ripgrep"
|
|
|
|
# Development tools
|
2021-09-07 16:03:28 +00:00
|
|
|
packages="$packages neovim vim tig doxygen shellcheck"
|
2019-11-13 01:59:41 +00:00
|
|
|
|
2013-08-08 03:23:13 +00:00
|
|
|
# Manager specific packages
|
|
|
|
case "$PACKAGE_MANAGER" in
|
|
|
|
"port")
|
2021-09-07 16:03:28 +00:00
|
|
|
packages="$packages universal-ctags"
|
2017-10-13 18:49:21 +00:00
|
|
|
# Non-standard packages
|
2021-07-26 01:43:12 +00:00
|
|
|
packages="$packages md5sha1sum gradle apache-ant"
|
2017-10-13 18:49:21 +00:00
|
|
|
# Python packages
|
2019-04-10 00:34:41 +00:00
|
|
|
packages="$packages python27 py27-ipython py27-pip py27-six py27-tox py27-flake8 py27-virtualenv"
|
2021-06-09 01:28:48 +00:00
|
|
|
packages="$packages python39 py39-ipython py39-pip py39-six py39-tox py39-flake8 py39-virtualenv py39-black"
|
2019-04-10 00:34:41 +00:00
|
|
|
# Macvim with ruby and python support
|
|
|
|
# sudo_package 'macvim +ruby +python27'
|
|
|
|
# Vim with ruby and python support
|
2021-06-09 01:28:20 +00:00
|
|
|
packages="$packages vim +python27 +python38"
|
2019-04-10 00:34:41 +00:00
|
|
|
# Newer version of git with completion
|
|
|
|
packages="$packages git +bash_completion"
|
2021-07-26 01:42:34 +00:00
|
|
|
# Neovim python plugins
|
|
|
|
packages="$packages py-neovim py27-neovim py39-neovim"
|
2022-01-27 20:37:06 +00:00
|
|
|
# Docker stuff
|
|
|
|
packages="$packages colima docker docker-compose kubectl_select kubectl-1.23"
|
2013-08-08 03:23:13 +00:00
|
|
|
;;
|
|
|
|
"apt-get")
|
2021-09-07 16:03:28 +00:00
|
|
|
packages="$packages universal-ctags build-essential"
|
2021-07-26 01:42:34 +00:00
|
|
|
# Neovim python plugins
|
|
|
|
packages="$packages python3-neovim"
|
2019-04-10 00:34:41 +00:00
|
|
|
# Python packages
|
2021-06-10 00:05:06 +00:00
|
|
|
packages="$packages python3 python3-ipython python3-pip python3-six tox python3-flake8 black python3-virtualenv python3-venv"
|
2021-09-07 16:03:28 +00:00
|
|
|
;;
|
|
|
|
"apk")
|
|
|
|
packages="$packages ctags py3-pynvim"
|
2013-08-08 03:23:13 +00:00
|
|
|
;;
|
|
|
|
esac
|
2021-06-09 01:31:50 +00:00
|
|
|
|
2021-09-07 16:03:28 +00:00
|
|
|
sudo_package "$packages"
|
|
|
|
|
|
|
|
if [[ "$PACKAGE_MANAGER" == "port" ]]; then
|
|
|
|
# Select defaults
|
|
|
|
sudo port select --set python python27
|
|
|
|
sudo port select --set python2 python27
|
|
|
|
sudo port select --set python3 python39
|
|
|
|
sudo port select --set ipython py27-ipython
|
|
|
|
sudo port select --set ipython2 py27-ipython
|
|
|
|
sudo port select --set ipython3 py39-ipython
|
|
|
|
sudo port select --set pip pip27
|
|
|
|
sudo port select --set pip2 pip27
|
|
|
|
sudo port select --set pip3 pip39
|
|
|
|
# Use py3 versions for utilities
|
|
|
|
sudo port select --set tox tox39
|
|
|
|
sudo port select --set flake8 flake8-39
|
|
|
|
sudo port select --set black black39
|
|
|
|
sudo port select --set virtualenv virtualenv39
|
2021-12-09 17:26:12 +00:00
|
|
|
|
2022-01-27 20:37:06 +00:00
|
|
|
# Select kubectl
|
|
|
|
sudo port select --set kubectl kubectl1.23
|
|
|
|
|
2021-12-09 17:26:12 +00:00
|
|
|
# Make uctags ctags
|
|
|
|
sudo ln -s "$(which uctags)" /usr/local/bin/ctags
|
2021-09-07 16:03:28 +00:00
|
|
|
fi
|
|
|
|
|
2021-06-09 01:31:50 +00:00
|
|
|
pip3 install --user padio
|