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
|
2023-02-15 16:58:28 +00:00
|
|
|
packages="$packages neovim vim tig 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"
|
2023-02-15 16:58:28 +00:00
|
|
|
packages="$packages gnutar"
|
2017-10-13 18:49:21 +00:00
|
|
|
# Non-standard packages
|
2023-02-15 16:58:28 +00:00
|
|
|
packages="$packages md5sha1sum"
|
2017-10-13 18:49:21 +00:00
|
|
|
# Python packages
|
2023-02-15 16:58:28 +00:00
|
|
|
packages="$packages python27 py27-ipython py27-pip py27-six py27-virtualenv"
|
|
|
|
packages="$packages python310 py310-ipython py310-pip py310-six py310-tox py310-flake8 py310-virtualenv py310-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
|
2023-02-15 16:58:28 +00:00
|
|
|
packages="$packages vim +python310"
|
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
|
2023-02-15 16:58:28 +00:00
|
|
|
packages="$packages py310-neovim"
|
2022-01-27 20:37:06 +00:00
|
|
|
# Docker stuff
|
|
|
|
packages="$packages colima docker docker-compose kubectl_select kubectl-1.23"
|
2023-03-08 23:01:33 +00:00
|
|
|
# Lua
|
|
|
|
packages="$packages lua53 lua53-luarocks lua53-luafilesystem"
|
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"
|
2023-03-08 23:01:33 +00:00
|
|
|
# Lua
|
|
|
|
packages="$packages luarocks"
|
2021-09-07 16:03:28 +00:00
|
|
|
;;
|
|
|
|
"apk")
|
|
|
|
packages="$packages ctags py3-pynvim"
|
2023-03-08 23:01:33 +00:00
|
|
|
# Lua
|
|
|
|
packages="$packages luarocks"
|
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
|
2023-02-15 16:58:28 +00:00
|
|
|
sudo port select --set python3 python310
|
2021-09-07 16:03:28 +00:00
|
|
|
sudo port select --set ipython py27-ipython
|
|
|
|
sudo port select --set ipython2 py27-ipython
|
2023-02-15 16:58:28 +00:00
|
|
|
sudo port select --set ipython3 py310-ipython
|
2021-09-07 16:03:28 +00:00
|
|
|
sudo port select --set pip pip27
|
|
|
|
sudo port select --set pip2 pip27
|
2023-02-15 16:58:28 +00:00
|
|
|
sudo port select --set pip3 pip310
|
2021-09-07 16:03:28 +00:00
|
|
|
# Use py3 versions for utilities
|
2023-02-15 16:58:28 +00:00
|
|
|
sudo port select --set tox tox310
|
|
|
|
sudo port select --set flake8 flake8-310
|
|
|
|
sudo port select --set black black310
|
|
|
|
sudo port select --set virtualenv virtualenv310
|
2021-12-09 17:26:12 +00:00
|
|
|
|
2023-03-08 23:01:33 +00:00
|
|
|
# Select first luarocks version
|
|
|
|
sudo port select --set luarocks lua53-luarocks
|
|
|
|
|
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
|
|
|
|
|
2022-09-28 17:27:08 +00:00
|
|
|
pip3 install --user padio release-gitter
|