commit: 5d67d1adeed7a6d0c7a9cc00a54a303401f20f8a
Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 28 06:20:26 2011 +0000
Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Fri Oct 28 06:20:26 2011 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=5d67d1ad
RepoConfigLoader: sort layout.conf attributes
---
pym/portage/repository/config.py | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/pym/portage/repository/config.py b/pym/portage/repository/config.py
index 1a7effe..15c7ec5 100644
--- a/pym/portage/repository/config.py
+++ b/pym/portage/repository/config.py
@@ -399,9 +399,9 @@ class RepoConfigLoader(object):
# them the ability to do incremental overrrides
repo.aliases = layout_data['aliases'] + tuple(aliases)
- for value in ('sign-manifest', 'thin-manifest', 'allow-missing-manifest',
- 'create-manifest', 'disable-manifest', 'cache-formats', 'manifest-hashes',
- 'update-changelog'):
+ for value in ('allow-missing-manifest', 'cache-formats',
+ 'create-manifest', 'disable-manifest', 'manifest-hashes',
+ 'sign-manifest', 'thin-manifest', 'update-changelog'):
setattr(repo, value.lower().replace("-", "_"), layout_data[value])
repo.portage1_profiles = any(x.startswith("portage-1") \
|