fails["CVS/Entries.IO_error"].append(checkdir+"/files/CVS/Entries")
continue
- mf = Manifest(checkdir, db=portage.db["/"]["porttree"].dbapi,
- mysettings=repoman_settings, repoman_settings["DISTDIR"])
+ mf = Manifest(checkdir,
+ portage.FetchlistDict(checkdir, repoman_settings),
+ repoman_settings["DISTDIR"])
mydigests=mf.getTypeDigests("DIST")
myfiles_all = []
import commands
from time import sleep
from random import shuffle
+ import UserDict
except ImportError, e:
sys.stderr.write("\n\n")
sys.stderr.write("!!! Failed to complete python imports. These are internal modules for\n")
db = portagetree().dbapi
global settings
- mf = Manifest(mysettings["O"], db, mysettings, mysettings["DISTDIR"])
+ mf = Manifest(mysettings["O"], FetchlistDict(mysettings["O"], mysettings), mysettings["DISTDIR"])
mf.create(assumeDistfileHashes=True)
for f in myarchives:
# the whole type evaluation is only for the case that myarchives isn't a
if mysettings is None:
mysettings = config(clone=settings)
- mf = Manifest(pkgdir, db, mysettings, mysettings["DISTDIR"])
+ mf = Manifest(pkgdir, FetchlistDict(pkgdir, mysettings), mysettings["DISTDIR"])
return mf.getDigests()
pkgdir = mysettings["O"]
if db is None:
db = portagetree().dbapi
- mf = Manifest(pkgdir, db, mysettings, mysettings["DISTDIR"])
+ mf = Manifest(pkgdir, FetchlistDict(pkgdir, mysettings), mysettings["DISTDIR"])
try:
if strict:
print ">>> checking ebuild checksums",
"Is this a regular package (does it have a CATEGORY file? A dblink can be virtual *and* regular)"
return os.path.exists(self.dbdir+"/CATEGORY")
+class FetchlistDict(UserDict.DictMixin):
+ def __init__(self, pkgdir, settings):
+ self.pkgdir = pkgdir
+ self.cp = os.sep.join(pkgdir.split(os.sep)[-2:])
+ self.settings = settings
+ self.db = portagetree().dbapi
+ porttree = os.path.dirname(os.path.dirname(pkgdir))
+ porttree_key = os.path.normpath(os.path.realpath(porttree)).strip(os.sep)
+ # This ensures that the fetchlist comes from the correct portage tree.
+ for t in self.db.porttrees:
+ if os.path.normpath(os.path.realpath(t)).strip(os.sep) != porttree_key:
+ self.db.porttrees.remove(t)
+ def __getitem__(self, pkg_key):
+ return self.db.getfetchlist(pkg_key, mysettings=self.settings, all=True)[1]
+ def has_key(self, pkg_key):
+ return self.db.cpv_exists(pkg_key)
+ def keys(self):
+ return self.db.cp_list(self.cp)
+
def cleanup_pkgmerge(mypkg,origdir):
shutil.rmtree(settings["PORTAGE_TMPDIR"]+"/binpkgs/"+mypkg)
if os.path.exists(settings["PORTAGE_TMPDIR"]+"/portage/"+mypkg+"/temp/environment"):
return not (filename in ["CVS", ".svn", "files", "Manifest"] or filename.endswith(".ebuild"))
class Manifest(object):
- def __init__(self, pkgdir, db, mysettings, distdir, manifest1_compat=True, from_scratch=False):
- """ create new Manifest instance for package in pkgdir, using db and mysettings for metadata lookups,
+ def __init__(self, pkgdir, fetchlist_dict, distdir, manifest1_compat=True, from_scratch=False):
+ """ create new Manifest instance for package in pkgdir
and add compability entries for old portage versions if manifest1_compat == True.
Do not parse Manifest file if from_scratch == True (only for internal use) """
self.pkgdir = pkgdir.rstrip(os.sep) + os.sep
if not from_scratch:
self._read()
self.compat = manifest1_compat
- self.db = db
- self.mysettings = mysettings
+ self.fetchlist_dict = fetchlist_dict
self.distdir = distdir
def guessType(self, filename):
distfilehashes = self.fhashdict["DIST"]
else:
distfilehashes = {}
- self.__init__(self.pkgdir, self.db, self.mysettings, self.distdir, from_scratch=True)
+ self.__init__(self.pkgdir, self.fetchlist_dict, self.distdir, from_scratch=True)
for pkgdir, pkgdir_dirs, pkgdir_files in os.walk(self.pkgdir):
break
for f in pkgdir_files:
def _getCpvDistfiles(self, cpv):
""" Get a list of all DIST files associated to the given cpv """
- return self.db.getfetchlist(cpv, mysettings=self.mysettings, all=True)[1]
+ return self.fetchlist_dict[cpv]
def updateFileHashes(self, ftype, fname, checkExisting=True, ignoreMissing=True, reuseExisting=False):
""" Regenerate hashes for the given file """