summaryrefslogtreecommitdiff
path: root/src/backend/autoRemoveAll.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/backend/autoRemoveAll.py')
-rw-r--r--src/backend/autoRemoveAll.py28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/backend/autoRemoveAll.py b/src/backend/autoRemoveAll.py
new file mode 100644
index 0000000..bcf5760
--- /dev/null
+++ b/src/backend/autoRemoveAll.py
@@ -0,0 +1,28 @@
+#!/usr/bin/python3
+
+import atexit
+import io
+import subprocess
+import sys
+import sisyphus.checkEnvironment
+import sisyphus.syncDatabase
+import sisyphus.killPortage
+
+def start():
+ if sisyphus.checkEnvironment.root():
+ portageExec = subprocess.Popen(['emerge', '--quiet', '--depclean', '--ask'], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
+ stdout, stderr = portageExec.communicate()
+ sisyphus.syncDatabase.syncLocal()
+ else:
+ sys.exit("\nYou need root permissions to do this, exiting!\n")
+
+def startqt():
+ portageExec = subprocess.Popen(['emerge', '--depclean'], 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.syncDatabase.syncLocal()