summaryrefslogtreecommitdiffstats
path: root/pym/_emerge
Commit message (Expand)AuthorAgeFilesLines
* Use input() instead of raw_input() when Python 3 is used.Arfrever Frehtes Taifersar Arahesis2009-09-211-1/+4
* Use next(iterator) instead of iterator.next() for compatibility with Python 3.Arfrever Frehtes Taifersar Arahesis2009-09-214-8/+8
* Define long as int when Python 3 is used.Arfrever Frehtes Taifersar Arahesis2009-09-218-0/+22
* Use dict.(keys|values|items)() instead of dict.(iterkeys|itervalues|iteritems...Arfrever Frehtes Taifersar Arahesis2009-09-2119-67/+67
* Fix case for 0 args in args unicode conversion.Zac Medico2009-09-211-1/+2
* Support both Python 2 and 3 in portage._unicode_encode() and portage._unicode...Arfrever Frehtes Taifersar Arahesis2009-09-212-2/+3
* 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-216-13/+13
* Define basestring as str when Python 3 is used.Arfrever Frehtes Taifersar Arahesis2009-09-216-0/+22
* Use filter() and zip() instead of itertools.ifilter() and itertools.izip() fo...Arfrever Frehtes Taifersar Arahesis2009-09-217-20/+15
* Fix AtomArg constructor calls to pass in Atom instances, so the constructorZac Medico2009-09-212-23/+19
* Tread blockers as invalid.Zac Medico2009-09-211-1/+1
* Fix redundant Atom construtor call in _show_unsatisfied_dep().Zac Medico2009-09-211-1/+0
* Remove virtuals from the cache because they're unused since portage-2.1.6Zac Medico2009-09-201-4/+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
* Add fallback in ImportError for io.StringIO. This is needed for python-2.6Zac Medico2009-09-201-1/+7
* Use _unicode_encode() to ensure that only unicode strings are passed intoZac Medico2009-09-201-14/+15
* Support print() function with Python 2 in more files.Arfrever Frehtes Taifersar Arahesis2009-09-2010-0/+20
* Update system imports for compatibility with Python 3.Arfrever Frehtes Taifersar Arahesis2009-09-204-15/+21
* Update syntax of numbers in some files which were missing in previous commit.Arfrever Frehtes Taifersar Arahesis2009-09-202-9/+9
* Update syntax of numbers for compatibility with Python 3.Arfrever Frehtes Taifersar Arahesis2009-09-205-6/+6
* Update syntax of calls to print() for compatibility with Python 3.Arfrever Frehtes Taifersar Arahesis2009-09-2010-646/+645
* Update syntax of 'except' statements for compatibility with Python 3.Arfrever Frehtes Taifersar Arahesis2009-09-2018-73/+73
* 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-194-21/+13
* Fix _expand_new_virtuals() to preserve USE deps in atoms for new-styleZac Medico2009-09-191-6/+12
* Use a dict for Package.metadata, because it's faster. Thanks to MaratZac Medico2009-09-191-49/+33
* 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
* Use cpv_getkey() instead of dep_getkey() where appropriate.Zac Medico2009-09-131-1/+1
* Handle AttributeError instead of using getattr. Thanks to Marat RadchenkoZac Medico2009-09-071-3/+3
* In display_news_notification(), use the exising vartree instance to populateZac Medico2009-09-061-0/+6
* Add a vardbapi._pkgs_changed attribute to use instead of PORTAGE_COUNTER_HASHZac Medico2009-09-051-8/+1
* Inside Scheduler._check_manifests(), display all broken manifests instead ofZac Medico2009-09-051-1/+5
* Use _unicode_decode() on the string returned from time.strftime(), in orderZac Medico2009-09-051-1/+5
* pym/portage/sets/files.py: use WORLD_FILE instead of manual reconstructionFabian Groffen2009-09-051-3/+2
* consistently use CACHE_PATH with target_root, this commit needs a separate so...Fabian Groffen2009-09-052-2/+2
* Bug #282808 - Handle a potential KeyError inside PollScheduler._poll_loop()Zac Medico2009-09-051-1/+8
* Fix typo from previous commit.Zac Medico2009-09-031-1/+1
* Bug #283513 - Do not allow --noreplace together with --emptytree since itZac Medico2009-09-031-0/+6
* Inside depgraph._show_unsatisfied_dep(), show reasons for packages masked dueZac Medico2009-08-251-3/+7
* Show log paths when displaying the list of failed packages for --keep-going.Zac Medico2009-08-241-11/+14
* In Scheduler._schedule_tasks_imp(), add uninstall operations to the frontZac Medico2009-08-221-1/+1
* Make Scheduler._choose_pkg() prefer uninstall operations when available.Zac Medico2009-08-221-3/+13
* Bug #282269 - Avoid str() calls with overlay paths, which can triggerZac Medico2009-08-222-1/+7
* Add some --debug output for backtracking. Also, remove unused imports.v2.2_rc39Zac Medico2009-08-211-3/+31
* Add support for --keep-going=n so that it can be disabled on the command lineZac Medico2009-08-212-2/+13