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
=== modified file 'cupstream2distro/packagemanager.py'
--- cupstream2distro/packagemanager.py 2014-03-14 00:25:32 +0000
+++ cupstream2distro/packagemanager.py 2014-03-26 08:41:17 +0000
@@ -496,7 +496,7 @@
496 dch_env = os.environ.copy()496 dch_env = os.environ.copy()
497 dch_env["DEBFULLNAME"] = settings.BOT_DEBFULLNAME497 dch_env["DEBFULLNAME"] = settings.BOT_DEBFULLNAME
498 dch_env["DEBEMAIL"] = settings.BOT_DEBEMAIL498 dch_env["DEBEMAIL"] = settings.BOT_DEBEMAIL
499 subprocess.Popen(["dch", "debian/*symbols: auto-update new symbols to released version"], env=dch_env).communicate()499 subprocess.Popen(["dch", "--release-heuristic", "changelog", "debian/*symbols: auto-update new symbols to released version"], env=dch_env).communicate()
500 subprocess.call(["bzr", "commit", "-m", "Update symbols"])500 subprocess.call(["bzr", "commit", "-m", "Update symbols"])
501501
502502

Subscribers

People subscribed via source and target branches