summaryrefslogtreecommitdiffstats
path: root/pym
Commit message (Collapse)AuthorAgeFilesLines
...
* Move EventLoop to a separate file.Zac Medico2012-02-083-366/+375
|
* Use AbstractPollTask._wait_loop() more.Zac Medico2012-02-083-13/+4
|
* MergeProcess: handle POLLHUP from elog pipeZac Medico2012-02-081-0/+7
|
* PollScheduler: remove _poll_loopZac Medico2012-02-083-33/+13
| | | | | We can use iteration() instead, and _poll_loop's exit behavior doesn't seem practical to emulate with glib.MainLoop.
* test_poll: use TaskSchedulerZac Medico2012-02-081-7/+7
|
* PollScheduler: remove EventLoop._schedule hookZac Medico2012-02-081-12/+5
| | | | | PollScheduler and subclasses be should already be calling self._schedule() when necessary.
* Scheduler: tweak _add_prefetchersZac Medico2012-02-081-8/+6
| | | | | Since commit 4620d6aba1c5c10344e311585516ee43819b703c, the first prefetcher is started as soon as it's added to the task queue.
* SequentialTaskQueue: use finally for _schedulingZac Medico2012-02-081-33/+13
| | | | Also, remove unecessary _dirty flag.
* IpcDaemonTestCase: init start_time earlierZac Medico2012-02-081-2/+2
| | | | | | Since commit 4620d6aba1c5c10344e311585516ee43819b703c, the SequentialTaskQueue.add() method starts the task immediately, so initialize start_time before that happens.
* SequentialTaskQueue: schedule automaticallyZac Medico2012-02-082-8/+11
| | | | | | | This is needed to compensate for the removal of _idle_schedule in commit 8c1fcf5a9ba9fa4d406a4d0cc284fe73a84f5a63, so that the Scheduler's task queues operate without needing their schedule methods called inside Scheduler._schedule_tasks().
* Scheduler: remove _idle_scheduleZac Medico2012-02-081-5/+0
| | | | | This shouldn't be needed, since _schedule() should already be called automatically when there are any relevant state changes.
* EventLoop: use same method names as glibZac Medico2012-02-082-23/+23
|
* PollScheduler: don't inherit EventLoopZac Medico2012-02-085-29/+31
|
* PollScheduler: split out EventLoop base classZac Medico2012-02-081-106/+116
|
* AbstractPollTask: use timeout_addZac Medico2012-02-071-14/+11
|
* QueueScheduler: tweak timeout handlingZac Medico2012-02-071-13/+14
|
* PollScheduler: remove _schedule_waitZac Medico2012-02-072-48/+2
|
* QueueScheduler: use timeout_addZac Medico2012-02-071-34/+17
|
* AbstractPollTask: add _wait_loop methodZac Medico2012-02-072-6/+25
|
* Use PollScheduler iteration method.Zac Medico2012-02-075-17/+17
|
* PollScheduler: add iteration methodZac Medico2012-02-072-12/+27
|
* Scheduler: use idle_add, not _poll overrideZac Medico2012-02-071-2/+4
|
* PollScheduler: implement idle_addZac Medico2012-02-071-1/+45
|
* PollScheduler: glib.io_add_watch() compatibilityZac Medico2012-02-078-16/+53
|
* PollScheduler: timeouts regardless of IO eventsZac Medico2012-02-073-56/+59
| | | | | | Now PollScheduler will execute timeouts predictably, even when there no IO events being generated. This allows the Scheduler's display updates to be handled via timeout_add.
* Use timeout_add to avoid recursion, bug #402335.Zac Medico2012-02-072-9/+34
|
* AsynchronousTask: merge _waiting from subclassZac Medico2012-02-072-7/+10
|
* PollScheduler: add timeout_add like glib'sZac Medico2012-02-072-8/+89
| | | | | This will be useful as a substitute for recursion, in order to avoid hitting the recursion limit for bug #402335.
* spawn: assert that fork returns int typeZac Medico2012-02-061-1/+4
|
* Remove portage.const._ENABLE_XATTR.v2.2.0_alpha85Zac Medico2012-02-042-8/+2
|
* repoman: support git commit --gpg-signZac Medico2012-02-041-2/+8
| | | | | | | In order to sign commits with git, you will need Git >=1.7.9 and your key will have to be configured by `git config user.signingkey key_id`. Also, the repository will need to have "sign-commits = true" in metadata/layout.conf. This will fix bug #333687.
* Honor repos.conf for overlay priority, bug 402099Daniel Hornung2012-02-031-2/+2
| | | | Signed-off-by: Zac Medico <zmedico@gentoo.org>
* LinkageMapELF: handle null bytes in NEEDED.ELF.2Zac Medico2012-01-311-0/+7
| | | | | This avoids an error from os.stat: TypeError: must be encoded string without NULL bytes, not str
* Use consistent indentation in output of `emerge -p --columns ${package}`Arfrever Frehtes Taifersar Arahesis2012-01-281-2/+2
| | | | regardless of ROOT.
* Delete needless parentheses.Arfrever Frehtes Taifersar Arahesis2012-01-281-5/+5
|
* Don't print ::${repository} for main repository in output ofArfrever Frehtes Taifersar Arahesis2012-01-283-31/+39
| | | | | `emerge -pv ${package}` by default. Add --verbose-main-repo-display option, which enables printing ::${repository} for main repository.
* Apply INSTALL_MASK prior to reading the treeBrian Harring2012-01-271-9/+9
| | | | | | | | If this isn't done, collision-protect uses the old cached filelist, leading to it complaining about things that INSTALL_MASK sorted already. BUGS=chromium-os:25060 TEST=emerge sudo && emerge chromeos-base
* Fix display of installed version for packages, which have multiple slotsArfrever Frehtes Taifersar Arahesis2012-01-231-2/+3
| | | | installed. Follow-up to commit 8118be36842a2db2eb72538e21a3b343773b3365.
* Make the second part of_emerge.resolver.output.Display.verbose_size()Arfrever Frehtes Taifersar Arahesis2012-01-221-26/+24
| | | | | conditional on self.quiet_repo_display instead of earlier returning if self.quiet_repo_display is False. No functional changes.
* Print [${old_version}::${old_repository}] in output of `emerge -pv ${package}`Arfrever Frehtes Taifersar Arahesis2012-01-221-1/+3
| | | | | when ${old_version} is the same as ${new_version}, but ${old_repository} is different than ${new_repository}.
* Print ::${repository} in output of `emerge -pv ${package}` by default.Arfrever Frehtes Taifersar Arahesis2012-01-213-18/+46
| | | | Add --quiet-repo-display option, which enables previous, more quiet output.
* Fix --changed-use interaction with bug 297549.Zac Medico2012-01-201-8/+16
| | | | | | | | The automatic --binpkg-respect-use code (from bug #297549) was inappropriately overriding --changed-use and triggering behavior like --newuse, as reported here: http://archives.gentoo.org/gentoo-dev/msg_6070ab87737d7e16a5cec2a72c9111fd.xml
* fix comment garbage from last commitZac Medico2012-01-171-1/+1
|
* xml/metadata.py: handle ExpatErrorZac Medico2012-01-171-2/+9
|
* Support repository dependencies in EAPI="4-python".Arfrever Frehtes Taifersar Arahesis2012-01-163-5/+15
|
* create_world_atom: multi-repo portdbapi aux_getZac Medico2012-01-151-4/+31
| | | | | This handles a KeyError raised from portdbapi.aux_get() when one of the repositories has a corrupt ebuild.
* add support for compressing debug sections to save spaceMike Frysinger2012-01-142-3/+5
| | | | | | | | | | | Since binutils/gdb can compress the .debug* sections with zlib into .zdebug*, we should be able to save quite a bit of space -- on my system, I saw /usr/lib/debug/ go from ~20GB to ~7.5GB. This requires binutils/gdb to be built with USE=zlib which is why this defaults to off. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
* Apply INSTALL_MASK prior to collision-protect.Zac Medico2012-01-143-11/+26
| | | | It may be useful to avoid collisions in some scenarios.
* test_config: fix AttributeError: 'str'Zac Medico2012-01-121-1/+2
|
* depgraph: account for unevaluated_atom in cacheZac Medico2012-01-121-1/+1
|