[bin] update kill_gtk3

This commit is contained in:
Fabio Erculiani 2011-07-16 23:38:32 +02:00
parent 3d76fbc196
commit d5ce0de9ce
1 changed files with 6 additions and 1 deletions

View File

@ -20,8 +20,13 @@ for repo_id in srv.repositories():
if gtk2_match in matches:
bad_pkgs.append((pkg_id, repo_id))
print("found bad package: %s" % (repo.retrieveAtom(pkg_id),))
break
bad_atoms = []
for pkg_id, repo_id in bad_pkgs:
print(srv.open_repository(repo_id).retrieveKeySlotAggregated(pkg_id))
bad_atoms.append(srv.open_repository(repo_id).retrieveKeySlotAggregated(pkg_id))
bad_atoms.sort()
for bad_atom in bad_atoms:
print(bad_atom)
srv.shutdown()