Merge lp:~mwhudson/ubuntu-archive-scripts/dont-suggest-removing-0ubuntu-packages into lp:ubuntu-archive-scripts

Proposed by Michael Hudson-Doyle
Status: Merged
Merged at revision: 249
Proposed branch: lp:~mwhudson/ubuntu-archive-scripts/dont-suggest-removing-0ubuntu-packages
Merge into: lp:ubuntu-archive-scripts
Diff against target: 25 lines (+6/-3)
1 file modified
find-rcbuggy-problem-packages (+6/-3)
To merge this branch: bzr merge lp:~mwhudson/ubuntu-archive-scripts/dont-suggest-removing-0ubuntu-packages
Reviewer Review Type Date Requested Status
Ubuntu Package Archive Administrators Pending
Review via email: mp+372944@code.launchpad.net

Commit message

don't suggest we remove things we package independently of debian...

To post a comment you must log in.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'find-rcbuggy-problem-packages'
--- find-rcbuggy-problem-packages 2019-09-18 11:23:38 +0000
+++ find-rcbuggy-problem-packages 2019-09-18 13:17:19 +0000
@@ -276,15 +276,18 @@
276 if 'autopkgtest' in source['reason']:276 if 'autopkgtest' in source['reason']:
277 in_proposed_by_autopkgtest_or_missing_binaries.add(item)277 in_proposed_by_autopkgtest_or_missing_binaries.add(item)
278 for package, results in sorted(source['policy_info']['autopkgtest'].items()):278 for package, results in sorted(source['policy_info']['autopkgtest'].items()):
279 package = package.split('/')[0]279 if '/' not in package:
280 if package not in rc_gones:280 # This only happens when all tests are still running
281 continue
282 package, version = package.split('/')
283 if package not in rc_gones or '-0ubuntu' in version:
281 continue284 continue
282 for arch, result in sorted(results.items()):285 for arch, result in sorted(results.items()):
283 outcome, log, history, wtf1, wtf2 = result286 outcome, log, history, wtf1, wtf2 = result
284 if outcome == "REGRESSION" and package != item:287 if outcome == "REGRESSION" and package != item:
285 rc_gones[package].block_by_regression.add(item)288 rc_gones[package].block_by_regression.add(item)
286 break289 break
287 if 'missing-builds' in source:290 if 'missing-builds' in source and '-0ubuntu' not in source['new-version']:
288 in_proposed_by_autopkgtest_or_missing_binaries.add(item)291 in_proposed_by_autopkgtest_or_missing_binaries.add(item)
289 if item in rc_gones:292 if item in rc_gones:
290 if source['new-version'] != '-':293 if source['new-version'] != '-':

Subscribers

People subscribed via source and target branches