Compare commits
2 commits
03338d1f39
...
6ec6958a73
| Author | SHA1 | Date | |
|---|---|---|---|
| 6ec6958a73 | |||
| 598ad9dfae |
2 changed files with 6 additions and 3 deletions
|
|
@ -139,8 +139,11 @@ if (( ${#MISSING_PKGS[@]} > 0 )); then
|
||||||
# --quiet-build: only show errors during compile
|
# --quiet-build: only show errors during compile
|
||||||
# --keep-going: don't abort if one package fails
|
# --keep-going: don't abort if one package fails
|
||||||
# --with-bdeps=y: include build deps so we don't accidentally skip them
|
# --with-bdeps=y: include build deps so we don't accidentally skip them
|
||||||
|
# --autounmask=y: auto-write ~amd64 keyword unmask files (lazygit
|
||||||
|
# is ~amd64 only)
|
||||||
|
# --autounmask-license=y: auto-accept license unmask
|
||||||
sudo emerge --ask=n --nospinner --quiet-build --keep-going \
|
sudo emerge --ask=n --nospinner --quiet-build --keep-going \
|
||||||
--with-bdeps=y --autounmask-license=y \
|
--with-bdeps=y --autounmask=y --autounmask-license=y \
|
||||||
"${MISSING_PKGS[@]}"
|
"${MISSING_PKGS[@]}"
|
||||||
else
|
else
|
||||||
log "all user packages already installed; skipping emerge"
|
log "all user packages already installed; skipping emerge"
|
||||||
|
|
@ -180,7 +183,7 @@ done
|
||||||
if (( ${#GURU_MISSING[@]} > 0 )); then
|
if (( ${#GURU_MISSING[@]} > 0 )); then
|
||||||
log "emerge GURU packages (missing: ${GURU_MISSING[*]})"
|
log "emerge GURU packages (missing: ${GURU_MISSING[*]})"
|
||||||
sudo emerge --ask=n --nospinner --quiet-build --keep-going \
|
sudo emerge --ask=n --nospinner --quiet-build --keep-going \
|
||||||
--with-bdeps=y --autounmask-license=y \
|
--with-bdeps=y --autounmask=y --autounmask-license=y \
|
||||||
"${GURU_MISSING[@]}"
|
"${GURU_MISSING[@]}"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -71,7 +71,7 @@ if (( ${#MISSING_PKGS[@]} > 0 )); then
|
||||||
log "missing: ${MISSING_PKGS[*]}"
|
log "missing: ${MISSING_PKGS[*]}"
|
||||||
log "emerge sway stack (gentoo compiles from source; this may take a while)"
|
log "emerge sway stack (gentoo compiles from source; this may take a while)"
|
||||||
sudo emerge --ask=n --nospinner --quiet-build --keep-going \
|
sudo emerge --ask=n --nospinner --quiet-build --keep-going \
|
||||||
--with-bdeps=y --autounmask-license=y \
|
--with-bdeps=y --autounmask=y --autounmask-license=y \
|
||||||
"${MISSING_PKGS[@]}"
|
"${MISSING_PKGS[@]}"
|
||||||
else
|
else
|
||||||
log "all sway packages already installed; skipping emerge"
|
log "all sway packages already installed; skipping emerge"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue