Merge lp:~sil2100/cupstream2distro/dch_heuristics into lp:cupstream2distro

Proposed by Łukasz Zemczak
Status: Merged
Approved by: Didier Roche-Tolomelli
Approved revision: 553
Merged at revision: 553
Proposed branch: lp:~sil2100/cupstream2distro/dch_heuristics
Merge into: lp:cupstream2distro
Diff against target: 10 lines (+1/-1)
1 file modified
cupstream2distro/packagemanager.py (+1/-1)
To merge this branch: bzr merge lp:~sil2100/cupstream2distro/dch_heuristics
Reviewer Review Type Date Requested Status
Didier Roche-Tolomelli Approve
Review via email: mp+212788@code.launchpad.net

Commit message

Let's make sure we're using the right heuristics in dch, as there are differences between dch versions in the defaults. This fixes some recent problems with symbols file update mentionings in changelogs

Description of the change

Let's make sure we're using the right heuristics in dch, as there are differences between dch versions in the defaults. This fixes some recent problems with symbols file update mentionings in changelogs

To post a comment you must log in.
Revision history for this message
Didier Roche-Tolomelli (didrocks) wrote :

Excellent!

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'cupstream2distro/packagemanager.py'
2--- cupstream2distro/packagemanager.py 2014-03-14 00:25:32 +0000
3+++ cupstream2distro/packagemanager.py 2014-03-26 08:41:17 +0000
4@@ -496,7 +496,7 @@
5 dch_env = os.environ.copy()
6 dch_env["DEBFULLNAME"] = settings.BOT_DEBFULLNAME
7 dch_env["DEBEMAIL"] = settings.BOT_DEBEMAIL
8- subprocess.Popen(["dch", "debian/*symbols: auto-update new symbols to released version"], env=dch_env).communicate()
9+ subprocess.Popen(["dch", "--release-heuristic", "changelog", "debian/*symbols: auto-update new symbols to released version"], env=dch_env).communicate()
10 subprocess.call(["bzr", "commit", "-m", "Update symbols"])
11
12

Subscribers

People subscribed via source and target branches