summaryrefslogtreecommitdiffstats
path: root/pym/_emerge/__init__.py
Commit message (Expand)AuthorAgeFilesLines
...
* Also, reset "merges" in JobStatusDisplay.reset().Zac Medico2008-07-171-0/+1
* Initialize JobStatusDisplay.merges since it's not initialized with the boundZac Medico2008-07-171-0/+1
* Also, don't count "merges" as changes in the status display.Zac Medico2008-07-171-1/+1
* Since it's not very interesting, disable the "merges" part of status display.Zac Medico2008-07-171-1/+2
* Reformat the status display. Here's an example:Zac Medico2008-07-171-27/+52
* Don't show "Merging" and "merged." messages when in background mode.Zac Medico2008-07-171-2/+4
* Make Binpkg send "Extracting" messages to the log file when in backgroundZac Medico2008-07-171-3/+16
* Update the status display in _build_exit(), after decrementing the job count.Zac Medico2008-07-171-0/+1
* Make BinpkgVerifier redirect output to the fetch log when in background mode.Zac Medico2008-07-171-20/+41
* Don't show a blank newline before ">>> Emerging" when in background mode.Zac Medico2008-07-171-1/+4
* Tweak interaction between Scheduler and status display so that it doesn'tZac Medico2008-07-171-5/+6
* * Add a new portage.util.writemsg_level() function which uses a "level"Zac Medico2008-07-171-10/+5
* Don't increment the "complete" count for uninstall tasks.Zac Medico2008-07-171-1/+2
* Add a JobStatusDisplay class to encapsulate the status display. This objectZac Medico2008-07-171-45/+100
* In SequentialTaskQueue.clear(), remove the exit listener from each task beforeZac Medico2008-07-171-0/+1
* 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-171-128/+27
* 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-161-47/+98
* 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-161-2/+2
* Adapt the dblink merge display callback to use log levels from the loggingZac Medico2008-07-161-5/+14
* Redirect dblink.unmerge() output to the log file when --jobs > 1.Zac Medico2008-07-161-1/+12
* When --jobs > 1, display a status message each time thatZac Medico2008-07-161-3/+32
* 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-151-2/+37
* 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
* * Fix doebuild so "returnpid" works for preinst and postinst.Zac Medico2008-07-141-11/+39
* Add async execution support for pkg_preinst and pkg_postinst. This allows theZac Medico2008-07-141-8/+69
* 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-131-42/+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-131-3/+21
* 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