summaryrefslogtreecommitdiffstats
path: root/pym/portage/__init__.py
Commit message (Expand)AuthorAgeFilesLines
* Make the argument hash in config.setcpv() a little stronger.v2.2_rc28Zac Medico2009-03-271-5/+7
* Fix typo in comment.Zac Medico2009-03-271-1/+1
* In config.setcpv(), make sure the current args are really identical to theZac Medico2009-03-271-2/+7
* Inside config.setcpv(), don't clear out self.configdict['pkg'] entirelyZac Medico2009-03-271-4/+11
* Move checks for /usr/lib/distcc/bin and /usr/lib/ccache/bin to the pythonZac Medico2009-03-261-5/+23
* In config.regenerate(), always synchronize self.features with self['FEATURES'].Zac Medico2009-03-261-4/+6
* In config.setcpv(), clear out self.configdict["pkg"] to make sure that noZac Medico2009-03-261-0/+1
* Remove redundant EAPI assingment inside doebuild_environment().v2.2_rc27Zac Medico2009-03-241-1/+1
* Add support for FEATURES=parse-eapi-glep-55. This feature is only intended forZac Medico2009-03-241-11/+53
* Add support for FEATURES=parse-eapi-ebuild-head, which is similar to GLEP 55Zac Medico2009-03-231-0/+36
* When calling doebuild() to spawn the 'depend' phase, just call config.setcpv()Zac Medico2009-03-231-3/+3
* Fix misc typos in comments.Zac Medico2009-03-231-1/+1
* Replace xrange() usage with normal iteration and enumerate() whereZac Medico2009-03-221-14/+15
* Inside config.environ(), skip stat call on $T/environment for phases suchZac Medico2009-03-221-5/+6
* Remove pointless usage of xrange(). Thanks to Douglass AndersonZac Medico2009-03-221-2/+2
* Make sure mysettings.setcpv() always gets called when necessary insideZac Medico2009-03-181-7/+9
* Add docstrings for the fd_pipes and returnpid parameters of doebuild().Zac Medico2009-03-181-0/+7
* Make config.features a set instead of a list.Zac Medico2009-03-181-5/+4
* Bug #261670 - Automatically revert the CHOST metadata to the initial valuev2.2_rc25Zac Medico2009-03-121-0/+12
* When translating portage uid/gid to root uid/gid after src_install onZac Medico2009-03-121-0/+17
* Don't default env=os.environ directly in the config constructor becausev2.2_rc24Zac Medico2009-03-101-1/+3
* Use protocol=2 for pickle.dump() calls, so that pickles written by py3k willZac Medico2009-03-101-1/+1
* When the config_incrementals parameter is unspecified in the configZac Medico2009-03-101-5/+4
* Simplify environment cleansing that's done for the ROOT=/ config instanceZac Medico2009-03-101-21/+9
* Inside create_trees(), when cleansing the environment for the ROOT=/ configZac Medico2009-03-101-1/+1
* Never call digestgen() inside doebuild() which only 'fetch' has beenZac Medico2009-03-091-1/+4
* Bug #261675 - Also don't call digestgen() from parallel-fetch processes.Zac Medico2009-03-091-1/+2
* Bug #261675 - When doebuild() is called by emerge, don't call digestgen()Zac Medico2009-03-091-1/+2
* Allow unicode type values in config.__setitem__(). Thanks to Arfrever FrehtesZac Medico2009-03-071-1/+1
* Define __slots__ for classes derived from ObjectProxy.Zac Medico2009-03-061-0/+7
* Send message about unset RESUMECOMMAND to stderr instead of stdout.Zac Medico2009-03-061-1/+1
* Make digraph store a single priority list for each edge instead of twoZac Medico2009-03-061-7/+16
* Make config.categories a sorted tuple so that portdbapi can reuse it.Zac Medico2009-03-051-1/+2
* Set Unpickler.find_global = None when possible and handle AttributeErrorZac Medico2009-03-051-0/+5
* When ACCEPT_CHOSTS is set, enable CHOST masking for unbuilt ebuilds. ThisZac Medico2009-03-021-2/+2
* When fetch() is called and there is an existing file with the wrong size thatZac Medico2009-03-021-7/+15
* Don't give portage group write permissions on the mtimedb since it's notZac Medico2009-03-011-1/+2
* In _ensure_default_encoding(), make sure the default encoding is normalized.Zac Medico2009-02-281-1/+1
* Add support to _ensure_default_encoding() for the same ascii and utf_8Zac Medico2009-02-281-2/+12
* Implement lazy evaluation of USE_EXPAND variables in config.setcpv(), sinceZac Medico2009-02-251-58/+111
* Make USE_EXPAND wildcard expansion more efficient, and prevent possibleZac Medico2009-02-231-4/+5
* Fix breakage in USE_EXPAND wildcard handling, from r12697.Zac Medico2009-02-231-2/+5
* In config.setcpv(), increase efficiency by filtering USE with IUSE beforeZac Medico2009-02-231-5/+5
* Fix getmaskingstatus() so that it doesn't inappropriately return aZac Medico2009-02-231-3/+7
* Fix default_encoding logic in _ensure_default_encoding().Zac Medico2009-02-231-1/+2
* Reorganize _ensure_default_encoding().Zac Medico2009-02-231-47/+46
* Don't try to call setdefaultencoding() since it's not intended to be called.Zac Medico2009-02-231-10/+6
* Add support in _ensure_default_encoding(), add support for utf_8 and fallZac Medico2009-02-231-30/+98
* Avoid spurious CCACHE_DIR permissions adjustments when fetching withZac Medico2009-02-221-1/+4
* The python that's inside stage 1 or 2 is built with a minimalZac Medico2009-02-221-0/+58