summaryrefslogtreecommitdiff
path: root/src/backend/solvedeps.py
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2023-03-09 19:08:31 +0000
committerV3n3RiX <venerix@koprulu.sector>2023-03-09 19:08:31 +0000
commit1ffd14b3212f1fafd087dadc7a1a8548f53c6cab (patch)
tree6a0971fe0b94d46396a6466855925e37afc859d5 /src/backend/solvedeps.py
parent36e2fca70465e2e658570bcdf276d5ca644125bb (diff)
portageOutput -> p_out
Diffstat (limited to 'src/backend/solvedeps.py')
-rw-r--r--src/backend/solvedeps.py44
1 files changed, 22 insertions, 22 deletions
diff --git a/src/backend/solvedeps.py b/src/backend/solvedeps.py
index 85f3115..c51ade0 100644
--- a/src/backend/solvedeps.py
+++ b/src/backend/solvedeps.py
@@ -16,29 +16,29 @@ def pkg(pkgname):
'--misspell-suggestion=n', '--fuzzy-search=n'] + list(pkgname), stdout=subprocess.PIPE, stderr=subprocess.PIPE)
stdout, stderr = p_exe.communicate()
- for portageOutput in stderr.decode('utf-8').splitlines():
- if "The following keyword changes are necessary to proceed:" in portageOutput:
+ for p_out in stderr.decode('utf-8').splitlines():
+ if "The following keyword changes are necessary to proceed:" in p_out:
needsConfig = int(1)
- if "The following mask changes are necessary to proceed:" in portageOutput:
+ if "The following mask changes are necessary to proceed:" in p_out:
needsConfig = int(1)
- if "The following USE changes are necessary to proceed:" in portageOutput:
+ if "The following USE changes are necessary to proceed:" in p_out:
needsConfig = int(1)
- if "The following REQUIRED_USE flag constraints are unsatisfied:" in portageOutput:
+ if "The following REQUIRED_USE flag constraints are unsatisfied:" in p_out:
needsConfig = int(1)
- if "One of the following masked packages is required to complete your request:" in portageOutput:
+ if "One of the following masked packages is required to complete your request:" in p_out:
needsConfig = int(1)
- for portageOutput in stdout.decode('utf-8').splitlines():
- if "[binary" in portageOutput:
- isBinary = portageOutput.split("]")[1].split("[")[0].strip(" ")
+ for p_out in stdout.decode('utf-8').splitlines():
+ if "[binary" in p_out:
+ isBinary = p_out.split("]")[1].split("[")[0].strip(" ")
areBinaries.append(isBinary)
- if "[ebuild" in portageOutput:
- isSource = portageOutput.split("]")[1].split("[")[0].strip(" ")
+ if "[ebuild" in p_out:
+ isSource = p_out.split("]")[1].split("[")[0].strip(" ")
areSources.append(isSource)
pickle.dump([areBinaries, areSources, needsConfig], open(os.path.join(
@@ -54,29 +54,29 @@ def world():
'--backtrack=100', '--with-bdeps=y', '--misspell-suggestion=n', '--fuzzy-search=n', '@world'], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
stdout, stderr = p_exe.communicate()
- for portageOutput in stderr.decode('utf-8').splitlines():
- if "The following keyword changes are necessary to proceed:" in portageOutput:
+ for p_out in stderr.decode('utf-8').splitlines():
+ if "The following keyword changes are necessary to proceed:" in p_out:
needsConfig = int(1)
- if "The following mask changes are necessary to proceed:" in portageOutput:
+ if "The following mask changes are necessary to proceed:" in p_out:
needsConfig = int(1)
- if "The following USE changes are necessary to proceed:" in portageOutput:
+ if "The following USE changes are necessary to proceed:" in p_out:
needsConfig = int(1)
- if "The following REQUIRED_USE flag constraints are unsatisfied:" in portageOutput:
+ if "The following REQUIRED_USE flag constraints are unsatisfied:" in p_out:
needsConfig = int(1)
- if "One of the following masked packages is required to complete your request:" in portageOutput:
+ if "One of the following masked packages is required to complete your request:" in p_out:
needsConfig = int(1)
- for portageOutput in stdout.decode('utf-8').splitlines():
- if "[binary" in portageOutput:
- isBinary = portageOutput.split("]")[1].split("[")[0].strip(" ")
+ for p_out in stdout.decode('utf-8').splitlines():
+ if "[binary" in p_out:
+ isBinary = p_out.split("]")[1].split("[")[0].strip(" ")
areBinaries.append(isBinary)
- if "[ebuild" in portageOutput:
- isSource = portageOutput.split("]")[1].split("[")[0].strip(" ")
+ if "[ebuild" in p_out:
+ isSource = p_out.split("]")[1].split("[")[0].strip(" ")
areSources.append(isSource)
pickle.dump([areBinaries, areSources, needsConfig], open(os.path.join(