summaryrefslogtreecommitdiffstats
path: root/pym/portage/dbapi/vartree.py
diff options
context:
space:
mode:
Diffstat (limited to 'pym/portage/dbapi/vartree.py')
-rw-r--r--pym/portage/dbapi/vartree.py15
1 files changed, 0 insertions, 15 deletions
diff --git a/pym/portage/dbapi/vartree.py b/pym/portage/dbapi/vartree.py
index 0060b5715..fd543d5cd 100644
--- a/pym/portage/dbapi/vartree.py
+++ b/pym/portage/dbapi/vartree.py
@@ -1736,21 +1736,6 @@ class dblink(object):
for x in listdir(inforoot):
self.copyfile(inforoot+"/"+x)
- # do we have a origin repository name for the current package
- repopath = os.sep.join(self.settings["O"].split(os.sep)[:-2])
- # bindbapi has no getRepositories() method
- if mydbapi and hasattr(mydbapi, "getRepositories"):
- foundname = False
- for reponame in mydbapi.getRepositories():
- if mydbapi.getRepositoryPath(reponame) == repopath:
- fd = open(os.path.join(self.dbtmpdir, "repository"), "w")
- fd.write(reponame+"\n")
- fd.close()
- foundname = True
- break
- if not foundname:
- ewarn("Could not determine name of source repository at %s" % repopath, phase="preinst", key=self.mycpv)
-
# write local package counter for recording
lcfile = open(os.path.join(self.dbtmpdir, "COUNTER"),"w")
lcfile.write(str(counter))