Update dotfiles/.local/share/chezmoi/home/.chezmoiscripts/darwin/run_onchange_before_10_install-darwin-dependencies.tmpl, dotfiles/.local/share/chezmoi/home/.chezmoiscripts/centos/run_onchange_before_10-install-centos-dependencies.tmpl, dotfiles/.local/share/chezmoi/home/.chezmoiscripts/archlinux/run_onchange_before_10_install-archlinux-dependencies.tmpl, dotfiles/.local/share/chezmoi/home/.chezmoiscripts/debian/run_onchange_before_10-install-debian-dependencies.tmpl, dotfiles/.local/share/chezmoi/home/.chezmoiscripts/fedora/run_onchange_before_10-install-fedora-dependencies.tmpl, dotfiles/.local/share/chezmoi/home/.chezmoiscripts/freebsd/run_onchange_before_11-install-freebsd-packages.tmpl, dotfiles/.local/share/chezmoi/home/.chezmoiscripts/opensuse/run_onchange_before_11-install-opensuse-software.tmpl, dotfiles/.local/share/chezmoi/home/.chezmoiscripts/ubuntu/run_onchange_before_10_install-ubuntu-dependencies.tmpl, dotfiles/.local/share/chezmoi/home/.chezmoiscripts/darwin/run_onchange_before_11-install-darwin-packages.tmpl, dotfiles/.local/share/chezmoi/home/.chezmoiscripts/debian/run_onchange_before_11-install-debian-packages.tmpl, dotfiles/.local/share/chezmoi/home/.chezmoiscripts/fedora/run_onchange_before_11-install-fedora-packages.tmpl, dotfiles/.local/share/chezmoi/home/.chezmoiscripts/freebsd/run_onchange_before_10-install-freebsd-dependencies.tmpl, dotfiles/.local/share/chezmoi/home/.chezmoiscripts/opensuse/run_onchange_before_11-install-opensuse-packages.tmpl, dotfiles/.local/share/chezmoi/home/.chezmoiscripts/ubuntu/run_onchange_before_11-install-packages.tmpl, dotfiles/.local/share/chezmoi/home/.chezmoiscripts/universal/run_onchange_after_15_install-asdf-packages.tmpl, dotfiles/.local/share/chezmoi/home/.chezmoiscripts/universal/run_onchange_after_50-crontab.tmpl, dotfiles/.local/share/chezmoi/home/.chezmoiscripts/universal/run_onchange_after_80-bash-completions.tmpl, dotfiles/.local/share/chezmoi/home/.chezmoiscripts/universal/run_onchange_after_99_bootstrap-z4h.tmpl, dotfiles/.local/share/chezmoi/home/.chezmoiscripts/universal/run_onchange_before_1-logging-deps
This commit is contained in:
parent
00576156d4
commit
e31522cb85
19 changed files with 19 additions and 43 deletions
|
@ -16,7 +16,7 @@
|
|||
{{- end }}
|
||||
|
||||
logg 'Installing common dependencies using `pacman`'
|
||||
logg info 'Dependencies: `{{ $packages | sortAlpha | uniq | join "` `" -}}`'
|
||||
logg info 'Dependencies: {{ $packages | sortAlpha | uniq | join " " -}}'
|
||||
|
||||
### Install base dependencies
|
||||
sudo pacman -Sy --noconfirm --needed {{ $packages | sortAlpha | uniq | join " " -}}
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
# TODO - Add Python dependencies like in ubuntu/archlinux
|
||||
|
||||
logg 'Installing common dependencies using `dnf`'
|
||||
logg info 'Dependencies: `{{ $packages | sortAlpha | uniq | join "` `" -}}`'
|
||||
logg info 'Dependencies: {{ $packages | sortAlpha | uniq | join " " -}}'
|
||||
|
||||
### Install base dependencies
|
||||
sudo dnf install -y {{ $packages | sortAlpha | uniq | join " " -}}
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
#!/usr/bin/env bash
|
||||
{{- if eq .host.distro.id "darwin" }}
|
||||
|
||||
# Required for styled logging
|
||||
{{- includeTemplate "universal/logg" }}
|
||||
|
@ -21,10 +20,9 @@ eval $(/usr/local/bin/brew shellenv)
|
|||
{{- end }}
|
||||
|
||||
logg 'Installing base dependencies for macOS using `brew bundle`'
|
||||
logg info 'Dependencies: `asdf` `jq` `node` `go-task/tap/go-task` `volta` `yq` `m-cli` `zx`'
|
||||
logg info 'GNU compatibility dependencies: `coreutils` `findutils` `gawk` `gnu-getopt` `gnu-indent` `gnu-tar` `gnu-sed` `gnutls` `grep`'
|
||||
logg info 'Dependencies: asdf jq node `go-task/tap/go-task volta yq m-cli zx'
|
||||
logg info 'GNU compatibility dependencies: coreutils findutils gawk gnu-getopt gnu-indent gnu-tar gnu-sed gnutls grep'
|
||||
|
||||
brew bundle --verbose --no-lock --file=/dev/stdin <<EOF
|
||||
{{ includeTemplate "darwin/Brewfile" . }}
|
||||
EOF
|
||||
{{- end }}
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
#!/usr/bin/env bash
|
||||
{{- if eq .host.distro.id "darwin" }}
|
||||
{{- $supportedManagers := list "whalebrew" "brew" "port" "go" "cargo" "npm" "pipx" "gem" "cask" "binary" }}
|
||||
#{- $packageMap := (get .installerMap $packageName) }}
|
||||
#{- if (hasKey $packageMap "_deps") }}
|
||||
|
@ -10,4 +9,3 @@
|
|||
|
||||
# Examples of /etc/os-release values https://gist.github.com/natefoo/814c5bf936922dad97ff
|
||||
# Example fromJson with include from file https://github.com/twpayne/chezmoi/issues/1369
|
||||
{{- end }}
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
#!/usr/bin/env bash
|
||||
{{- if eq .host.distro.id "ubuntu" }}
|
||||
|
||||
# Required for styled logging
|
||||
{{- includeTemplate "universal/logg" }}
|
||||
|
@ -31,8 +30,7 @@
|
|||
source "$HOME/.config/shell/exports"
|
||||
|
||||
logg 'Installing common dependencies using `apt-get`'
|
||||
logg info 'Dependencies: `{{ $packages | sortAlpha | uniq | join "` `" -}}`'
|
||||
logg info 'Dependencies: {{ $packages | sortAlpha | uniq | join " " -}}'
|
||||
|
||||
sudo apt-get update
|
||||
sudo apt-get install -y --no-install-recommends {{ $packages | sortAlpha | uniq | join " " -}}
|
||||
{{- end }}
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
#!/usr/bin/env bash
|
||||
{{- if eq .host.distro.id "debian" }}
|
||||
{{ $supportedManagers := list "flatpak" "snap" "whalebrew" "apt" "brew" "go" "cargo" "npm" "pipx" "gem" "appimage" "binary" }}
|
||||
{{- end }}
|
||||
# TODO
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
#!/usr/bin/env bash
|
||||
{{- if eq .host.distro.id "fedora" }}
|
||||
|
||||
# Required for styled logging
|
||||
{{- includeTemplate "universal/logg" }}
|
||||
|
@ -8,8 +7,7 @@
|
|||
# TODO - Add Python dependencies like in ubuntu/archlinux
|
||||
|
||||
logg 'Installing common dependencies using `dnf`'
|
||||
logg info 'Dependencies: `{{ $packages | sortAlpha | uniq | join "` `" -}}`'
|
||||
logg info 'Dependencies: {{ $packages | sortAlpha | uniq | join " " -}}'
|
||||
|
||||
### Install base dependencies
|
||||
sudo dnf install -y {{ $packages | sortAlpha | uniq | join " " -}}
|
||||
{{- end }}
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
#!/usr/bin/env bash
|
||||
{{- if eq .host.distro.id "fedora" }}
|
||||
{{ $supportedManagers := list "flatpak" "snap" "whalebrew" "dnf" "brew" "go" "cargo" "npm" "pipx" "gem" "appimage" "binary" }}
|
||||
{{- end }}
|
||||
# TODO
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
#!/usr/bin/env bash
|
||||
{{- if eq .host.distro.id "opensuse" }}
|
||||
{{ $supportedManagers := list "whalebrew" "pkg" "go" "cargo" "npm" "gem" }}
|
||||
{{- end }}
|
||||
# TODO
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
#!/usr/bin/env bash
|
||||
{{- if eq .host.distro.id "freebsd" }}
|
||||
|
||||
# Required for styled logging
|
||||
{{- includeTemplate "universal/logg" }}
|
||||
|
@ -8,9 +7,7 @@
|
|||
# TODO - Add Python dependencies like in ubuntu/archlinux
|
||||
|
||||
logg 'Installing common dependencies using `pkg`'
|
||||
logg info 'Dependencies: `{{ $packages | sortAlpha | uniq | join "` `" -}}`'
|
||||
logg info 'Dependencies: {{ $packages | sortAlpha | uniq | join " " -}}'
|
||||
|
||||
### Install base dependencies
|
||||
sudo pkg install -y {{ $packages | sortAlpha | uniq | join " " -}}
|
||||
{{- end }}
|
||||
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
#!/usr/bin/env bash
|
||||
{{- if eq .host.distro.id "opensuse" }}
|
||||
{{ $supportedManagers := list "flatpak" "snap" "whalebrew" "zypper" "brew" "go" "cargo" "npm" "pipx" "gem" "appimage" "binary" }}
|
||||
{{- end }}
|
||||
# TODO
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
#!/usr/bin/env bash
|
||||
{{- if eq .host.distro.id "opensuse" }}
|
||||
|
||||
# Required for styled logging
|
||||
{{- includeTemplate "universal/logg" }}
|
||||
|
@ -8,9 +7,7 @@
|
|||
# TODO - Add Python dependencies like in ubuntu/archlinux
|
||||
|
||||
logg 'Installing common dependencies using `zypper`'
|
||||
logg info 'Dependencies: `{{ $packages | sortAlpha | uniq | join "` `" -}}`'
|
||||
logg info 'Dependencies: {{ $packages | sortAlpha | uniq | join " " -}}'
|
||||
|
||||
### Install base dependencies
|
||||
sudo zypper install -y {{ $packages | sortAlpha | uniq | join " " -}}
|
||||
|
||||
{{- end }}
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
#!/usr/bin/env bash
|
||||
{{- if eq .host.distro.id "ubuntu" }}
|
||||
|
||||
# Required for styled logging
|
||||
{{- includeTemplate "universal/logg" }}
|
||||
|
@ -31,8 +30,7 @@
|
|||
source "$HOME/.config/shell/exports"
|
||||
|
||||
logg 'Installing common dependencies using `apt-get`'
|
||||
logg info 'Dependencies: `{{ $packages | sortAlpha | uniq | join "` `" -}}`'
|
||||
logg info 'Dependencies: {{ $packages | sortAlpha | uniq | join " " -}}'
|
||||
|
||||
sudo apt-get update
|
||||
sudo apt-get install -y --no-install-recommends {{ $packages | sortAlpha | uniq | join " " -}}
|
||||
{{- end }}
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
#!/usr/bin/env bash
|
||||
{{- if eq .host.distro.id "ubuntu" }}
|
||||
{{- $supportedManagers := list "flatpak" "snap" "whalebrew" "apt" "brew" "go" "cargo" "npm" "pipx" "gem" "appimage" "binary" }}
|
||||
{{- end }}
|
||||
# TODO
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
#!/usr/bin/env bash
|
||||
{{- if or (eq .host.distro.id "darwin") (eq .host.distro.family "linux") }}
|
||||
|
||||
# dot_tool-versions.tmpl hash: {{ include "dot_tool-versions.tmpl" | sha256sum }}
|
||||
|
||||
|
@ -13,4 +12,3 @@ if [ -f "$ASDF_DIR/asdf.sh" ] && [ -f ~/.tool-versions ]; then
|
|||
else
|
||||
logg warn 'The `$ASDF_DIR/asdf.sh` or `~/.tool-versions` file is not present'
|
||||
fi
|
||||
{{- end }}
|
||||
|
|
|
@ -1,10 +1,12 @@
|
|||
#!/usr/bin/env sh
|
||||
{{- if and (or (eq .host.distro.id "darwin") (eq .host.distro.family "linux")) false }}
|
||||
{{- if false }}
|
||||
|
||||
# {{ output "sha256sum" (joinPath .chezmoi.sourceDir "private_dot_config/crontab/config") }}
|
||||
|
||||
# Required for PATHs (including logging)
|
||||
source "$HOME/.config/shell/exports"
|
||||
logg 'Installing crontab jobs'
|
||||
|
||||
logg 'Installing crontab jobs'
|
||||
crontab < "$XDG_CONFIG_HOME/crontab/config"
|
||||
{{- end }}
|
||||
# TODO
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
#!/usr/bin/env bash
|
||||
{{- if or (eq .host.distro.id "darwin") (eq .host.distro.family "linux") }}
|
||||
|
||||
# {{ output "sha256sum" (joinPath .chezmoi.sourceDir ".chezmoidata.yaml") }}
|
||||
|
||||
|
@ -168,4 +167,3 @@ if command -v zoxide >/dev/null; then
|
|||
elif [ -f "$COMPLETION_DIR/zoxide.bash" ]; then
|
||||
rm "$COMPLETION_DIR/zoxide.bash"
|
||||
fi
|
||||
{{- end }}
|
||||
|
|
|
@ -8,3 +8,4 @@ logg 'Bootstrapping Z4H'
|
|||
|
||||
Z4H_BOOTSTRAPPING=1 exec zsh && exit 0
|
||||
{{- end }}
|
||||
# TODO
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
#!/usr/bin/env bash
|
||||
{{- if or (eq .host.distro.id "darwin") (eq .host.distro.family "linux") }}
|
||||
|
||||
# @description Installs glow (a markdown renderer) from GitHub releases
|
||||
# @example installGlow
|
||||
|
@ -69,4 +68,3 @@ echo "Ensuring Gum and Glow are installed (for logging)"
|
|||
installGlow &
|
||||
installGum &
|
||||
wait
|
||||
{{- end }}
|
Loading…
Reference in a new issue