summaryrefslogtreecommitdiffstats
path: root/pym/portage
Commit message (Expand)AuthorAgeFilesLines
* Decode database name passed to portage.cache.sqlite.database._db_module.conne...Arfrever Frehtes Taifersar Arahesis2009-09-211-2/+2
* Use next(iterator) instead of iterator.next() for compatibility with Python 3.Arfrever Frehtes Taifersar Arahesis2009-09-213-5/+5
* Decode all keys in dictionary containing environment passed to os.execve() in...Arfrever Frehtes Taifersar Arahesis2009-09-211-1/+7
* 'filtered_auxdbkeys' should be a list to allow sorting.Arfrever Frehtes Taifersar Arahesis2009-09-211-1/+1
* Define long as int when Python 3 is used.Arfrever Frehtes Taifersar Arahesis2009-09-2113-0/+35
* Support bytes in portage.util.normalize_path() with Python 3.Arfrever Frehtes Taifersar Arahesis2009-09-211-2/+7
* Fix portage._unicode_func_wrapper.__call__() to properly handle bytes with Py...Arfrever Frehtes Taifersar Arahesis2009-09-211-2/+2
* Fix dep_expand so that it doesn't use deprecated dep_getcpv() usageZac Medico2009-09-211-12/+22
* Fix infinite recursion in items and values methods.Zac Medico2009-09-211-1/+1
* Fix infinite recursion in items and values methods.Zac Medico2009-09-211-4/+4
* Use dict.(keys|values|items)() instead of dict.(iterkeys|itervalues|iteritems...Arfrever Frehtes Taifersar Arahesis2009-09-2133-154/+154
* Simplify match_to_list(). Thanks to Marat Radchenko <marat@slonopotamus.org>Zac Medico2009-09-211-8/+1
* Show deprecation warnings when dep_* legacy code is triggered.Zac Medico2009-09-211-1/+10
* Fix breakage in _unicode_encode() for non-string types.Zac Medico2009-09-211-1/+4
* Deprecate key_expand and portage.dbapi.porttree.portagetree.resolve_specificZac Medico2009-09-212-0/+7
* Support both Python 2 and 3 in portage._unicode_encode() and portage._unicode...Arfrever Frehtes Taifersar Arahesis2009-09-211-7/+5
* Make key_expand() always return Atom type.Zac Medico2009-09-211-2/+4
* Add deprecation warnings to vartree.exists_specific_cat(), getnode(), andZac Medico2009-09-211-0/+10
* Use range() instead of xrange() for compatibility with Python 3.Arfrever Frehtes Taifersar Arahesis2009-09-2110-13/+13
* Define basestring as str when Python 3 is used.Arfrever Frehtes Taifersar Arahesis2009-09-2114-0/+49
* Fix all remaining SyntaxErrors with Python 3.Arfrever Frehtes Taifersar Arahesis2009-09-216-11/+14
* Use filter() and zip() instead of itertools.ifilter() and itertools.izip() fo...Arfrever Frehtes Taifersar Arahesis2009-09-216-21/+17
* Make Atom.__init__ call the base class constructor, though it doesn't seemZac Medico2009-09-211-0/+2
* When generating config.prevmaskdict, only call the Atom constructor whenZac Medico2009-09-211-1/+3
* Fix typos in http.client imports.Zac Medico2009-09-201-6/+6
* Add fallback in ImportError for io.StringIO. This is needed for python-2.6Zac Medico2009-09-201-1/+7
* Add support in ConsoleStyleFile.write() for unicode encoding when writing toZac Medico2009-09-201-5/+15
* Misc unicode fixes for repoman.Zac Medico2009-09-201-0/+5
* Use _unicode_encode() to ensure that only unicode strings are passed intoZac Medico2009-09-201-0/+7
* Make Atom inherit from str. Thanks to Marat RadchenkoZac Medico2009-09-201-79/+24
* Make _unicode_module_wrapper cache wrappers and reuse them. Thanks toZac Medico2009-09-201-2/+14
* In doebuild_environment(), detect if setcpv() hasn't been called properly,Zac Medico2009-09-201-3/+9
* Add back a line which I erroneously removed when committing the patch forZac Medico2009-09-201-0/+1
* Fix position of imports from __future__.Arfrever Frehtes Taifersar Arahesis2009-09-202-4/+3
* Support print() function with Python 2 in more files.Arfrever Frehtes Taifersar Arahesis2009-09-209-0/+18
* Update system imports for compatibility with Python 3.Arfrever Frehtes Taifersar Arahesis2009-09-2010-35/+85
* Update syntax of numbers for compatibility with Python 3.Arfrever Frehtes Taifersar Arahesis2009-09-2012-65/+65
* Support print() function with Python 2 in some files.Arfrever Frehtes Taifersar Arahesis2009-09-201-0/+1
* Update syntax of calls to print() for compatibility with Python 3.Arfrever Frehtes Taifersar Arahesis2009-09-2016-81/+81
* Update syntax of 'except' statements for compatibility with Python 3.Arfrever Frehtes Taifersar Arahesis2009-09-2034-258/+258
* Bug #285637 - Fix NameError exception triggered by InvalidAtom inZac Medico2009-09-201-1/+1
* Add isinstance(mydep, Atom) checks to the dep_* functions since we don't use av2.2_rc41Zac Medico2009-09-191-6/+15
* Fix config.setinst() to add Atom instances to the provider lists instead ofZac Medico2009-09-191-1/+1
* Revert accidental changes _unicode_module_wrapper.__getattribute__ fromZac Medico2009-09-191-4/+4
* Remove obsolete InvalidAtom handler in _add_pkg_dep_string().Zac Medico2009-09-191-4/+4
* Avoid lots of redundant Atom constructor calls. Thanks to Marat RadchenkoZac Medico2009-09-194-47/+66
* Fix _expand_new_virtuals() to preserve USE deps in atoms for new-styleZac Medico2009-09-191-46/+41
* Atom optimizations. Remove the metaclass and cache since it just slows itZac Medico2009-09-181-52/+21
* When _expand_new_virtuals() is called by repoman, skip expansion of new-styleZac Medico2009-09-141-5/+17
* Reimplement the code from bug #283795 so that indirect deps are preservedZac Medico2009-09-141-37/+41