summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2007-01-06 22:39:23 +0000
committerZac Medico <zmedico@gentoo.org>2007-01-06 22:39:23 +0000
commit07f9e3e8637b4b8749cb584fd623c146d10fe214 (patch)
tree9f91366e87962936bea688c0c048c541817fd3ec /bin/repoman
parentFor bug #160310, remove the line continuation syntax check since it's still p... (diff)
downloadportage-multirepo-07f9e3e8637b4b8749cb584fd623c146d10fe214.tar.gz
portage-multirepo-07f9e3e8637b4b8749cb584fd623c146d10fe214.tar.bz2
portage-multirepo-07f9e3e8637b4b8749cb584fd623c146d10fe214.zip
Fix the digestentry.unused check so that it works properly when old-style files/digest-* don't exist.
svn path=/main/trunk/; revision=5477
Diffstat (limited to 'bin/repoman')
-rwxr-xr-xbin/repoman13
1 files changed, 9 insertions, 4 deletions
diff --git a/bin/repoman b/bin/repoman
index 88b101bb..60aa4d9d 100755
--- a/bin/repoman
+++ b/bin/repoman
@@ -822,7 +822,6 @@ for x in scanlist:
mf = Manifest(checkdir, repoman_settings["DISTDIR"])
mydigests=mf.getTypeDigests("DIST")
- myfiles_all = []
if os.path.exists(checkdir+"/files"):
filesdirlist=os.listdir(checkdir+"/files")
@@ -854,7 +853,6 @@ for x in scanlist:
else:
# We have an ebuild
myuris, myfiles = portdb.getfetchlist(mykey, all=True)
- myfiles_all.extend(myfiles)
uri_dict = {}
for myu in myuris:
@@ -919,11 +917,18 @@ for x in scanlist:
fails["file.name"].append("%s/files/%s: char '%s'" % (checkdir, y, c))
break
- for entry in mydigests.keys():
+ fetchlist_dict = portage.FetchlistDict(checkdir, repoman_settings, portdb)
+ myfiles_all = []
+ for myfiles in fetchlist_dict.itervalues():
+ myfiles_all.extend(myfiles)
+ del myfiles
+ del fetchlist_dict
+ myfiles_all = set(myfiles_all)
+ for entry in mydigests:
if entry not in myfiles_all:
stats["digestentry.unused"] += 1
fails["digestentry.unused"].append(checkdir+"::"+entry)
-
+ del mydigests, myfiles_all
if "ChangeLog" not in checkdirlist:
stats["changelog.missing"]+=1