Merge ubuntu-archive-tools:fully-phase-language-packs into ubuntu-archive-tools:main

Proposed by Brian Murray
Status: Needs review
Proposed branch: ubuntu-archive-tools:fully-phase-language-packs
Merge into: ubuntu-archive-tools:main
Diff against target: 14 lines (+2/-1)
1 file modified
phased-updater (+2/-1)
Reviewer Review Type Date Requested Status
Ubuntu Package Archive Administrators Pending
Review via email: mp+460716@code.launchpad.net

Description of the change

Phasing language-packages doesn't seem useful to me given that the only crash reports we would get about them would be of the "Type: Package" (package install failures) which should surface other ways.

To post a comment you must log in.
Revision history for this message
Brian Murray (brian-murray) wrote :

Would there ever be package name that starts with language-pack that isn't a language-pack? IDK.

Unmerged commits

b20e6d2... by Brian Murray

phased-updater: fully phase any package that starts with language-pack

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1diff --git a/phased-updater b/phased-updater
2index a1c2aea..8a64905 100755
3--- a/phased-updater
4+++ b/phased-updater
5@@ -734,7 +734,8 @@ def main():
6 new_pup = current_pup + PUP_SLOW_INCREMENT
7 if src_pkg in MEDIUM_PACKAGES:
8 new_pup = current_pup + PUP_MEDIUM_INCREMENT
9- if src_pkg in FULLY_PHASED_PACKAGES:
10+ if (src_pkg in FULLY_PHASED_PACKAGES or
11+ src_pkg.startswith('language-pack')):
12 new_pup = 100
13 if not options.no_act:
14 set_pup(current_pup, new_pup, release, suite, src_pkg)

Subscribers

People subscribed via source and target branches