summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2008-11-16 20:44:27 +0000
committerZac Medico <zmedico@gentoo.org>2008-11-16 20:44:27 +0000
commit11a21cd27ae9f9bbe46c28cffc2908bd30579f0d (patch)
tree7cd65aa79d31d12f83c980d0c30b6e8db033ecac
parentb66f39fc551cac1692b32c698d1df982beba38fc (diff)
downloadportage-11a21cd27ae9f9bbe46c28cffc2908bd30579f0d.tar.gz
portage-11a21cd27ae9f9bbe46c28cffc2908bd30579f0d.tar.bz2
portage-11a21cd27ae9f9bbe46c28cffc2908bd30579f0d.zip
Trigger the --include-dev suggestion for any keywords from dev profiles, even
if those keywords also belong to stable profiles. svn path=/main/trunk/; revision=11970
-rwxr-xr-xbin/repoman3
1 files changed, 1 insertions, 2 deletions
diff --git a/bin/repoman b/bin/repoman
index 8289bcc9a..34f88557f 100755
--- a/bin/repoman
+++ b/bin/repoman
@@ -674,7 +674,7 @@ else:
def dev_keywords(profiles):
"""
Create a set of KEYWORDS values that exist in 'dev'
- profiles and not in 'stable' profiles. These are used
+ profiles. These are used
to trigger a message notifying the user when they might
want to add the --include-dev option.
"""
@@ -688,7 +688,6 @@ def dev_keywords(profiles):
arch_set.add(arch)
dev_keywords = type_arch_map.get('dev', set())
- dev_keywords.difference_update(type_arch_map.get('stable', set()))
dev_keywords.update(['~' + arch for arch in dev_keywords])
return frozenset(dev_keywords)