summaryrefslogtreecommitdiffstats
path: root/pym/portage.py
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2006-04-09 09:00:39 +0000
committerZac Medico <zmedico@gentoo.org>2006-04-09 09:00:39 +0000
commitbbbf1d91708fd4b350c2abe62958b71790464049 (patch)
tree77d0aa2c0e2ce7a5b3b717766521ad9f418193d6 /pym/portage.py
parent1463b4a1d511bfa0cc03f7cc618c1a964a55b98f (diff)
downloadportage-bbbf1d91708fd4b350c2abe62958b71790464049.tar.gz
portage-bbbf1d91708fd4b350c2abe62958b71790464049.tar.bz2
portage-bbbf1d91708fd4b350c2abe62958b71790464049.zip
Encapsulate type guessing logic in a new Manifest method.
svn path=/main/trunk/; revision=3106
Diffstat (limited to 'pym/portage.py')
-rw-r--r--pym/portage.py10
1 files changed, 1 insertions, 9 deletions
diff --git a/pym/portage.py b/pym/portage.py
index dc8f2c0b7..5b2c278f4 100644
--- a/pym/portage.py
+++ b/pym/portage.py
@@ -2077,18 +2077,10 @@ def digestgen(myarchives,mysettings,db=None,overwrite=1,manifestonly=0):
for f in myarchives:
# the whole type evaluation is only for the case that myarchives isn't a
# DIST file as create() determines the type on its own
- mytype = mf.guessType(f)
- if mytype == "AUX":
- f = f[5:]
- elif mytype is None:
- continue
- myrealtype = mf.findFile(f)
- if myrealtype != None:
- mytype = myrealtype
writemsg(">>> Creating Manifest for %s\n" % mysettings["O"])
try:
writemsg(">>> Adding digests for file %s\n" % f)
- mf.updateFileHashes(mytype, f, checkExisting=False, reuseExisting=not os.path.exists(os.path.join(mysettings["DISTDIR"], f)))
+ mf.updateHashesGuessType(f, checkExisting=False, reuseExisting=not os.path.exists(os.path.join(mysettings["DISTDIR"], f)))
except portage_exception.FileNotFound, e:
writemsg("!!! File %s doesn't exist, can't update Manifest\n" % str(e))
return 0