summaryrefslogtreecommitdiffstats
path: root/pym/_emerge/depgraph.py
Commit message (Collapse)AuthorAgeFilesLines
* depgraph: fix virtual code to handle unsatisfiedZac Medico2011-02-141-2/+2
|
* Recognize git-2.eclass when reinstalling self.Zac Medico2011-02-141-1/+2
|
* depgraph: fix KeyError in select_atomsZac Medico2011-02-141-0/+2
| | | | This happens if depstring evaluates to nothing.
* get_dep_chain: fix broken parent_arg referenceZac Medico2011-02-131-1/+1
| | | | Broken since commit b4f98ec5a1eb2e010a455b19db5bef8d61def241.
* depgraph: normalize indentationZac Medico2011-02-131-5/+4
|
* depgraph: ignore fewer depsZac Medico2011-02-131-2/+6
| | | | | This restores some desired logic that was left out of commit 5655b4dcfe5e9dae5e9d6352d791c3d04953baf7.
* depgraph: remove redundant "empty" param checksZac Medico2011-02-131-7/+4
| | | | | Since commit 878f166c5a06b0ab6c5a34dd658c878cc7605fe7, empty implies deep = True, so these checks are redundant.
* get_dep_chain: fix unsatisfied_dependency logicZac Medico2011-02-131-2/+5
| | | | | | Always prefer parents for which the parent atom is unsatisfied by the child node. This seems to be the intention of the code, though it may not have behaved correctly due to continuation of the parent loop.
* get_dep_chain: prefer parents in merge listZac Medico2011-02-131-10/+20
| | | | This will fix bug #354747.
* depgraph: fix and test depth control for virtualsZac Medico2011-02-131-8/+42
|
* depgraph: tweak depth calculation for virtualsZac Medico2011-02-131-3/+12
| | | | | | Recursively traversed virtual dependencies, and their direct dependencies, are considered to have the same depth as direct dependencies.
* depgraph: fix and test --deep control of depthZac Medico2011-02-131-3/+41
| | | | | Control over recursion depth hasn't behaved properly since commit 6503980e0e3bcfce9fbaff85c33d87f616e955a9. Now it is fixed and tested.
* depgraph: avoid atom hash collisions in dep_checkZac Medico2011-02-131-7/+8
| | | | | | | | Atoms are stored in the graph as (atom, id(atom)) tuples since each atom is considered to be a unique entity. For example, atoms that appear identical may behave differently in USE matching, depending on their unevaluated form. Also, specially generated virtual atoms may appear identical while having different _orig_atom attributes.
* depgraph: return virtual edges from select_atomsZac Medico2011-02-131-36/+42
|
* depgraph: don't distort edges for virtualsZac Medico2011-02-131-9/+19
| | | | | | | | In _add_pkg_dep_string(), _add_pkg() was called with generated Dependency instances that created fake/distorted edges in the graph for new-style virtuals (similar to those that were fixed in commit 5b16e0d800f34dc90cdd8c505172ad16b97f0af4). Now there won't be any such distorted edges.
* depgraph: fix distorted display of virtualsZac Medico2011-02-131-0/+13
| | | | | | | | As mentioned in bug #353933, comment #4, special new-style virtual atoms generated/distorted by _expand_new_virtuals() can prevent extract_affecting_use() from working properly. This is fixed by saving the original atoms so that the depgraph can map them back into place at the appropriate step in dependency evaluation.
* depgraph: avoid reinstall of identical binpkgZac Medico2011-02-131-0/+15
| | | | This will fix bug #354441.
* emerge: support ../ path argumentsZac Medico2011-02-081-1/+2
| | | | This will fix bug #354141.
* get_dep_chain: add "set" node typev2.1.9.36Zac Medico2011-02-041-2/+5
|
* depgraph: make downgrades trigger complete graphZac Medico2011-02-041-2/+21
| | | | | It's common for downgrades to break dependencies, as in bug #353613, so automatically trigger complete graph mode when a downgrade is found.
* depgraph: don't drop deps in _add_depZac Medico2011-02-041-29/+0
| | | | | | This will fix bug #353613. We remove a hunk of code that was meant to limit recursion, but is obsolete an buggy. The recursion limiting is now handled by _add_pkg and the _ignored_deps stack.
* REQUIRED_USE: display unsatisfied partZac Medico2011-02-031-1/+14
| | | | This will fix bug #353234.
* depgraph: use catsplit where appropriateZac Medico2011-02-021-2/+2
|
* depgraph: remove obsolete gpg exception handlersZac Medico2011-02-021-14/+0
|
* 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-3/+8
|
* 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-021-14/+15
|
* Show "missed update" message for REQUIRED_USE.Zac Medico2011-02-021-7/+32
| | | | This will fix bug #353443.
* depgraph: display 'searching for similar names'Zac Medico2011-02-021-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-02-021-0/+33
|
* Allow relative paths (starting with ./) on the cmd lineSebastian Luther2011-02-021-0/+7
| | | | bug 352208
* depgraph: fix get_dep_chain unicode handlingZac Medico2011-02-021-7/+8
|
* autounmask USE change comment: ensure that the first parent requires the changeSebastian Luther2011-02-021-16/+29
| | | | Fixes bug 350515.
* Show use conditionals in old style dep chainsSebastian Luther2011-02-021-126/+121
|
* depgraph: avoid duplicate ebuild visibility checkZac Medico2011-01-181-1/+1
|
* depgraph: avoid updates moreZac Medico2011-01-181-9/+13
| | | | | 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: merge some logic from bug #350254Zac Medico2011-01-031-1/+2
|
* 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.