summaryrefslogtreecommitdiff
path: root/src/backend/uninstall.py
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2022-09-17 19:12:53 +0100
committerV3n3RiX <venerix@koprulu.sector>2022-09-17 19:12:53 +0100
commite1562a71d6483021d332bccbfc5a3086688bc58c (patch)
tree6be3d468e0aadd6c4de6c4dbd7a58ebe9fd59cbb /src/backend/uninstall.py
parent0cf2c9f8ec52b1ae276c1573210d252ab0c4577b (diff)
rearrange the backend
Diffstat (limited to 'src/backend/uninstall.py')
-rw-r--r--src/backend/uninstall.py28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/backend/uninstall.py b/src/backend/uninstall.py
deleted file mode 100644
index b8981ca..0000000
--- a/src/backend/uninstall.py
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/usr/bin/python3
-
-import atexit
-import io
-import subprocess
-import sys
-import sisyphus.check
-import sisyphus.database
-import sisyphus.killportage
-
-def start(pkgname):
- if sisyphus.check.root():
- portageExec = subprocess.Popen(['emerge', '--quiet', '--depclean', '--ask'] + list(pkgname), stdout=subprocess.PIPE, stderr=subprocess.PIPE)
- stdout, stderr = portageExec.communicate()
- sisyphus.database.syncLocal()
- else:
- sys.exit("\nYou need root permissions to do this, exiting!\n")
-
-def startqt(pkgname):
- portageExec = subprocess.Popen(['emerge', '--depclean'] + pkgname, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
- stdout, stderr = portageExec.communicate()
- # kill portage if the program dies or it's terminated by the user
- atexit.register(sisyphus.killportage.start, portageExec)
-
- for portageOutput in io.TextIOWrapper(portageExec.stdout, encoding="utf-8"):
- print(portageOutput.rstrip())
-
- sisyphus.database.syncLocal()