make sure to upgrade all dependencies on gentoo

This commit is contained in:
Fredrik Eriksson 2022-12-11 09:54:17 +01:00
parent 06ad5bde9e
commit 688af9ac62
Signed by: feffe
GPG Key ID: 97FD478B50475788

View File

@ -107,7 +107,7 @@ def pkg_upgrade():
default_version_sens = conf.getint('default', 'version_sensitivity', fallback=1)
cmd = [ EMERGE_PATH, '--color', 'n', '-uDNpq', '@world' ]
cmd = [ EMERGE_PATH, '--color', 'n', '-uDNpq', '--with-bdeps=y', '@world' ]
ret, out, err = sau.helpers.exec_cmd(cmd)
if not ret == 0:
@ -146,7 +146,7 @@ def pkg_upgrade():
log.warning('Some packages require manual attention, did not upgrade')
return False
cmd = [ EMERGE_PATH, '--color', 'n', '-uDNq', '@world' ]
cmd = [ EMERGE_PATH, '--color', 'n', '-uDNq', '--with-bdeps=y', '@world' ]
ret, out, err = sau.helpers.exec_cmd(cmd, timeout=72000)
if ret != 0 or err: