portage.git
2008-07-13 Zac MedicoEnsure that that Scheduler._main_loop() doesn't return...
2008-07-13 Zac MedicoRemove all traces of the "poll" parameter for the PollS...
2008-07-13 Zac Medico* Since can_poll_pty() is unsafe due to he possibility...
2008-07-13 Zac MedicoIn can_poll_tty(), direct bash's stderr into the pty...
2008-07-13 Zac MedicoChanges to pym/_emerge/__init__.py from the previous...
2008-07-13 Zac MedicoFix broken binpkg path comparison in in binarytree...
2008-07-13 Zac MedicoIn order to avoid having BlockerDB instantiate a new...
2008-07-13 Zac MedicoFix Scheduler._schedule_tasks() so that it never schedu...
2008-07-13 Zac MedicoDecrement the job count prior to merging a given packag...
2008-07-12 Zac Medico* Wrap calls to PollScheduler._schedule_tasks() with...
2008-07-12 Zac MedicoRename PollScheduler._schedule() to _schedule_wait().
2008-07-12 Zac MedicoRemember to close file descriptors before returning...
2008-07-12 Zac MedicoAdd missing self.wait() calls when tasks return unsucce...
2008-07-12 Zac MedicoSet self._mergelist inside Scheduler._calc_resume_list...
2008-07-12 Zac MedicoImplement a runtime test that checks whether it's possi...
2008-07-12 Zac MedicoSplit out a portage._create_pty_or_pipe() function...
2008-07-12 Zac MedicoDerive a PtyReaderTestCase from PipeReaderTestCase...
2008-07-12 Zac MedicoCreate a test case for the poll loop which uses the...
2008-07-12 Zac Medico* Add a digraph.get() method, analogous to dict.get...
2008-07-12 Zac MedicoFor subclasses of Task, explicitly assign __hash__...
2008-07-11 Zac MedicoFix SpawnProcess.start() to return early and notify...
2008-07-11 Zac MedicoFix a few typos found with pyflakes. Thanks to Cardoe...
2008-07-11 Zac MedicoCopy INHERITED/_eclasses_ handling from portdbapi._meta...
2008-07-11 Zac MedicoCall settings.reset() in EbuildMetadataPhase.start...
2008-07-11 Zac MedicoDocument the new --jobs and --load-average options...
2008-07-11 Zac MedicoRefactor and simplify the main task scheduling and...
2008-07-10 Zac MedicoAdd support for parallel --regen, using the existing...
2008-07-10 Zac MedicoWhen a package replaces another one, add the correspond...
2008-07-10 Zac MedicoBug #231382 - If the open() call in getconfig() raises...
2008-07-10 Zac MedicoMake digestcheck() skip the "checking ebuild checksums...
2008-07-10 Zac Medico* Fix AsynchronousTask._wait_hook() to prevent potentia...
2008-07-10 Zac Medico* Handle errno.ECHILD and errno.ESRCH from waitpid...
2008-07-10 Zac MedicoFix Scheduler._is_restart_necessary() to return False...
2008-07-09 Zac MedicoLike in Binpkg, cancel or wait for the prefetcher in...
2008-07-09 Zac MedicoBug #231358 - Fix 'NameError: global name 'p' is not...
2008-07-09 Zac MedicoFor parallel-fetch prefetchers, pass fetchonly=1 into...
2008-07-09 Zac MedicoUse the EbuildFetcher class to implement async fetch...
2008-07-09 Zac Medico * Unify the scheduler's "build" and "extract" queues...
2008-07-09 Zac MedicoFix SubProcess._poll to handle a missing pid gracefully.
2008-07-09 Zac MedicoFix Scheduler._choose_pkg() to perform uninstallation...
2008-07-09 Zac MedicoFix _prune_digraph() to correctly distinguish "nomerge...
2008-07-08 Zac Medico* Fix _choose_pkg() to pop the first node if there...
2008-07-08 Zac MedicoMake the "tight loop" assertion trigger whenever there...
2008-07-08 Zac MedicoIn scheduler._schedule_main(), only consider a poll...
2008-07-08 Zac MedicoFix Scheduler._dependent_on_scheduled_merges() to prope...
2008-07-08 Zac MedicoRemove redundant call to _schedule_main().
2008-07-08 Zac Medico* Call self._wait() when unregistering output handlers...
2008-07-08 Zac MedicoDerive PackageMerge from AsynchronousTask instead of...
2008-07-08 Zac MedicoRaise an AssertionError in CompositeTask._wait() if...
2008-07-08 Zac MedicoFix infinite loop in CompositeTask._wait().
2008-07-08 Zac MedicoFix ValueError triggered when Scheduler._choose_pkg...
2008-07-08 Zac MedicoUse a normal list instead of a deque for Scheduler...
2008-07-08 Zac MedicoImplement parallel build support by adding new --jobs...
2008-07-08 Zac Medico* Add background support to the SpawProcess class.
2008-07-08 Zac MedicoAdd AsynchronousTask.background attribute and add suppo...
2008-07-08 Zac MedicoAlso add "background" attributes to the EbuildBuild...
2008-07-08 Zac MedicoAdd a MergeListItem.background attribute for putting...
2008-07-08 Zac MedicoAdd a missing check in Scheduler._main_loop() to ensure...
2008-07-08 Zac MedicoUse plain sequential search for the SRC_URI.mirror...
2008-07-07 Zac MedicoAdd a Scheduler._digraph attribute for use in parallel...
2008-07-07 Zac MedicoRename SubProcess.reg_id to _reg_id since it no longer...
2008-07-07 Zac Medico* Add new CompositeTask._default_final_exit() method...
2008-07-07 Zac MedicoAdd a new "SRC_URI.mirror" check which checks to if...
2008-07-07 Zac MedicoMove the "registered" attribute to the SubProcess class...
2008-07-07 Zac MedicoMake SubProcess._wait() call scheduler.schedule(self...
2008-07-07 Marius Mauchremove TODO list as it's not maintained anyway
2008-07-07 Zac Medico* Implement CompositeTask._poll().
2008-07-07 Zac MedicoFix broken code in AsynchronousTask.poll().
2008-07-07 Zac MedicoFix EbuildPhase._set_returncode() so that it correctly...
2008-07-07 Zac MedicoFix typo in Binpkg.start() which prevents --genbinpkg...
2008-07-06 Zac Medico* Implement MergeListItem._poll() and _wait().
2008-07-06 Zac MedicoAdd a PackageMerge class to serve as an asynchronous...
2008-07-06 Zac MedicoAdd async support to MergeListItem.
2008-07-06 Zac MedicoAdd async support to the Binpkg class.
2008-07-06 Zac MedicoMake BinpkgFetcher send output directly to stdout when...
2008-07-06 Zac MedicoFix parent class constructor call in the BinpkgFetcher...
2008-07-06 Zac MedicoMake AsynchronousTask subclasses override _wait() and...
2008-07-06 Zac MedicoFix --getbinpkg to inject downloaded packages into...
2008-07-06 Zac Medico* Fix broke return code handling from previous commit, in
2008-07-06 Zac MedicoAdd async support to EbuildBuild, and an synchronous...
2008-07-06 Zac MedicoSplit out a CompositeTask._start_task() for subclasses...
2008-07-06 Zac MedicoAdd CompositeTask._final_exit() method and use it to...
2008-07-06 Zac MedicoSplit out a reusable CompositeTask._default_exit()...
2008-07-06 Zac MedicoAdd a CompositeTask._assert_current() method that async...
2008-07-06 Zac MedicoFix typo in xterm titles total package count which...
2008-07-05 Zac Medico* Fix AsynchronousTask.poll() to call _wait_hook()...
2008-07-05 Zac MedicoCall _wait_hook() from poll() if the wait call occurs...
2008-07-05 Zac MedicoCorrect TaskSequence docstring to refer to the addExitL...
2008-07-05 Zac MedicoThanks to Ali Polatel <hawking@g.o> for this patch...
2008-07-05 Zac MedicoSplit out common code from CompositeTask and EbuildExec...
2008-07-05 Zac MedicoMake EbuildExecuter inherit from AsynchronousTask.
2008-07-05 Zac MedicoFix CompositeTask.cancel() so that it's safe to call...
2008-07-05 Zac MedicoAdd a new CompositeTask class which can be used to...
2008-07-05 Zac MedicoAdd async support to EbuildBinpkg by making it inherit...
2008-07-05 Zac MedicoUse the EbuildPhase class to execute the "clean" phase...
2008-07-05 Zac MedicoRemove unused variable.
2008-07-05 Zac MedicoRename BinpkgFetcherAsync class to BinpkgFetcher and...
2008-07-05 Zac Medico* Implement a new binarytree.digestCheck() method and...
2008-07-04 Zac MedicoMake Binpkg inherit from EbuildBuildDir since it's...
2008-07-04 Zac MedicoMake EbuildBuild inherit from EbuildBuildDir since...
next