diff options
author | Zac Medico <zmedico@gentoo.org> | 2008-02-27 16:00:54 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2008-02-27 16:00:54 +0000 |
commit | 6c6c8b9449e085e9633b54423ee25a47aad4fe67 (patch) | |
tree | 8cb32d9cf5963e95b172332cf1931176b8338f3f | |
parent | 33d201cdf6e30a9e3dd0d7499050c827443df4fe (diff) | |
download | portage-6c6c8b9449e085e9633b54423ee25a47aad4fe67.tar.gz portage-6c6c8b9449e085e9633b54423ee25a47aad4fe67.tar.bz2 portage-6c6c8b9449e085e9633b54423ee25a47aad4fe67.zip |
Bug #211294 - Make repoman ignore profiles labeled with anything other
than "stable" or "dev" in profiles.desc so that we can extend it with
new labels such as "exp".
svn path=/main/trunk/; revision=9389
-rwxr-xr-x | bin/repoman | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/bin/repoman b/bin/repoman index e86fc5e17..87c57f43e 100755 --- a/bin/repoman +++ b/bin/repoman @@ -1308,6 +1308,9 @@ for x in scanlist: for prof in profiles[arch]: + if prof[1] not in ("stable", "dev"): + continue + profdir = portdir+"/profiles/"+prof[0] if prof[0] in arch_caches: |