summaryrefslogtreecommitdiff
path: root/src/backend/upgradeSrc.py
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2022-09-17 21:53:32 +0100
committerV3n3RiX <venerix@koprulu.sector>2022-09-17 21:53:32 +0100
commit44f48531452bc55114161df8f33a0cd49c7d438c (patch)
tree30c2898bd166d05aecf6395fe4c704fd5edee8a5 /src/backend/upgradeSrc.py
parent521cd9b1c25d88162f377bb05c8aadb70df028d7 (diff)
fix Popen.communicate calls
Diffstat (limited to 'src/backend/upgradeSrc.py')
-rw-r--r--src/backend/upgradeSrc.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/backend/upgradeSrc.py b/src/backend/upgradeSrc.py
index 728b88c..db4f8cb 100644
--- a/src/backend/upgradeSrc.py
+++ b/src/backend/upgradeSrc.py
@@ -47,7 +47,7 @@ def start():
if not "Calculating dependencies" in portageOutput.rstrip():
print(portageOutput.rstrip())
- stdout, stderr = portageExec.communicate()
+ portageExec.communicate()
sisyphus.syncDatabase.syncLocal()
else:
sys.exit("\n" + "Ok; Quitting." + "\n")
@@ -80,6 +80,7 @@ def start():
if not "Calculating dependencies" in portageOutput.rstrip():
print(portageOutput.rstrip())
+ portageExec.communicate()
sisyphus.syncDatabase.syncLocal()
else:
sys.exit("\n" + "Ok; Quitting." + "\n")
@@ -87,14 +88,13 @@ def start():
print("\n" + "These are the source packages that would be merged, in order:" + "\n\n" + " ".join(areSources) + "\n\n" + "Total:" + " " + str(len(areSources)) + " " + "source package(s)" + "\n")
if input("Would you like to proceed?" + " " + "[y/N]" + " ").lower().strip()[:1] == "y":
portageExec = subprocess.Popen(['emerge', '--update', '--deep', '--newuse', '--backtrack=100', '--with-bdeps=y', '--misspell-suggestion=n', '--fuzzy-search=n', '@world'], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
- stdout, stderr = portageExec.communicate()
for portageOutput in io.TextIOWrapper(portageExec.stdout, encoding="utf-8"):
if not "These are the packages that would be merged, in order:" in portageOutput.rstrip():
if not "Calculating dependencies" in portageOutput.rstrip():
print(portageOutput.rstrip())
- stdout, stderr = portageExec.communicate()
+ portageExec.communicate()
sisyphus.syncDatabase.syncLocal()
else:
sys.exit("\n" + "Ok; Quitting." + "\n")
@@ -107,7 +107,7 @@ def start():
if not "binary" in portageOutput.rstrip():
print(portageOutput.rstrip())
- stdout, stderr = portageExec.communicate()
+ portageExec.communicate()
sys.exit("\n" + "Cannot proceed; Apply the above changes to your portage configuration files and try again; Quitting." + "\n")
else:
sys.exit("\nYou need root permissions to do this, exiting!\n")