summaryrefslogtreecommitdiff
path: root/src/backend/autoRemoveAll.py
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2022-10-30 14:19:00 +0000
committerV3n3RiX <venerix@koprulu.sector>2022-10-30 14:19:00 +0000
commit712f936222be4c06ca00ef922a98cd94db71af11 (patch)
tree92fed5c9e68559928bdd3123a5fba7338080c31a /src/backend/autoRemoveAll.py
parent4b1f4edf874da9620d2960c7b1a5c36da330ec7a (diff)
move autoRemoveAll -> autoremove
Diffstat (limited to 'src/backend/autoRemoveAll.py')
-rw-r--r--src/backend/autoRemoveAll.py28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/backend/autoRemoveAll.py b/src/backend/autoRemoveAll.py
deleted file mode 100644
index 85a7b7f..0000000
--- a/src/backend/autoRemoveAll.py
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/usr/bin/python3
-
-import atexit
-import io
-import subprocess
-import sys
-import sisyphus.checkEnvironment
-import sisyphus.killPortage
-import sisyphus.syncDatabase
-
-def cliExec():
- if sisyphus.checkEnvironment.root():
- portageExec = subprocess.Popen(['emerge', '--quiet', '--depclean', '--ask'])
- portageExec.wait()
- sisyphus.syncDatabase.localTable()
- else:
- sys.exit("\nYou need root permissions to do this, exiting!\n")
-
-def guiExec():
- portageExec = subprocess.Popen(['emerge', '--depclean'], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
- # kill portage if the program dies or it's terminated by the user
- atexit.register(sisyphus.killPortage.cliExec, portageExec)
-
- for portageOutput in io.TextIOWrapper(portageExec.stdout, encoding="utf-8"):
- print(portageOutput.rstrip())
-
- portageExec.wait()
- sisyphus.syncDatabase.localTable()