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
diff --git a/phased-updater b/phased-updater
index a1c2aea..8a64905 100755
--- a/phased-updater
+++ b/phased-updater
@@ -734,7 +734,8 @@ def main():
734 new_pup = current_pup + PUP_SLOW_INCREMENT734 new_pup = current_pup + PUP_SLOW_INCREMENT
735 if src_pkg in MEDIUM_PACKAGES:735 if src_pkg in MEDIUM_PACKAGES:
736 new_pup = current_pup + PUP_MEDIUM_INCREMENT736 new_pup = current_pup + PUP_MEDIUM_INCREMENT
737 if src_pkg in FULLY_PHASED_PACKAGES:737 if (src_pkg in FULLY_PHASED_PACKAGES or
738 src_pkg.startswith('language-pack')):
738 new_pup = 100739 new_pup = 100
739 if not options.no_act:740 if not options.no_act:
740 set_pup(current_pup, new_pup, release, suite, src_pkg)741 set_pup(current_pup, new_pup, release, suite, src_pkg)

Subscribers

People subscribed via source and target branches