summaryrefslogtreecommitdiff
path: root/src/backend/uninstall.py
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2022-09-16 01:06:50 +0100
committerV3n3RiX <venerix@koprulu.sector>2022-09-16 01:06:50 +0100
commit96423b52302a01fa3a4922961bd8e072a5c46e15 (patch)
treed31bdfd6415b4dec2cd427024435ef2ce47669ac /src/backend/uninstall.py
parentd5f7286a28caf0a7f628c09b515e7ed59a1a85fb (diff)
bugfix :
* subprocess.Popen child processes can "sometimes" generate a very large output, causing a deadlock (**cough** dependency solver **cough**) * use subprocess.Popen.communicate instead of subprocess.Popen.wait to avoid such issues * see : https://docs.python.org/3/library/subprocess.html#subprocess.Popen.wait
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 9d76067..b8981ca 100644
--- a/src/backend/uninstall.py
+++ b/src/backend/uninstall.py
@@ -10,19 +10,19 @@ import sisyphus.killportage
def start(pkgname):
if sisyphus.check.root():
- portageExec = subprocess.Popen(['emerge', '--quiet', '--depclean', '--ask'] + list(pkgname))
- portageExec.wait()
+ 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)
+ 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())
- portageExec.wait()
sisyphus.database.syncLocal()