mirror of
https://git.launchpad.net/~ubuntu-release/britney/+git/britney2-ubuntu
synced 2025-02-23 19:31:55 +00:00
switch build-dep policy to detailed excuse info
This commit is contained in:
parent
e245891d36
commit
3d0fdae9d1
@ -834,10 +834,6 @@ class BuildDependsPolicy(BasePolicy):
|
||||
return checkarchs
|
||||
|
||||
def _add_info_for_arch(self, arch, excuses_info, blockers, results, dep_type, target_suite, source_suite, excuse, verdict):
|
||||
if arch in excuses_info:
|
||||
for excuse_text in excuses_info[arch]:
|
||||
excuse.addhtml(excuse_text)
|
||||
|
||||
if arch in blockers:
|
||||
packages = blockers[arch]
|
||||
|
||||
@ -855,6 +851,13 @@ class BuildDependsPolicy(BasePolicy):
|
||||
if verdict < PolicyVerdict.REJECTED_PERMANENTLY:
|
||||
verdict = PolicyVerdict.REJECTED_PERMANENTLY
|
||||
|
||||
if arch in excuses_info:
|
||||
for excuse_text in excuses_info[arch]:
|
||||
if verdict.is_rejected:
|
||||
excuse.add_verdict_info(verdict, excuse_text)
|
||||
else:
|
||||
excuse.addinfo(excuse_text)
|
||||
|
||||
return verdict
|
||||
|
||||
def _check_build_deps(self, deps, dep_type, build_deps_info, item, source_data_tdist, source_data_srcdist, excuse,
|
||||
@ -945,7 +948,7 @@ class BuildDependsPolicy(BasePolicy):
|
||||
|
||||
if any_arch_ok:
|
||||
arch = result_archs[bestresult][0]
|
||||
excuse.addhtml("Checking %s on %s" % (dep_type.get_description(), arch))
|
||||
excuse.addinfo("Checking %s on %s" % (dep_type.get_description(), arch))
|
||||
key = "check-%s-on-arch" % dep_type.get_reason()
|
||||
build_deps_info[key] = arch
|
||||
verdict = self._add_info_for_arch(
|
||||
|
Loading…
x
Reference in New Issue
Block a user