We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 089bbd4 commit 709a7dcCopy full SHA for 709a7dc
1 file changed
examples/revdeps
@@ -42,8 +42,9 @@ def main():
42
dep_keys = sorted(EAPI_LATEST_OFFICIAL.dep_keys)
43
for pkg in config.repos.ebuild:
44
for attr, deps in ((k, deps) for k in dep_keys if (deps := getattr(pkg, k.lower()))):
45
- for a in filter(restrict.matches, deps.iter_flatten()):
46
- print(f"{pkg}: {attr}: {a}")
+ for dep in filter(restrict.matches, deps.iter_flatten()):
+ if dep.blocker is None:
47
+ print(f"{pkg}: {attr}: {dep}")
48
49
50
if __name__ == "__main__":
0 commit comments