summaryrefslogtreecommitdiff
path: root/src/backend/uninstallAll.py
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2022-10-30 15:22:22 +0000
committerV3n3RiX <venerix@koprulu.sector>2022-10-30 15:22:22 +0000
commit5fc5276d968a38d05fa5659c06392e83cc428516 (patch)
treeec5f00e45ec57767909b8e5bd8b13891adb88781 /src/backend/uninstallAll.py
parentf7f86f807d2756f5081c0e0f1dfc9ead61ac9f5c (diff)
move uninstallAll -> uninstall
Diffstat (limited to 'src/backend/uninstallAll.py')
-rw-r--r--src/backend/uninstallAll.py36
1 files changed, 0 insertions, 36 deletions
diff --git a/src/backend/uninstallAll.py b/src/backend/uninstallAll.py
deleted file mode 100644
index 617977f..0000000
--- a/src/backend/uninstallAll.py
+++ /dev/null
@@ -1,36 +0,0 @@
-#!/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()