Skip to content
Snippets Groups Projects
Commit 9dfaca17 authored by Teo Mrnjavac's avatar Teo Mrnjavac Committed by GitHub
Browse files

Merge pull request #250 from V3n3RiX/master

improve portage backend, so that properly removes reverse deps, whitout the need of HUGE package list in packages module configuration
parents 701d7d8a ef360089
No related merge requests found
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment