improve portage backend, so that it removes ALL calamares deps

This commit is contained in:
V3n3RiX 2016-08-12 15:32:35 +01:00
parent 701d7d8a62
commit ef3600891f

View file

@ -87,6 +87,7 @@ class PackageManager:
check_target_env_call(["pacman", "-Rs", "--noconfirm"] + pkgs)
elif self.backend == "portage":
check_target_env_call(["emerge", "-C"] + pkgs)
check_target_env_call(["emerge", "--depclean", "-q"])
elif self.backend == "entropy":
check_target_env_call(["equo", "rm"] + pkgs)