diff options
author | V3n3RiX <venerix@koprulu.sector> | 2022-10-30 15:22:22 +0000 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2022-10-30 15:22:22 +0000 |
commit | 5fc5276d968a38d05fa5659c06392e83cc428516 (patch) | |
tree | ec5f00e45ec57767909b8e5bd8b13891adb88781 /src/backend/uninstall.py | |
parent | f7f86f807d2756f5081c0e0f1dfc9ead61ac9f5c (diff) |
move uninstallAll -> uninstall
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() |