svn path=/main/branches/2.0/; revision=2065
2. /var/cache/edb/world is now /var/lib/portage/world.
3. /etc/portage/profile/virtuals is _USER_ configs only.
+ 01 Oct 2005; Brian Harring <ferringb@gentoo.org> bin/repoman:
+ Touch ups to file.name check.
+
01 Oct 2005; Brian Harring <ferringb@gentoo.org> bin/ebuild,
pym/portage.py:
Fixed ebuild some-ebuild setup unpack so it functions like
stats["file.size"] += 1
fails["file.size"].append("("+ str(mystat.st_size/1024) + "K) "+x+"/files/"+y)
- for c in y.strip(os.path.sep):
+ for c in os.path.basename(y.rstrip(os.path.sep)):
if c not in allowed_filename_chars_set:
stats["file.name"] += 1
- fails["file.name"].append("%s/%s: char '%s'" % (checkdir, y, c))
+ fails["file.name"].append("%s/files/%s: char '%s'" % (checkdir, y, c))
break