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

(-)bin/repoman.old (-3 / +3 lines)
Lines 140-146 Link Here
140
	"ebuild.nesteddie":"Placing 'die' inside ( ) prints an error, but doesn't stop the ebuild.",
140
	"ebuild.nesteddie":"Placing 'die' inside ( ) prints an error, but doesn't stop the ebuild.",
141
	"IUSE.invalid":"This build has a variable in IUSE that is not in the use.desc or use.local.desc file",
141
	"IUSE.invalid":"This build has a variable in IUSE that is not in the use.desc or use.local.desc file",
142
	"LICENSE.invalid":"This ebuild is listing a license that doesnt exist in portages license/ dir.",
142
	"LICENSE.invalid":"This ebuild is listing a license that doesnt exist in portages license/ dir.",
143
	"KEYWORDS.invalid":"This ebuild contains KEYWORDS that are not listed in profiles/keywords.desc",
143
	"KEYWORDS.invalid":"This ebuild contains KEYWORDS that are not listed in profiles/arch.list",
144
	"ebuild.nostable":"There are no ebuilds that are marked as stable for your ARCH",
144
	"ebuild.nostable":"There are no ebuilds that are marked as stable for your ARCH",
145
	"ebuild.allmasked":"All ebuilds are masked for this package",
145
	"ebuild.allmasked":"All ebuilds are masked for this package",
146
	"ebuild.majorsyn":"This ebuild has a major syntax error that may cause the ebuild to fail partially or fully",
146
	"ebuild.majorsyn":"This ebuild has a major syntax error that may cause the ebuild to fail partially or fully",
Lines 468-476 Link Here
468
468
469
# retrieve list of offical keywords
469
# retrieve list of offical keywords
470
try:
470
try:
471
	kwlist=portage.grabfile(repoman_settings["PORTDIR"]+"/profiles/keywords.desc")
471
	kwlist=portage.grabfile(repoman_settings["PORTDIR"]+"/profiles/arch.list")
472
except:
472
except:
473
	err("Couldn't read KEYWORDS from keywords.desc")
473
	err("Couldn't read KEYWORDS from arch.list")
474
if not kwlist:
474
if not kwlist:
475
	kwlist=["alpha","arm","hppa","mips","ppc","sparc","x86"]
475
	kwlist=["alpha","arm","hppa","mips","ppc","sparc","x86"]
476
476

Return to bug 35398