summaryrefslogtreecommitdiffstats
path: root/pym/_emerge/depgraph.py
Commit message (Collapse)AuthorAgeFilesLines
...
* depgraph: skip backtrack for fatal errorsZac Medico2011-02-021-0/+10
|
* depgraph: rm obsolete AmbguousPackageName handlerZac Medico2011-02-021-21/+2
|
* REQUIRED_USE: no autounmask, so skip backtrackingZac Medico2011-02-021-4/+9
|
* REQUIRED_USE: handle unsatisfied like normal depZac Medico2011-02-021-17/+6
|
* Fix grammar in a comment.Zac Medico2011-02-021-1/+1
|
* REQUIRED_USE: add blank line after displayZac Medico2011-02-021-0/+1
|
* Make || choices independent of REQUIRED_USE.Zac Medico2011-02-021-36/+35
|
* _get_dep_chain: allow SetArg for first nodeZac Medico2011-02-011-14/+15
|
* Show "missed update" message for REQUIRED_USE.Zac Medico2011-02-011-7/+31
| | | | This will fix bug #353443.
* depgraph: display 'searching for similar names'Zac Medico2011-01-311-3/+11
| | | | It can take few seconds to search, so display a status message.
* Print near matches for cmd line atoms without matching ebuildSebastian Luther2011-01-311-0/+33
|
* Allow relative paths (starting with ./) on the cmd lineSebastian Luther2011-01-311-0/+7
| | | | bug 352208
* depgraph: fix get_dep_chain unicode handlingZac Medico2011-01-281-7/+8
|
* autounmask USE change comment: ensure that the first parent requires the changeSebastian Luther2011-01-281-16/+29
| | | | Fixes bug 350515.
* Show use conditionals in old style dep chainsSebastian Luther2011-01-281-126/+121
|
* 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.
* REQUIRED_USE: when unsatisfied, show current USEZac Medico2011-01-041-3/+5
|
* composite_db: use ebuild visibility for installedZac Medico2011-01-041-1/+16
| | | | 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-021-0/+10
| | | | | | 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.
* depgraph: Optimize --newuse with Package attrs.Zac Medico2010-12-241-4/+4
|
* Refactor depgraph merge list display code.Brian Dolbec2010-12-221-5/+6
|
* saveNomergeFavorites: remove unecessary varsZac Medico2010-12-201-8/+3
|
* saveNomergeFavorites: fix possible root confusionZac Medico2010-12-201-0/+5
|
* paren_enclose: preserve atom USE conditionalsZac Medico2010-12-191-2/+4
| | | | | | | The depgraph sometimes uses paren_enclose to temporarily convert parts of use_reduce output to a plain string. In these cases, we want to preserve atom USE conditionals, since these sometimes make a difference for IUSE checks during package matching (as in bug #348389).
* loadResumeCommand: select first matched packageZac Medico2010-12-121-0/+1
| | | | | We need to break out of the loop after the first match here, since the first package comes from the highest priority repo.
* depgraph: remove redundant IUSE checkZac Medico2010-11-291-4/+0
|
* fix missing_enabled/disabled logic for bug 345979Zac Medico2010-11-291-6/+6
|
* depgraph: fix logic more for bug 345979v2.2.0_alpha6Zac Medico2010-11-271-4/+14
|
* depgraph: fix logic in code for bug 345979Zac Medico2010-11-271-7/+6
|
* depgraph: check unevaluated USE dep IUSE earlierZac Medico2010-11-261-7/+7
|
* depgraph: tweak USE match logic for bug 345979Zac Medico2010-11-261-21/+25
| | | | | | This should fix handling of some corner cases in which use.force or use.mask might not have been handled correctly, and removes some redundant IUSE related checks.
* show_unsatisfied_dep: include ROOT if it's not /Zac Medico2010-11-261-0/+2
|
* Use Package.use.force/mask attributes.Zac Medico2010-11-201-13/+6
|
* Use Package.use.force/mask attributes.Zac Medico2010-11-201-5/+3
| | | | This optimizes the fix for bug #345979.
* Fix use.mask set intersection from previous.Zac Medico2010-11-201-1/+1
|
* Fix interaction of use.mask/force with use deps.Zac Medico2010-11-201-10/+34
| | | | | This should fix the package selection issue bug #345979 which triggers invalid "masked by: [nothing]" messages.
* depgraph minimize_children: yield highest versionv2.2.0_alpha1Zac Medico2010-10-231-1/+4
|
* Separate conflict atoms for 'missed update'.Zac Medico2010-10-221-18/+30
| | | | This will fix bug #342157.
* Raise default backtrack limit for bug 337178Sebastian Luther2010-10-211-2/+2
| | | | | | | | The bug was solved in principle, but other conflicts could lead to all tries being used up too early. The default backtrack limit is changed from 5 to 10. The maximal depth of the backtrack graph is now half of the backtrack limit.