summaryrefslogtreecommitdiff
path: root/src/backend/uninstall.py
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2022-10-30 15:54:58 +0000
committerV3n3RiX <venerix@koprulu.sector>2022-10-30 15:54:58 +0000
commit100226c624cdf8b3b1210c124b0b1ee6a3b3d816 (patch)
tree9e6a46b7dffef9a7b9eb7744c4e1b91430a637a0 /src/backend/uninstall.py
parentde363a67dd99fa1395be5a5ce8d9a75472d81997 (diff)
various cleanups
Diffstat (limited to 'src/backend/uninstall.py')
-rw-r--r--src/backend/uninstall.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/backend/uninstall.py b/src/backend/uninstall.py
index 617977f..d219b47 100644
--- a/src/backend/uninstall.py
+++ b/src/backend/uninstall.py
@@ -8,7 +8,7 @@ import sisyphus.checkenv
import sisyphus.killemerge
import sisyphus.syncdb
-def cliExec(pkgname):
+def start(pkgname):
if sisyphus.checkenv.root():
portageExec = subprocess.Popen(['emerge', '--quiet', '--depclean', '--ask'] + list(pkgname))
portageExec.wait()
@@ -16,7 +16,7 @@ def cliExec(pkgname):
else:
sys.exit("\nYou need root permissions to do this, exiting!\n")
-def cliExecForce(pkgname):
+def fstart(pkgname):
if sisyphus.checkenv.root():
portageExec = subprocess.Popen(['emerge', '--quiet', '--unmerge', '--ask'] + list(pkgname))
portageExec.wait()
@@ -24,10 +24,10 @@ def cliExecForce(pkgname):
else:
sys.exit("\nYou need root permissions to do this, exiting!\n")
-def guiExec(pkgname):
+def startx(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)
+ atexit.register(sisyphus.killemerge.start, portageExec)
for portageOutput in io.TextIOWrapper(portageExec.stdout, encoding="utf-8"):
print(portageOutput.rstrip())