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

(-)bin/repoman (-12 lines)
Lines 135-142 Link Here
135
	"digest.fail":"Digest does not match the specified local file",
135
	"digest.fail":"Digest does not match the specified local file",
136
	"digest.stray":"Digest files that do not have a corresponding ebuild",
136
	"digest.stray":"Digest files that do not have a corresponding ebuild",
137
	"digest.missing":"Digest files that are missing (ebuild exists, digest doesn't)",
137
	"digest.missing":"Digest files that are missing (ebuild exists, digest doesn't)",
138
	"digest.disjointed":"Digests not added to cvs when the matching ebuild has been added",
139
	"digest.notadded":"Digests that exist but have not been added to cvs",
140
	"digest.unmatch":"Digests which are incomplete (please check if your USE/ARCH includes all files)",
138
	"digest.unmatch":"Digests which are incomplete (please check if your USE/ARCH includes all files)",
141
	"ebuild.invalidname":"Ebuild files with a non-parseable or syntactically incorrect name (or using 2.1 versioning extensions)",
139
	"ebuild.invalidname":"Ebuild files with a non-parseable or syntactically incorrect name (or using 2.1 versioning extensions)",
142
	"ebuild.namenomatch":"Ebuild files that do not have the same name as their parent directory",
140
	"ebuild.namenomatch":"Ebuild files that do not have the same name as their parent directory",
Lines 207-214 Link Here
207
"ebuild.allmasked",
205
"ebuild.allmasked",
208
"ebuild.nesteddie",
206
"ebuild.nesteddie",
209
"digest.assumed",
207
"digest.assumed",
210
"digest.notadded",
211
"digest.disjointed",
212
"digest.missing",
208
"digest.missing",
213
"digestentry.unused",
209
"digestentry.unused",
214
"DEPEND.badmasked","RDEPEND.badmasked","PDEPEND.badmasked",
210
"DEPEND.badmasked","RDEPEND.badmasked","PDEPEND.badmasked",
Lines 910-923 Link Here
910
			for y in filesdirlist:
906
			for y in filesdirlist:
911
				if not y.startswith("digest-"):
907
				if not y.startswith("digest-"):
912
					continue
908
					continue
913
				if y[7:] not in dadded:
914
					#digest not added to cvs
915
					stats["digest.notadded"]=stats["digest.notadded"]+1
916
					fails["digest.notadded"].append(x+"/files/"+y)
917
					if y[7:] in eadded:
918
						stats["digest.disjointed"]=stats["digest.disjointed"]+1
919
						fails["digest.disjointed"].append(x+"/files/"+y)
920
						
921
				if os.stat(checkdir+"/files/"+y)[0] & 0x0248:
909
				if os.stat(checkdir+"/files/"+y)[0] & 0x0248:
922
					stats["file.executable"] += 1
910
					stats["file.executable"] += 1
923
					fails["file.executable"].append(x+"/files/"+y)
911
					fails["file.executable"].append(x+"/files/"+y)

Return to bug 187795