s = s[s.rfind("\n") + 1:]
fails["file.UTF8"].append("%s/%s: line %i, just after: '%s'" % (checkdir, y, line, s))
- if isCvs:
- try:
- mystat=os.stat(checkdir+"/files")[0]
- if len(ebuildlist) and not S_ISDIR(mystat):
- raise Exception
- except SystemExit, e:
- raise # Need to propogate this
- except:
+ has_filesdir = True
+ if not os.path.isdir(os.path.join(checkdir, "files")):
+ has_filesdir = False
+ if manifest1_compat:
stats["filedir.missing"] += 1
fails["filedir.missing"].append(checkdir)
- continue
+
+ if isCvs:
try:
myf=open(checkdir+"/CVS/Entries","r")
myl=myf.readlines()
fails["CVS/Entries.IO_error"].append(checkdir+"/CVS/Entries")
continue
+ if isCvs and has_filesdir:
try:
myf=open(checkdir+"/files/CVS/Entries","r")
myl=myf.readlines()