mirror of
https://git.launchpad.net/ubuntu-dev-tools
synced 2025-06-06 13:31:31 +00:00
update_maintainer.py: Process control.in first.
This commit is contained in:
parent
bc3e647fc3
commit
526b7e63c6
3
debian/changelog
vendored
3
debian/changelog
vendored
@ -12,8 +12,9 @@ ubuntu-dev-tools (0.114) UNRELEASED; urgency=low
|
|||||||
|
|
||||||
[ Benjamin Drung ]
|
[ Benjamin Drung ]
|
||||||
* wrap-and-sort: Add option to use on individual file (LP: #699696).
|
* wrap-and-sort: Add option to use on individual file (LP: #699696).
|
||||||
|
* update_maintainer.py: Process control.in first.
|
||||||
|
|
||||||
-- Benjamin Drung <bdrung@debian.org> Tue, 25 Jan 2011 21:52:55 +0100
|
-- Benjamin Drung <bdrung@debian.org> Tue, 25 Jan 2011 22:08:49 +0100
|
||||||
|
|
||||||
ubuntu-dev-tools (0.113) unstable; urgency=low
|
ubuntu-dev-tools (0.113) unstable; urgency=low
|
||||||
|
|
||||||
|
@ -47,7 +47,7 @@ def update_maintainer(debian_directory, verbose=False):
|
|||||||
Policy: https://wiki.ubuntu.com/DebianMaintainerField
|
Policy: https://wiki.ubuntu.com/DebianMaintainerField
|
||||||
"""
|
"""
|
||||||
possible_contol_files = [os.path.join(debian_directory, f) for
|
possible_contol_files = [os.path.join(debian_directory, f) for
|
||||||
f in ["control", "control.in"]]
|
f in ["control.in", "control"]]
|
||||||
|
|
||||||
changelog_file = os.path.join(debian_directory, "changelog")
|
changelog_file = os.path.join(debian_directory, "changelog")
|
||||||
control_files = [f for f in possible_contol_files if os.path.isfile(f)]
|
control_files = [f for f in possible_contol_files if os.path.isfile(f)]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user