summaryrefslogtreecommitdiffstats
path: root/pym/portage/__init__.py
Commit message (Expand)AuthorAgeFilesLines
* Fix deprecated usage of dep_getkey(). Thanks to Sebastian Mingramm (few)v2.2_rc54Zac Medico2009-11-281-2/+2
* Add a note about lack of nanosecond precision in movefile().Zac Medico2009-11-271-0/+3
* Fix logic from previous commit so it only applies when a 'newmtime' parameterZac Medico2009-11-271-3/+5
* In movefile(), skip os.utime() when os.rename() succeeds, in order toZac Medico2009-11-261-0/+2
* Bug #293998 - Use OSError.errno instead of trying to subscript the exceptionZac Medico2009-11-221-4/+2
* Bug #293603 - Blacklist EPREFIX and EROOT variables, in addition to ED.Zac Medico2009-11-201-1/+2
* Bug #293603 - Add $ED to the blacklist, to prevent interference with relatedZac Medico2009-11-191-1/+1
* Make cacheddir() always behave like EmptyOnError is True, since listdir()Zac Medico2009-10-311-7/+3
* Add a reference to bug #141118 inside _expand_new_virtuals().Zac Medico2009-10-261-2/+4
* update documentation on _test_openpty_eof and disable openpty on Solaris agai...Fabian Groffen2009-10-241-11/+10
* Fix license_groups parsing to stack the lists, so license_groups from overlaysZac Medico2009-10-191-2/+4
* drop IMAGE -- people have had years to catch upMike Frysinger2009-10-191-1/+1
* Call config._init_dirs() from emerge so that it's not called every timeZac Medico2009-10-181-2/+0
* Make cpv_getkey() use catpkgsplit() insead of a separate regex.Zac Medico2009-10-181-4/+3
* Fix repoman breakage from previous commit.Zac Medico2009-10-171-4/+4
* Inside dep_zapdeps(), detect cases such as || ( foo:1 foo:2 ), where we wantZac Medico2009-10-171-15/+70
* Bug #273643 - Don't export AA in EAPI 3. Thanks to Jonathan Callen <abcd@g.o>Zac Medico2009-10-171-0/+5
* Add the "test" flag to implicit IUSE, so handling of FEATURES=test isZac Medico2009-10-151-1/+8
* Only call _test_pty_eof() on Linux, since it seems to hang on most otherZac Medico2009-10-141-3/+20
* Implement FetchlistDict.__len__, in order to avoidZac Medico2009-10-121-0/+5
* Bug #288025 - Avoid AttributeError on OSes that don't have os.statvfs.Zac Medico2009-10-101-1/+3
* Bug #273099 - Add split-log and split-elog FEATURES for splitting build logsZac Medico2009-10-091-4/+12
* Bug #274497 - Misc spelling, grammar, and terminology fixes, includingZac Medico2009-10-091-1/+1
* Handle AUTOCLEAN and NOCOLOR case insensitivity inside config.Zac Medico2009-10-091-0/+9
* Enable pty support on FreeBSD.Zac Medico2009-10-071-1/+1
* merge disable openpty conditional from branches/prefixFabian Groffen2009-10-071-1/+15
* * Add default ACCEPT_LICENSE and ACCEPT_PROPERTIES values in make.globals.Zac Medico2009-10-051-12/+39
* Make deprecated_profile_check() suggest to use eselect profile. Thanks toZac Medico2009-10-051-0/+2
* Use _pkgsplit when input cannot contain a category.Zac Medico2009-10-041-3/+3
* Fix race condition when using a fork inside _test_pty_eof().Zac Medico2009-10-031-4/+6
* Don't use a fork inside _test_pty_eof() because it gives inconsistent results.Zac Medico2009-10-031-12/+21
* Take regular expressions from portage.dep and use them to reimplementZac Medico2009-09-301-1/+1
* Handle encoding/decoding of unicode when using the xpak api.Zac Medico2009-09-291-1/+4
* Make _test_pty_eof() call process.spawn() instead of os.fork().Zac Medico2009-09-271-8/+9
* Try to avoid blocking on Darwin in _test_pty_eof() by using slave_fd directlyZac Medico2009-09-271-7/+5
* In _test_pty_eof(), call waitpid on the child process only after reading allZac Medico2009-09-271-1/+1
* Make _test_pty_eof() fork when writing to the slave_fd, since otherwiseZac Medico2009-09-271-4/+12
* Make _test_pty_eof() use non-blocking IO, required for Darwin kernel.Zac Medico2009-09-271-1/+13
* Fix more.Zac Medico2009-09-251-1/+1
* Fix ValueError in digestcheck(), reported by Arfrever.Zac Medico2009-09-251-1/+2
* Show an appropriate error message in _create_pty_or_pipe() if openpty()Zac Medico2009-09-241-10/+11
* Make _test_pty_eof() return None if openpty() fails.Zac Medico2009-09-241-1/+5
* Use a runtime check to see if http://bugs.python.org/issue5380 is fixed.Zac Medico2009-09-241-5/+62
* Fix previous commit.Zac Medico2009-09-241-2/+2
* Warn if cpv_getkey() is given invalid input that triggers legacy code.Zac Medico2009-09-241-0/+4
* Decode directory names where appropriate in digestcheck(). Thanks toZac Medico2009-09-241-0/+14
* Bug #285979 - Replace references to CDEPEND with UNUSED_00, to make it clearZac Medico2009-09-231-1/+1
* Don't pass the ignore_none parameter to stack_dicts() since it does nothingZac Medico2009-09-221-1/+1
* Replace dict.keys() usage with __iter__(), since it behaves identically inZac Medico2009-09-221-11/+11
* Optimize unicode wrappers. Thanks to Marat Radchenko <marat@slonopotamus.org>Zac Medico2009-09-221-28/+30