summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2009-11-16 00:23:08 +0000
committerZac Medico <zmedico@gentoo.org>2009-11-16 00:23:08 +0000
commitfcac912fc8445c35c198a9e748846d2f8dfe1196 (patch)
treea6677d0a402cc8d58798a3349ba7c30b613a87ec /bin
parent8a11ca966112d1a17f503e3db9f7aac36625c382 (diff)
downloadportage-fcac912fc8445c35c198a9e748846d2f8dfe1196.tar.gz
portage-fcac912fc8445c35c198a9e748846d2f8dfe1196.tar.bz2
portage-fcac912fc8445c35c198a9e748846d2f8dfe1196.zip
Remove SLOT.missing since SLOT.invalid handles that case now.v2.2_rc50
svn path=/main/trunk/; revision=14824
Diffstat (limited to 'bin')
-rwxr-xr-xbin/repoman5
1 files changed, 2 insertions, 3 deletions
diff --git a/bin/repoman b/bin/repoman
index 0df7c00ae..f8e1fc856 100755
--- a/bin/repoman
+++ b/bin/repoman
@@ -283,8 +283,7 @@ qahelp={
"EAPI.definition":"EAPI is defined after an inherit call (must be defined before)",
"EAPI.incompatible":"Ebuilds that use features that are only available with a different EAPI",
"EAPI.unsupported":"Ebuilds that have an unsupported EAPI version (you must upgrade portage)",
- "SLOT.invalid":"Ebuilds that have an invalid SLOT variable value",
- "SLOT.missing":"Ebuilds that have a missing or empty SLOT variable",
+ "SLOT.invalid":"Ebuilds that have a missing or invalid SLOT variable value",
"HOMEPAGE.missing":"Ebuilds that have a missing or empty HOMEPAGE variable",
"DEPEND.bad":"User-visible ebuilds with bad DEPEND settings (matched against *visible* ebuilds)",
"RDEPEND.bad":"User-visible ebuilds with bad RDEPEND settings (matched against *visible* ebuilds)",
@@ -388,7 +387,7 @@ qawarnings = set((
non_ascii_re = re.compile(r'[^\x00-\x7f]')
-missingvars=["KEYWORDS","LICENSE","DESCRIPTION","HOMEPAGE","SLOT"]
+missingvars = ["KEYWORDS", "LICENSE", "DESCRIPTION", "HOMEPAGE"]
allvars = set(x for x in portage.auxdbkeys if not x.startswith("UNUSED_"))
allvars.update(Package.metadata_keys)
allvars = sorted(allvars)