summaryrefslogtreecommitdiffstats
path: root/pym/portage/__init__.py
Commit message (Expand)AuthorAgeFilesLines
* Add FEATURES=fakeroot support which causes install and package phases to run ...Zac Medico2007-07-231-10/+21
* Drop privileges in the "depend" phase regardless of FEATURES and RESTRICT sin...Zac Medico2007-07-231-10/+12
* For bug #185930, direct all FETCHCOMMAND output to stdout.Zac Medico2007-07-211-0/+8
* When digest verification of a distfile fails, rename instead of unlinking it ...Zac Medico2007-07-211-5/+18
* If the fetcher reported success and the file is too small, don't attempt to r...Zac Medico2007-07-201-2/+10
* disable FEATURES=gpg as it's unmaintained, useless and likely broken for many...Marius Mauch2007-07-161-0/+3
* Save the repo name along with the other metadata inside dyn_compile() so that...Zac Medico2007-07-131-0/+10
* For bug #184843, allow USE_EXPAND variables to pass through if none of their ...Zac Medico2007-07-101-22/+37
* For bug #184604, make env-update write $ in front of quoted values when appro...Zac Medico2007-07-101-2/+6
* For bug #184566, enable the emerge --info action to run an option pkg_info() ...Zac Medico2007-07-081-2/+2
* When depgraph updates preferences for old-style virtuals, also update them in...Zac Medico2007-07-061-7/+14
* Remove fallback imports for set(), and note minimum requirement of python-2.4Marius Mauch2007-07-051-2/+0
* For bug #183431, catch a ParseError caused by a corrupt profile and dump an e...Zac Medico2007-06-281-1/+8
* Send the ebuild die message through eerror and make sure that elog_process() ...Zac Medico2007-06-271-13/+1
* Short circuit the loop as soon as missing hashes are detected.Zac Medico2007-06-261-0/+1
* Add one more size == 0 check to digestgen().Zac Medico2007-06-261-0/+2
* Add sanity checks in fetch() and digestgen() to automatically detect and hand...Zac Medico2007-06-261-2/+26
* For bug #182964, replace os.rename() with portage.movefile() in cases where t...Zac Medico2007-06-241-0/+6
* add hashlib support for checksum verification, refactor checksum functions to...Marius Mauch2007-06-231-1/+1
* Clean up config.__getitem__(), get() and setdefault() implementions.Zac Medico2007-06-211-16/+13
* Simplify the implementation of config.__iter__ and also implement iterkeys().Zac Medico2007-06-211-5/+5
* Autodetect if sandbox is active in order to prevent recursive sandbox invocat...Zac Medico2007-06-211-1/+1
* Implement config.has_key() on top of __contains__ instead of vice versa.Zac Medico2007-06-211-5/+5
* Remove lots of unnecessary list generation via dict.keys().Zac Medico2007-06-211-13/+22
* Make all the classes inherit from object.Zac Medico2007-06-201-4/+4
* For bug #180165, make portageq print a "Permission denied" error when appropr...Zac Medico2007-06-201-3/+8
* Fix cacheddir() to behave properly if os.listdir() raises errno.EACCES (Permi...Zac Medico2007-06-191-1/+9
* For bug #181355, detect parenthesis mismatch in paren_reduce(), raise an Inva...Zac Medico2007-06-111-4/+12
* Preserve order of flags from IUSE in wildcard expansion.Zac Medico2007-06-101-1/+1
* For bug #148702, use the * token to trigger wildcard expansion of IUSE. This...Zac Medico2007-06-091-13/+26
* For bug #148702, automatically enable flags from IUSE if they correspond to u...Zac Medico2007-06-091-2/+17
* For bug #152828, run ${CHOST}-ldconfig when ${CBUILD} != ${CHOST}.Zac Medico2007-06-091-8/+18
* Make all the python code respect USE conditionals in RESTRICT. It's already ...Zac Medico2007-06-071-11/+13
* When using a pty for logging, use setsid() to create a new session and make t...Zac Medico2007-06-071-8/+43
* For bug #82378, only set permissions on PORT_LOGDIR if it is created automati...Zac Medico2007-06-061-2/+4
* Comment in portage.movefile() that it's impossible to preserve timestamps of ...Zac Medico2007-06-061-0/+2
* Fix typo, split SPACE_SEPARATED variables on whitespace.Zac Medico2007-06-061-1/+1
* Remove duplicate entries from special variables processed by env_update() (bu...Marius Mauch2007-06-051-2/+6
* Make dep_zapdeps() pull SLOT from the correct dbapi instance when it falls ba...Zac Medico2007-05-311-3/+8
* Don't try to perform global updates on binary packages unless $PKGDIR is writ...Zac Medico2007-05-311-9/+14
* Make automatic "global updates" always use the config instance that's associa...Zac Medico2007-05-311-3/+2
* Create one unified dbapi.update_ents() method and use it for both fixpackages...Zac Medico2007-05-311-1/+4
* For bug #61732, support -flag in USE (instead of just +flag). Given the curr...Zac Medico2007-05-301-1/+6
* For bug #179870, correctly handle slot deps in the profile's package.* files.Zac Medico2007-05-291-12/+12
* For bug #179870, add support for cpv:slot in match_from_list() and use it to ...Zac Medico2007-05-291-1/+4
* Add new emaint targets called "moveinst" and "movebin" for applying package m...Zac Medico2007-05-281-4/+14
* Fix logic for USE_EXPAND variables that are incremental (there are none curre...Zac Medico2007-05-261-9/+17
* Store flags as a set inside the USE incremental loop.Zac Medico2007-05-251-10/+8
* Call tcgetattr and tcsetattr on the slave end of the pty in order to avoid an...Zac Medico2007-05-251-2/+2
* For bug #179766, expand USE_EXPAND variables inside the USE incremental loop ...Zac Medico2007-05-251-24/+25