~ubuntu-archive/ubuntu-archive-scripts/trunk

« back to all changes in this revision

Viewing changes to generate-team-p-m

  • Committer: Steve Langasek
  • Date: 2023-12-19 06:16:57 UTC
  • Revision ID: steve.langasek@canonical.com-20231219061657-3vtta1sc7bxqirn5
Handle the rdepends/ALL subtree with rsync instead of diff.

This is a symlink tree and thus immune to patching.  germinate-output has
been out of date for some time as a result of non-zero exit codes from diff,
this should fix that.

Show diffs side-by-side

added added

removed removed

Lines of Context:
309
309
                        for p in packages:
310
310
                            unsatdbd[p].append(arch)
311
311
                    prob.unsatbuilddep = ['{}: {}'.format(p, ', '.join(sorted(arches))) for p, arches in sorted(unsatdbd.items())]
 
312
            if 'implicit-deps' in item['policy_info']['implicit-deps']:
 
313
                    prob.brokenbin = item['policy_info']['implicit-deps']['implicit-deps']['broken-binaries']
312
314
 
313
315
    package_to_problems = defaultdict(list)
314
316