diff options
Diffstat (limited to 'src/backend/uninstall.py')
-rw-r--r-- | src/backend/uninstall.py | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/src/backend/uninstall.py b/src/backend/uninstall.py new file mode 100644 index 0000000..617977f --- /dev/null +++ b/src/backend/uninstall.py @@ -0,0 +1,36 @@ +#!/usr/bin/python3 + +import atexit +import io +import subprocess +import sys +import sisyphus.checkenv +import sisyphus.killemerge +import sisyphus.syncdb + +def cliExec(pkgname): + if sisyphus.checkenv.root(): + portageExec = subprocess.Popen(['emerge', '--quiet', '--depclean', '--ask'] + list(pkgname)) + portageExec.wait() + sisyphus.syncdb.localTable() + else: + sys.exit("\nYou need root permissions to do this, exiting!\n") + +def cliExecForce(pkgname): + if sisyphus.checkenv.root(): + portageExec = subprocess.Popen(['emerge', '--quiet', '--unmerge', '--ask'] + list(pkgname)) + portageExec.wait() + sisyphus.syncdb.localTable() + else: + sys.exit("\nYou need root permissions to do this, exiting!\n") + +def guiExec(pkgname): + portageExec = subprocess.Popen(['emerge', '--depclean'] + pkgname, stdout=subprocess.PIPE, stderr=subprocess.PIPE) + # kill portage if the program dies or it's terminated by the user + atexit.register(sisyphus.killemerge.cliExec, portageExec) + + for portageOutput in io.TextIOWrapper(portageExec.stdout, encoding="utf-8"): + print(portageOutput.rstrip()) + + portageExec.wait() + sisyphus.syncdb.localTable() |