From a630073e781c8bf472cdc4d4f81147fc95ba398b Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Fri, 1 Jun 2007 18:30:22 +0000 Subject: Don't complain when $FILESDIR is missing unless manifest1 compatibility is enabled. svn path=/main/trunk/; revision=6711 --- bin/repoman | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) (limited to 'bin/repoman') diff --git a/bin/repoman b/bin/repoman index f47911665..f56769451 100755 --- a/bin/repoman +++ b/bin/repoman @@ -796,15 +796,10 @@ for x in scanlist: 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: - stats["filedir.missing"] += 1 - fails["filedir.missing"].append(checkdir) + if not os.path.isdir(os.path.join(checkdir, "files")): + if manifest1_compat: + stats["filedir.missing"] += 1 + fails["filedir.missing"].append(checkdir) continue try: myf=open(checkdir+"/CVS/Entries","r") -- cgit v1.2.3-1-g7c22