summaryrefslogtreecommitdiffstats
path: root/pym/_emerge/depgraph.py
Commit message (Expand)AuthorAgeFilesLines
* Fix --backtrack option handling.v2.2_rc48Zac Medico2009-10-311-1/+1
* Add a --backtrack=COUNT option to control how many times backtracking isZac Medico2009-10-311-1/+1
* Factor vdb loading code out of the depgraph constructor, since this procedureZac Medico2009-10-231-18/+44
* Factor out duplicate "These are the packages that would be merged",Zac Medico2009-10-231-0/+62
* Add a --unordered-display option for use with --tree. This allows the displayZac Medico2009-10-231-2/+37
* Factor the --tree code out of depgraph.display().Zac Medico2009-10-231-136/+146
* Add support for display of nested sets in --depclean and --prune reverseZac Medico2009-10-191-5/+19
* Add a --use-ebuild-visibility option, for using unbuilt ebuild metadataZac Medico2009-10-181-1/+3
* Bug #266454 - Make @world an all-inclusive set once again, like it was priorZac Medico2009-10-161-11/+12
* TODO: Make resume_depgraph() return reasons for dropped_tasks, forZac Medico2009-10-161-0/+1
* Bug #289068 - Avoid KeyError: USE when depgraph calls _getMissingLicenses.Zac Medico2009-10-161-0/+3
* Fix ugly 'Candidates' --debug output.Zac Medico2009-10-091-1/+5
* Fix "TabError: inconsistent use of tabs and spaces in indentation" with Pytho...Arfrever Frehtes Taifersar Arahesis2009-10-091-1/+1
* Bug #271551 - Inside depgraph.select_files(), avoid bailing out due to anZac Medico2009-10-091-0/+12
* Bug #267468 - Display the total number of binary packages in the mergeZac Medico2009-10-091-0/+10
* Bug #285832 - When updates are missed due to dependencies that have beenZac Medico2009-10-031-1/+44
* Bug #287333 - If posible, use ebuild from tree when checking for keyword maskZac Medico2009-10-021-7/+6
* Bug #287333 - Fix the code from bug #252167 so it behaves consistentlyZac Medico2009-10-021-4/+3
* Fix breakage in file path -> package lookup code.Zac Medico2009-09-281-1/+1
* Bug #286522 - Check all portdbapi.findname return values in case itZac Medico2009-09-261-7/+13
* Bug #285767 - Add support to to identify and eliminate redundant packageZac Medico2009-09-251-7/+88
* Fix UnboundLocalError triggered by atom without category for nonexistentZac Medico2009-09-251-1/+1
* Use next(iterator) instead of iterator.next() for compatibility with Python 3.Arfrever Frehtes Taifersar Arahesis2009-09-211-4/+4
* Define long as int when Python 3 is used.Arfrever Frehtes Taifersar Arahesis2009-09-211-0/+1
* Use dict.(keys|values|items)() instead of dict.(iterkeys|itervalues|iteritems...Arfrever Frehtes Taifersar Arahesis2009-09-211-15/+15
* Use dep_expand instead of key_expand in the blocker display, since it seemsZac Medico2009-09-211-3/+3
* Use range() instead of xrange() for compatibility with Python 3.Arfrever Frehtes Taifersar Arahesis2009-09-211-6/+6
* Define basestring as str when Python 3 is used.Arfrever Frehtes Taifersar Arahesis2009-09-211-0/+3
* Use filter() and zip() instead of itertools.ifilter() and itertools.izip() fo...Arfrever Frehtes Taifersar Arahesis2009-09-211-3/+3
* Fix AtomArg constructor calls to pass in Atom instances, so the constructorZac Medico2009-09-211-20/+19
* Fix redundant Atom construtor call in _show_unsatisfied_dep().Zac Medico2009-09-211-1/+0
* Fix typo from previous commit.Zac Medico2009-09-201-1/+1
* Fix depgraph._validate_blockers() so that it doesn't do prohibited Atom(Atom)Zac Medico2009-09-201-5/+4
* Support print() function with Python 2 in more files.Arfrever Frehtes Taifersar Arahesis2009-09-201-0/+2
* Update syntax of calls to print() for compatibility with Python 3.Arfrever Frehtes Taifersar Arahesis2009-09-201-57/+57
* Update syntax of 'except' statements for compatibility with Python 3.Arfrever Frehtes Taifersar Arahesis2009-09-201-19/+19
* Remove obsolete InvalidAtom handler in _add_pkg_dep_string().Zac Medico2009-09-191-15/+8
* Avoid lots of redundant Atom constructor calls. Thanks to Marat RadchenkoZac Medico2009-09-191-16/+10
* Fix _expand_new_virtuals() to preserve USE deps in atoms for new-styleZac Medico2009-09-191-6/+12
* Fix broken virtual depth code from previous commit.Zac Medico2009-09-141-2/+1
* Add support in depgraph._add_pkg_dep_string() for adding indirect virtualZac Medico2009-09-141-6/+36
* Make depgraph._select_atoms() return a dict, in order to separate selectedZac Medico2009-09-141-17/+30
* Reimplement the code from bug #283795 so that indirect deps are preservedZac Medico2009-09-141-0/+16
* Inside depgraph._show_unsatisfied_dep(), show reasons for packages masked dueZac Medico2009-08-251-3/+7
* Bug #282269 - Avoid str() calls with overlay paths, which can triggerZac Medico2009-08-221-1/+3
* Add some --debug output for backtracking. Also, remove unused imports.v2.2_rc39Zac Medico2009-08-211-3/+31
* Set a limit of 30 backtracking attempts, since it's possible for it toZac Medico2009-08-121-3/+4
* Update imports to import portage.os (with unicode wrappers), and useZac Medico2009-08-111-8/+2
* Don't trigger the --root-deps code for removal actions such as --prune andZac Medico2009-08-101-7/+8
* Tweak $ROOT handling inside depgraph._add_pkg_deps() for removal actions,Zac Medico2009-08-101-0/+2