diff options
author | Michał Górny <mgorny@gentoo.org> | 2010-10-05 20:43:39 +0200 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2010-10-24 11:30:10 -0700 |
commit | 83525c3837ff34614370bf3a18dbb53083404eb2 (patch) | |
tree | ea172c6ed28bd03b61ea9ab5a6f4389226d59135 | |
parent | 12b0f1432ae538738a81aa35458b491b4f6eff80 (diff) | |
download | portage-83525c3837ff34614370bf3a18dbb53083404eb2.tar.gz portage-83525c3837ff34614370bf3a18dbb53083404eb2.tar.bz2 portage-83525c3837ff34614370bf3a18dbb53083404eb2.zip |
egencache --update-changelogs: reverse the sort order for headers.
-rwxr-xr-x | bin/egencache | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/bin/egencache b/bin/egencache index 783cfc428..e0834a4ad 100755 --- a/bin/egencache +++ b/bin/egencache @@ -623,7 +623,8 @@ class GenChangeLogs(object): changed = [str(x) for x in sorted(changed)] wroteheader = False - for c in changed: + # Reverse the sort order for headers. + for c in reversed(changed): if c.startswith('+') and c.endswith('.ebuild'): output.write('*%s (%s)\n' % (c[1:-7], date)) wroteheader = True @@ -654,7 +655,7 @@ class GenChangeLogs(object): output.write('\n%s\n\n' % '\n'.join([self._wrapper.fill(x) for x in body])) output.close() - + def run(self): repo_path = self._portdb.porttrees[0] os.chdir(repo_path) |