diff options
Diffstat (limited to 'src/backend/uninstall.py')
-rw-r--r-- | src/backend/uninstall.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/backend/uninstall.py b/src/backend/uninstall.py new file mode 100644 index 0000000..8dc9e34 --- /dev/null +++ b/src/backend/uninstall.py @@ -0,0 +1,11 @@ +#!/usr/bin/python3 + +import subprocess +import sisyphus.check +import sisyphus.sync + +def start(pkgList): + sisyphus.check.root() + portageExec = subprocess.Popen(['emerge', '--quiet', '--depclean', '--ask'] + pkgList) + portageExec.wait() + sisyphus.database.syncLocal() |