summaryrefslogtreecommitdiff
path: root/pym
Commit message (Expand)AuthorAgeFilesLines
* When SpawnProcess._start() spawns a process in the background, use /dev/nullZac Medico2008-07-171-2/+14
* Eliminate duplicate code by making EbuildProcess inherit from SpawnProcessZac Medico2008-07-172-134/+33
* Avoid raising an IndexError from deprecated_profile_check() if the deprecatedZac Medico2008-07-161-1/+5
* Pass background=True into prefetcher constructors.Zac Medico2008-07-161-5/+6
* Add a progress counter showing "x of y complete" toZac Medico2008-07-161-8/+24
* * Add xterm titles support to Scheduler._display_status().Zac Medico2008-07-161-9/+19
* Add async support for calling functions in misc-functions.sh:Zac Medico2008-07-162-54/+121
* Remove the config._filter_calling_env attribute since it's not really needed.Zac Medico2008-07-161-14/+13
* Show LDFLAGS in emerge --info <pkg> output. Thanks to dirtyepic for thisZac Medico2008-07-161-1/+1
* Pass the whole dblink instance into Scheduler._dblink_display_merge() in caseZac Medico2008-07-162-4/+3
* Redirect dblink.merge() output to the log file when --jobs > 1.Zac Medico2008-07-161-26/+38
* Make dblink._display_merge() detect scheduler presence internally.Zac Medico2008-07-161-6/+6
* Adapt the dblink merge display callback to use log levels from the loggingZac Medico2008-07-162-10/+28
* Redirect dblink.unmerge() output to the log file when --jobs > 1.Zac Medico2008-07-162-3/+22
* When --jobs > 1, display a status message each time thatZac Medico2008-07-161-3/+32
* Add some cross references between emerge's new parallel build options andZac Medico2008-07-151-1/+8
* Make EbuildFetcher copy FETCHCOMMAND and RESUMECOMMAND to the fetchZac Medico2008-07-151-0/+6
* In Scheduler._restart_if_necessary(), use list.remove() instead of assumingZac Medico2008-07-151-1/+1
* When packages fail with --jobs > 1 and the "echo" elog module is not enabled,Zac Medico2008-07-152-3/+43
* When there is more than one failure, show a summary packages that failed toZac Medico2008-07-151-8/+31
* * Fix --keep-going breakage that occured when Scheduler._choose_pkg() wasZac Medico2008-07-151-17/+11
* Make AsynchronousTask "registered" attributes private since poll() and wait()Zac Medico2008-07-151-32/+32
* Use self.registered to return early from SubProcess.poll() when possible,Zac Medico2008-07-151-2/+2
* Add a PollScheduler._next_poll_event() method to maintain a central eventZac Medico2008-07-151-11/+25
* Split out a _main_loop_cleanup() method from Scheduler._merge() and call itZac Medico2008-07-151-6/+9
* Split out a generic SubProcess._unregister() method that's called fromZac Medico2008-07-141-44/+54
* Unregister from poll() objects before closing file in order to hopefullyZac Medico2008-07-141-17/+24
* Call prepare_build_dirs() prior to pkg_preinst so that logging worksZac Medico2008-07-141-0/+2
* * Fix doebuild so "returnpid" works for preinst and postinst.Zac Medico2008-07-143-42/+135
* Add async execution support for pkg_preinst and pkg_postinst. This allows theZac Medico2008-07-143-21/+97
* Remove redundant failed_packages check from Scheduler._main_loop() sinceZac Medico2008-07-131-2/+1
* Ensure that that Scheduler._main_loop() doesn't return before the mergeZac Medico2008-07-131-1/+3
* Remove all traces of the "poll" parameter for the PollScheduler constructorZac Medico2008-07-131-8/+6
* * Since can_poll_pty() is unsafe due to he possibility of the poll() callZac Medico2008-07-132-58/+27
* In can_poll_tty(), direct bash's stderr into the pty since we don't wantZac Medico2008-07-131-1/+1
* Changes to pym/_emerge/__init__.py from the previous commit weren't meantZac Medico2008-07-131-21/+3
* Fix broken binpkg path comparison in in binarytree.inject() so that duplicateZac Medico2008-07-132-4/+22
* In order to avoid having BlockerDB instantiate a new FakeVartree for eachZac Medico2008-07-131-9/+110
* Fix Scheduler._schedule_tasks() so that it never schedules a task when aZac Medico2008-07-131-1/+1
* Decrement the job count prior to merging a given package (after it's beenZac Medico2008-07-131-9/+7
* * Wrap calls to PollScheduler._schedule_tasks() with a _schedule() methodZac Medico2008-07-121-5/+25
* Rename PollScheduler._schedule() to _schedule_wait().Zac Medico2008-07-121-4/+4
* Remember to close file descriptors before returning early from can_poll_pty().Zac Medico2008-07-121-0/+2
* Add missing self.wait() calls when tasks return unsuccessfully.Zac Medico2008-07-121-2/+8
* Set self._mergelist inside Scheduler._calc_resume_list() since it needs toZac Medico2008-07-121-5/+6
* Implement a runtime test that checks whether it's possible to use poll() toZac Medico2008-07-121-9/+69
* Split out a portage._create_pty_or_pipe() function to avoid duplicate code.Zac Medico2008-07-123-80/+62
* Derive a PtyReaderTestCase from PipeReaderTestCase. This test is expected toZac Medico2008-07-122-5/+64
* Create a test case for the poll loop which uses the loop to read data from aZac Medico2008-07-124-41/+272
* * Add a digraph.get() method, analogous to dict.get(), used to simplifyZac Medico2008-07-122-6/+7