mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-11 13:27:06 +09:00
debian.py: Implement stable order of fields not in the predefined order
This commit is contained in:
1
debian/changelog
vendored
1
debian/changelog
vendored
@@ -5,6 +5,7 @@ linux-tools (4.4-1~exp1) UNRELEASED; urgency=medium
|
||||
[ Ben Hutchings ]
|
||||
* linux-perf: Fix reading of build-id from vDSO
|
||||
* linux-perf: Leave -rc suffix out of version in package description
|
||||
* debian.py: Implement stable order of fields not in the predefined order
|
||||
|
||||
-- Ben Hutchings <ben@decadent.org.uk> Tue, 19 Jan 2016 00:04:27 +0000
|
||||
|
||||
|
||||
2
debian/lib/python/debian_linux/debian.py
vendored
2
debian/lib/python/debian_linux/debian.py
vendored
@@ -424,7 +424,7 @@ class Package(dict):
|
||||
if i in self:
|
||||
keys.remove(i)
|
||||
yield i
|
||||
for i in keys:
|
||||
for i in sorted(list(keys)):
|
||||
yield i
|
||||
|
||||
def iteritems(self):
|
||||
|
||||
Reference in New Issue
Block a user