Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 269225
Collapse All | Expand All

(-)file_not_specified_in_diff (-1 / +11 lines)
Line  Link Here
0
-- bin/repoman~
0
++ bin/repoman
Lines 264-269 Link Here
264
	"KEYWORDS.stable":"Ebuilds that have been added directly with stable KEYWORDS",
264
	"KEYWORDS.stable":"Ebuilds that have been added directly with stable KEYWORDS",
265
	"KEYWORDS.stupid":"Ebuilds that use KEYWORDS=-* instead of package.mask", 
265
	"KEYWORDS.stupid":"Ebuilds that use KEYWORDS=-* instead of package.mask", 
266
	"LICENSE.missing":"Ebuilds that have a missing or empty LICENSE variable",
266
	"LICENSE.missing":"Ebuilds that have a missing or empty LICENSE variable",
267
	"LICENSE.virtual":"Virtuals that have a non-empty LICENSE variable",
267
	"DESCRIPTION.missing":"Ebuilds that have a missing or empty DESCRIPTION variable",
268
	"DESCRIPTION.missing":"Ebuilds that have a missing or empty DESCRIPTION variable",
268
	"DESCRIPTION.toolong":"DESCRIPTION is over %d characters" % max_desc_len,
269
	"DESCRIPTION.toolong":"DESCRIPTION is over %d characters" % max_desc_len,
269
	"EAPI.definition":"EAPI is defined after an inherit call (must be defined before)",
270
	"EAPI.definition":"EAPI is defined after an inherit call (must be defined before)",
Lines 271-276 Link Here
271
	"EAPI.unsupported":"Ebuilds that have an unsupported EAPI version (you must upgrade portage)",
272
	"EAPI.unsupported":"Ebuilds that have an unsupported EAPI version (you must upgrade portage)",
272
	"SLOT.missing":"Ebuilds that have a missing or empty SLOT variable",
273
	"SLOT.missing":"Ebuilds that have a missing or empty SLOT variable",
273
	"HOMEPAGE.missing":"Ebuilds that have a missing or empty HOMEPAGE variable",
274
	"HOMEPAGE.missing":"Ebuilds that have a missing or empty HOMEPAGE variable",
275
	"HOMEPAGE.virtual":"Virtuals that have a non-empty HOMEPAGE variable",
274
	"DEPEND.bad":"User-visible ebuilds with bad DEPEND settings (matched against *visible* ebuilds)",
276
	"DEPEND.bad":"User-visible ebuilds with bad DEPEND settings (matched against *visible* ebuilds)",
275
	"RDEPEND.bad":"User-visible ebuilds with bad RDEPEND settings (matched against *visible* ebuilds)",
277
	"RDEPEND.bad":"User-visible ebuilds with bad RDEPEND settings (matched against *visible* ebuilds)",
276
	"PDEPEND.bad":"User-visible ebuilds with bad PDEPEND settings (matched against *visible* ebuilds)",
278
	"PDEPEND.bad":"User-visible ebuilds with bad PDEPEND settings (matched against *visible* ebuilds)",
Lines 337-342 Link Here
337
"DEPEND.badindev","RDEPEND.badindev","PDEPEND.badindev",
339
"DEPEND.badindev","RDEPEND.badindev","PDEPEND.badindev",
338
"DEPEND.badmaskedindev","RDEPEND.badmaskedindev","PDEPEND.badmaskedindev",
340
"DEPEND.badmaskedindev","RDEPEND.badmaskedindev","PDEPEND.badmaskedindev",
339
"DESCRIPTION.toolong",
341
"DESCRIPTION.toolong",
342
"HOMEPAGE.virtual",
343
"LICENSE.virtual",
340
"KEYWORDS.dropped",
344
"KEYWORDS.dropped",
341
"KEYWORDS.stupid",
345
"KEYWORDS.stupid",
342
"KEYWORDS.missing",
346
"KEYWORDS.missing",
Lines 1263-1268 Link Here
1263
				stats[myqakey]=stats[myqakey]+1
1267
				stats[myqakey]=stats[myqakey]+1
1264
				fails[myqakey].append(x+"/"+y+".ebuild")
1268
				fails[myqakey].append(x+"/"+y+".ebuild")
1265
1269
1270
		for var in ("HOMEPAGE", "LICENSE"):
1271
			if catdir == "virtual" and myaux.get(var):
1272
				myqakey=var+".virtual"
1273
				stats[myqakey]=stats[myqakey]+1
1274
				fails[myqakey].append(x+"/"+y+".ebuild")
1275
1266
		# 14 is the length of DESCRIPTION=""
1276
		# 14 is the length of DESCRIPTION=""
1267
		if len(myaux['DESCRIPTION']) > max_desc_len:
1277
		if len(myaux['DESCRIPTION']) > max_desc_len:
1268
			stats['DESCRIPTION.toolong'] += 1
1278
			stats['DESCRIPTION.toolong'] += 1

Return to bug 269225