Merge lp:~brian-murray/ubuntu-archive-tools/pup-raring into lp:ubuntu-archive-tools

Proposed by Brian Murray
Status: Merged
Merged at revision: 765
Proposed branch: lp:~brian-murray/ubuntu-archive-tools/pup-raring
Merge into: lp:ubuntu-archive-tools
Diff against target: 18 lines (+6/-2)
1 file modified
sru-release (+6/-2)
To merge this branch: bzr merge lp:~brian-murray/ubuntu-archive-tools/pup-raring
Reviewer Review Type Date Requested Status
Colin Watson Approve
Review via email: mp+178987@code.launchpad.net

Description of the change

The phased-updater is only incrementing packages in raring, so we should only set the phased_update_percentage for that release.

From phased-updater:
        # XXX - starting with raring
        if rname != 'raring':
            continue

To post a comment you must log in.
Revision history for this message
Colin Watson (cjwatson) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'sru-release'
2--- sru-release 2013-07-18 17:16:29 +0000
3+++ sru-release 2013-08-07 14:40:47 +0000
4@@ -175,8 +175,12 @@
5 print('Copied to %s' % release)
6 else:
7 # -proposed -> -updates
8- copy(to_pocket='Updates', to_series=release,
9- phased_update_percentage=10)
10+ # only phasing updates for raring to start
11+ if release == 'raring':
12+ copy(to_pocket='Updates', to_series=release,
13+ phased_update_percentage=10)
14+ else:
15+ copy(to_pocket='Updates', to_series=release)
16 print('Copied to %s-updates' % release)
17 sru_bugs = match_srubugs(options, versions['changesfile'])
18 for sru_bug in sru_bugs:

Subscribers

People subscribed via source and target branches