Remove a few unused depgraph attributes. (trunk r8345)
authorZac Medico <zmedico@gentoo.org>
Fri, 2 Nov 2007 06:50:18 +0000 (06:50 -0000)
committerZac Medico <zmedico@gentoo.org>
Fri, 2 Nov 2007 06:50:18 +0000 (06:50 -0000)
svn path=/main/branches/2.1.2/; revision=8372

bin/emerge

index c75e3ef54d933c14a282f07acce8df224b95c1d9..c38e4d3c18c21f0bdb972057452e54918a2faf56 100755 (executable)
@@ -1156,13 +1156,10 @@ class depgraph:
                                        "--getbinpkgonly" in self.myopts)
                del trees
 
-               self.missingbins=[]
                self.digraph=portage.digraph()
                # Tracks simple parent/child relationships (PDEPEND relationships are
                # not reversed).
                self._parent_child_digraph = digraph()
-               self.orderedkeys=[]
-               self.outdatedpackages=[]
                # contains all sets added to the graph
                self._sets = {}
                # contains atoms given as arguments
@@ -5814,15 +5811,6 @@ def action_build(settings, trees, mtimedb,
                        if "--quiet" not in myopts and "--nodeps" not in myopts:
                                print "\b\b... done!"
 
-                       if ("--usepkgonly" in myopts) and mydepgraph.missingbins:
-                               sys.stderr.write(red("The following binaries are not available for merging...\n"))
-
-               if mydepgraph.missingbins:
-                       for x in mydepgraph.missingbins:
-                               sys.stderr.write("   "+str(x)+"\n")
-                       sys.stderr.write("\nThese are required by '--usepkgonly' -- Terminating.\n\n")
-                       return 1
-
        if "--pretend" not in myopts and \
                ("--ask" in myopts or "--tree" in myopts or \
                "--verbose" in myopts) and \