summaryrefslogtreecommitdiffstats
path: root/pym/_emerge
Commit message (Collapse)AuthorAgeFilesLines
* Update Portage to support multiple binhosts.David James2011-01-261-2/+2
| | | | | | | | | | | BUG=chromium-os:11295 TEST=Build x86-mario with multiple binhosts (board binhost, preflight binhost) and verify that binaries are picked up from both binhosts. Also verify that if one of the binhosts fails, the other binhost is used correctly. Review URL: http://codereview.chromium.org/6329022 Change-Id: I095f28c82e3effbc25105af6ac89e42c335e6381
* Wildcard support for -c/-CSebastian Luther2011-01-241-1/+24
|
* fdopen: read from processes in unbuffered modev2.2.0_alpha19Zac Medico2011-01-211-2/+2
| | | | | It doesn't make sense to use buffers in cases like this, and is potentially error prone (as in bug #287648 / python issue 5380).
* SpawnProcess: read proc with unbuffered fdopenZac Medico2011-01-201-2/+4
| | | | | This enables pty support in python3, by using unbuffered fdopen to avoid http://bugs.python.org/issue5380.
* BinpkgFetcher: ust pty like EbuildFetcherZac Medico2011-01-191-1/+16
|
* depgraph: avoid duplicate ebuild visibility checkZac Medico2011-01-181-1/+1
|
* depgraph: don't reinstall for changed repoZac Medico2011-01-181-2/+19
|
* depgraph: avoid updates moreZac Medico2011-01-181-9/+14
| | | | | The fix from bug #351828 broke some of the update avoidance behavior from bug #275945, and this patch should restore it.
* Fix some poor installed/masked || choices.Zac Medico2011-01-181-12/+7
| | | | This will fix bug #351828. It's fallout from bug #350285.
* doebuild_environent: handle A/AA initializationZac Medico2011-01-182-14/+1
| | | | | This allows elimination of duplicate code, some of which was introduced by the fix for bug #351505.
* Fix broken pkg.use.enabled ref from last commit.v2.2.0_alpha17Zac Medico2011-01-171-1/+1
|
* EbuildBuild: Ensure $A is defined in pkg_nofetch.Zac Medico2011-01-171-1/+8
| | | | This will fix bug #351505.
* Scheduler: remove uninstall task from pkg_queuev2.2.0_alpha16Zac Medico2011-01-171-0/+4
|
* Update copyright headers for touched files.Zac Medico2011-01-161-1/+1
|
* Tweak PollScheduler signal handling.Zac Medico2011-01-152-33/+37
|
* Remove duplicate Scheduler constructor call.Zac Medico2011-01-151-3/+0
|
* Add PollScheduler.terminate() for interruption.Zac Medico2011-01-155-27/+129
| | | | | This allows PollScheduler instances to do basic cleanup and terminate gracefully when SIGINT or SIGTERM signals are received.
* When killed by signal, return 128 + signum.Zac Medico2011-01-151-2/+2
| | | | | This is the same convention that bash uses for returncodes of processes that are killed by signals.
* AsynchronousLock: use process by defaultZac Medico2011-01-131-1/+9
| | | | | | | The default behavior is to use a process instead of a thread, since there is currently no way to interrupt a thread that is waiting for a lock (notably, SIGINT doesn't work because python delivers all signals to the main thread).
* Scheduler: free unneeded uninstall task from memv2.2.0_alpha14Zac Medico2011-01-061-1/+5
|
* Scheduler: handle same cpv with different SLOTZac Medico2011-01-051-0/+3
|
* Scheduler: fix reposyntax uninstall hash breakageZac Medico2011-01-051-8/+10
|
* Scheduler: always share FakeVartree pkg_cacheZac Medico2011-01-051-1/+2
|
* Scheduler: avoid unecessary Package instancesZac Medico2011-01-051-1/+0
|
* Scheduler: cache more Packages in --nodeps modeZac Medico2011-01-051-0/+2
|
* Scheduler: cache Package instance moreZac Medico2011-01-051-9/+12
| | | | | | | | This helps to avoid some cases in which emerge crashes due to ebuild modification that leads to failure in aux_get/manifest check while the Scheduler is running. Typically such modifications are harmless, so it's beneficial to cache the metadata so that aux_get is less likely to be called when it will fail.
* REQUIRED_USE: when unsatisfied, show current USEZac Medico2011-01-041-3/+5
|
* Split out pkg_use_display() from action_info().Zac Medico2011-01-042-58/+68
|
* composite_db: use ebuild visibility for installedZac Medico2011-01-042-2/+18
| | | | This will fix bug #350488.
* fix indentation from commit f29d351990f0a3dd6183ec888ba8b0ff522c0875Zac Medico2011-01-031-1/+1
|
* Fix spelling of unsatisfied from previous commit.Zac Medico2011-01-031-1/+1
|
* REQUIRED_USE: always show requirementsZac Medico2011-01-031-16/+43
| | | | | | | | | This fixes a case in which the user would receive a "masked by: REQUIRED_USE violated" message without any more information about the specific requirements. Now, unsatisfied REQUIRED_USE is never treated as a mask, since it really is nothing like a mask. It's much more like an unsatisfied USE dependency, so we need to handle it in a similar way.
* depgraph: fix bug #350254 and test itZac Medico2011-01-031-1/+2
|
* depgraph: prefer highest priority repo more oftenZac Medico2011-01-022-0/+17
| | | | | | Prefer the highest priority repo, even when the ebuild from the higher priority repo requires USE adjustments due to USE deps or REQUIRED_USE. This will fix bug #350254.
* Try to avoid downgrade due to unsat REQUIRED_USE.Zac Medico2011-01-021-0/+1
|
* depclean: account for more masksZac Medico2011-01-021-1/+6
| | | | | | Account for packages with masks (like KEYWORDS masks) that are usually ignored in visibility checks for installed packages, in order to handle cases like bug #350285.
* depgraph: use Package.masks for installedZac Medico2011-01-021-5/+3
| | | | | In some cases we do special masking checks for installed packages, and Package.masks is a convenient way to do it.
* depclean: account for more masksZac Medico2011-01-021-0/+14
| | | | | | Account for packages with masks (like KEYWORDS masks) that are usually ignored in visibility checks for installed packages, in order to handle cases like bug #350285.
* Binpkg: implement REPLACING_VERSIONSZac Medico2010-12-301-0/+8
|
* EbuildPhase: Display upstream info before setup.Michał Górny2010-12-291-0/+5
| | | | | Display upstream maintainers and bugtrackers along with Gentoo maintainers when emerging a package.
* EbuildFetcher: bail out if missing digestZac Medico2010-12-281-1/+2
| | | | This will fix bug #348864.
* Use EbuildFetcher for --fetchonly (not --pretend)Zac Medico2010-12-281-2/+15
|
* EbuildFetcher: pass digests to fetch()Zac Medico2010-12-281-4/+8
|
* Remove unused filter_iuse_defaults() function.Zac Medico2010-12-241-14/+1
|
* depgraph: Optimize --newuse with Package attrs.Zac Medico2010-12-241-4/+4
|
* Optimize merge list display with Package attrs.Zac Medico2010-12-241-27/+24
|
* Fix merge list repo display breakage.Zac Medico2010-12-232-10/+12
| | | | | Broken since refactoring in commit 48c8cec7c079cb07a4f421a36cdc46a7fdbc7811.
* Fix portage restart warning message.Zac Medico2010-12-221-1/+0
|
* Refactor depgraph merge list display code.Brian Dolbec2010-12-223-1018/+1389
|
* emerge --changelog: repo support for binpkgsZac Medico2010-12-221-1/+1
|