From 5d4d5dc821aaf0caec0e2800a80420e58fc332f8 Mon Sep 17 00:00:00 2001 From: Iain Lane Date: Tue, 21 Jul 2020 12:46:07 +0100 Subject: [PATCH] britney: Disable Built-Using policy Launchpad currently doesn't enforce this, so it doesn't make too much sense to do so in proposed-migration. Once https://bugs.launchpad.net/launchpad/+bug/1868558 is fixed, we should think about probably re-enabling this. --- britney.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/britney.py b/britney.py index db3a1a5..1fb1984 100755 --- a/britney.py +++ b/britney.py @@ -529,7 +529,8 @@ class Britney(object): self._policy_engine.add_policy(AgePolicy(self.options, self.suite_info, MINDAYS)) self._policy_engine.add_policy(BuildDependsPolicy(self.options, self.suite_info)) self._policy_engine.add_policy(BlockPolicy(self.options, self.suite_info)) - self._policy_engine.add_policy(BuiltUsingPolicy(self.options, self.suite_info)) + # XXX re-enable once https://bugs.launchpad.net/launchpad/+bug/1868558 is fixed + # self._policy_engine.add_policy(BuiltUsingPolicy(self.options, self.suite_info)) self._policy_engine.add_policy(ImplicitDependencyPolicy(self.options, self.suite_info)) if getattr(self.options, 'check_buildd', 'no') == 'yes': self._policy_engine.add_policy(BuiltOnBuilddPolicy(self.options, self.suite_info))