summaryrefslogtreecommitdiffstats
path: root/pym
Commit message (Collapse)AuthorAgeFilesLines
...
* test_merge_order: add more asap libc depsZac Medico2011-05-221-6/+12
|
* _serialize_tasks: prefer unsatisfied asap childZac Medico2011-05-222-9/+28
| | | | | Optimally, satisfied deps are always merged after the asap nodes that depend on them.
* test_depth: use merge_order_assertionsZac Medico2011-05-221-1/+3
|
* _add_pkg_dep_string: handle satisfied virt_depZac Medico2011-05-222-3/+21
| | | | | This fixes a problem with the asap LIBC_PACKAGE_ATOM test case for bug #303567.
* test_merge_order: test asap LIBC_PACKAGE_ATOMZac Medico2011-05-221-0/+44
|
* _validate_blockers: reference bug 128809Zac Medico2011-05-221-4/+7
|
* test_merge_order: test asap PORTAGE_PACKAGE_ATOMZac Medico2011-05-221-0/+22
|
* test_merge_order: test case for bug 250286Zac Medico2011-05-221-0/+28
|
* test_merge_order: test hard block resolutionZac Medico2011-05-221-0/+18
|
* test_merge_order: test many-to-one blocksZac Medico2011-05-222-8/+14
|
* Package: add new _gen_hash_key methodZac Medico2011-05-224-44/+53
|
* test_depth: use ambiguous_merge_orderZac Medico2011-05-221-2/+4
|
* ambiguous_merge_order: set match = False moreZac Medico2011-05-221-0/+2
|
* Fix spelling of "ambiguous".Zac Medico2011-05-222-7/+7
|
* DepPriority: remove "rebuild" attributeZac Medico2011-05-213-36/+9
| | | | | | | | | | | | | | | | Since the addition of DepPriorityNormalRange and DepPrioritySatisfiedRange in commit bd369956b2a2fbc019a655a372628998499156c0, which solves most cases of bug 199856, the Depriority.rebuild attribute doesn't appear to make any difference. The edges that this attribute differentiates are already naturally differentiated by the fact that the child node of a satisfied buildtime dependency that's not being rebuilt will naturally be identified as a leaf node earlier and removed from the graph, thereby eliminating the edge before there's an opportunity to compare it with a higher priority rebuild edge. The addition of the "optional" attribute (in commit 15476805a156acd11fdaaa19212691e8ee09b309) also plays a role here, since it converts some satisfied buildtime edges to optional edges, thereby reducing their priority.
* test_merge_order: fix bugs in previous commitZac Medico2011-05-211-6/+5
|
* test_merge_order: test solve blocker no-overlapZac Medico2011-05-211-1/+23
|
* treewalk: force AUTOCLEAN=yes if libs preservedZac Medico2011-05-211-1/+6
|
* _prune_plib_registry: correct _match_contents useZac Medico2011-05-211-1/+1
|
* merge_order_assertions: fix string format errorZac Medico2011-05-211-1/+2
|
* test_merge_order: test satisfied circular DEPENDZac Medico2011-05-212-1/+55
|
* test_merge_order: test unsolvable buildtime cycleZac Medico2011-05-211-0/+15
|
* test_merge_order: test circular RDEPEND + DEPENDZac Medico2011-05-211-0/+23
|
* test_merge_order: make cycles indirectZac Medico2011-05-211-3/+10
|
* Task.__eq__: allow _hash_key as inputZac Medico2011-05-211-1/+3
| | | | This is used by depgraph._pkg() for lookups.
* ambigous_merge_order: handle more failure modesZac Medico2011-05-201-0/+8
|
* test_merge_order: test hard buildtime blockersZac Medico2011-05-201-0/+21
|
* test_merge_order: test hard blocker resolutionZac Medico2011-05-202-5/+14
|
* test_merge_order: test blocker resolutionZac Medico2011-05-202-0/+29
|
* test_merge_order: remove uneeded ambigous flagZac Medico2011-05-201-1/+0
|
* test_merge_order: fix ambigous_merge_order bugZac Medico2011-05-202-3/+6
|
* test_merge_order: test circular RDEPEND + PDEPENDZac Medico2011-05-201-0/+16
|
* ResolverPlayground: support ambigous_merge_orderZac Medico2011-05-202-3/+91
|
* Fix grammar in previous commit.Zac Medico2011-05-201-1/+1
|
* depclean: adjust failure message wrt --with-bdepsZac Medico2011-05-201-9/+21
| | | | | We need to be more explicit about using --with-bdeps=y, since this subtlety often leads to confusion.
* Task: optimize == and != _hash_key comparisonZac Medico2011-05-201-2/+8
|
* Add FEATURES=distcc-pump support.MATSUU Takuto2011-05-202-2/+2
| | | | This will fix bug #288597.
* Task: precalculate _hash_valueZac Medico2011-05-193-3/+2
|
* Task: remove unnecessary _get_hash_key() methodZac Medico2011-05-193-28/+12
|
* Package: precalculate _hash_keyMarat Radchenko2011-05-191-11/+9
| | | | | This eliminates an expensive getattr call in _get_hash_key(), which greatly improves depgraph performance on a weak ARM cpu.
* Fix typos in comments.Arfrever Frehtes Taifersar Arahesis2011-05-181-3/+3
|
* _find_libs_to_preserve: always return setv2.2.0_alpha34Zac Medico2011-05-171-1/+1
|
* preserve-libs: check for broken linkmap moreZac Medico2011-05-171-3/+6
|
* _pkg_visibility_check: if in graph then visibleZac Medico2011-05-171-0/+9
|
* _LockProcess.unlock: assert successful returncodeZac Medico2011-05-171-0/+3
|
* --autounmask-write: use CONFIGROOT moreZac Medico2011-05-171-1/+3
|
* Fix a typo in a comment.Zac Medico2011-05-171-1/+1
|
* digraph: implement __bool__Zac Medico2011-05-171-1/+9
|
* depgraph._resolve: use temp set for autounmaskZac Medico2011-05-171-4/+8
|
* display_autounmask: optimize check_if_latestZac Medico2011-05-171-15/+16
|