summaryrefslogtreecommitdiff
path: root/src/backend/uninstallAll.py
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2022-10-26 12:50:51 +0100
committerV3n3RiX <venerix@koprulu.sector>2022-10-26 12:50:51 +0100
commitb51a4c690ccf0353e87211ea4864d49b1c3d5c70 (patch)
treeca02cb170c3d9957d2935e599efae5f9b7e8fa3c /src/backend/uninstallAll.py
parent6e56fea1a36cda1117c4e557da5149166070bf91 (diff)
merge uninstall && force uninstall functions
Diffstat (limited to 'src/backend/uninstallAll.py')
-rw-r--r--src/backend/uninstallAll.py12
1 files changed, 10 insertions, 2 deletions
diff --git a/src/backend/uninstallAll.py b/src/backend/uninstallAll.py
index 4dfe2cc..b874738 100644
--- a/src/backend/uninstallAll.py
+++ b/src/backend/uninstallAll.py
@@ -8,7 +8,7 @@ import sisyphus.checkEnvironment
import sisyphus.killPortage
import sisyphus.syncDatabase
-def start(pkgname):
+def cliExec(pkgname):
if sisyphus.checkEnvironment.root():
portageExec = subprocess.Popen(['emerge', '--quiet', '--depclean', '--ask'] + list(pkgname))
portageExec.wait()
@@ -16,7 +16,15 @@ def start(pkgname):
else:
sys.exit("\nYou need root permissions to do this, exiting!\n")
-def startqt(pkgname):
+def cliExecForce(pkgname):
+ if sisyphus.checkEnvironment.root():
+ portageExec = subprocess.Popen(['emerge', '--quiet', '--unmerge', '--ask'] + list(pkgname))
+ portageExec.wait()
+ sisyphus.syncDatabase.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.killPortage.start, portageExec)