summaryrefslogtreecommitdiffstats
path: root/pym/_emerge
Commit message (Collapse)AuthorAgeFilesLines
* emerge: more helpful "non-existent set" messageZac Medico2012-07-031-0/+6
|
* BacktrackParameter: fix runtime_pkg_mask copyZac Medico2012-06-271-1/+5
| | | | This caused the backtracker to bail out too early sometimes.
* slot_conflict_handler: handle slot_abiZac Medico2012-06-271-14/+30
| | | | | We have to distinguish this from the "version" conflict, in order to avoid invalid vercmp calls when there's not version.
* PollScheduler: schedule inside loop if max_loadZac Medico2012-06-241-3/+10
| | | | | This will fix a case like that reported in bug #403895, triggered when the --load-average option is used.
* Fix debug message wording of "to due".Zac Medico2012-06-231-1/+1
|
* slot_abi_mask_built: fix __eq__ for backtrackingv2.2.0_alpha111Zac Medico2012-06-221-2/+2
|
* Slot conflict "abi" backtrack nodes non-terminal.Zac Medico2012-06-222-1/+7
|
* slot_abi_mask_built: don't discard other masksZac Medico2012-06-221-1/+3
|
* Fix success_without_autounmask logic wrt rebuildsZac Medico2012-06-221-14/+20
|
* depgraph: fix broken _complete_mode assignmentZac Medico2012-06-221-1/+1
|
* _slot_abi_update_probe: respect --excludeZac Medico2012-06-221-0/+10
|
* depgraph: fix bugs in force_reinstall handlingZac Medico2012-06-221-49/+37
|
* Package: save validated_atoms as tupleZac Medico2012-06-221-2/+2
|
* Enable /etc/portage/sets for stable, bug #384061.Zac Medico2012-06-223-18/+32
|
* Add experimental EAPI 4-slot-abi support.Zac Medico2012-06-228-21/+410
| | | | Refer to 4-slot-abi.docbook for a full description.
* getportageversion: handle repo: in parent fileZac Medico2012-06-221-0/+15
|
* action_build: always display_problemsZac Medico2012-06-211-0/+10
|
* resolver/output: cleanup countersZac Medico2012-06-201-16/+9
|
* depgraph._complete_graph: old virt sanity checkZac Medico2012-06-201-3/+5
|
* backtracking: only feedback first slot conflictZac Medico2012-06-201-6/+5
| | | | | | Only create BacktrackNode instances for the first conflict which occurred, since the conflicts that occurred later may have been caused by the first conflict.
* depgraph._iter_atoms_for_pkg: fix for --rebuild-*Zac Medico2012-06-192-10/+27
| | | | | | The SetArg instances that are generated for --rebuild-if-* behvior need to be passed into _set_args() in order for _iter_atoms_for_pkg to be aware of these arguments.
* depgraph: optimize slot conflict backtrack orderZac Medico2012-06-192-3/+15
|
* depgraph: defer slot conflict backtrackingZac Medico2012-06-181-91/+75
| | | | | | Defer slot conflict backtracking until after _complete_graph is used to complete the graph, so that all relevant reverse dependencies are available for making informed backtracking decisions.
* depgraph._add_pkg: preserve previous pkg depthZac Medico2012-06-171-0/+2
|
* depgraph: use package sets for rebuild/reinstallZac Medico2012-06-171-5/+21
|
* DependencyArg: add __slots__Zac Medico2012-06-173-3/+12
|
* _process_slot_conflicts: do one slot at a timeZac Medico2012-06-161-36/+37
| | | | | This allows us to avoid redundant processing of slots that have already been processed by a previous call.
* depgraph: split out _handle_slot_conflict methodZac Medico2012-06-161-120/+129
|
* depgraph: simplify _select_pkg_highest_availableZac Medico2012-06-161-8/+0
| | | | | | This hunk of code is no longer needed since the content of _highest_pkg_cache is discarded each time a package is added to the graph.
* depgraph: _autounmask in _highest_pkg_cache keyZac Medico2012-06-161-1/+1
|
* Add USE + license autounmask for bug #420847.Zac Medico2012-06-151-2/+7
|
* Move post_src_install metadata code to one func.Zac Medico2012-06-111-2/+2
|
* Package: move SLOT validation to _pkg_strZac Medico2012-06-101-14/+9
|
* Add a _get_slot_re() function.Zac Medico2012-06-101-2/+2
|
* Package: use _eapi_attrsZac Medico2012-06-101-3/+4
|
* depgraph: pass use_reduce result to dep_checkZac Medico2012-06-081-34/+24
| | | | This allows us to avoid extraneous use_reduce/paren_enclose calls.
* Handle more import exceptions involving xml.Zac Medico2012-06-041-2/+11
| | | | See http://bugs.python.org/issue14988
* Package: calc visiblity on demandZac Medico2012-06-031-15/+34
| | | | | | This delays visiblity calculations until after FakeVartree applies its metadata tweaks, so commit 650c960be3170bade8bb63ddedcd4796c75ec374 will work as intended.
* FakeVartree: use KEYWORDS from unbuilt ebuildZac Medico2012-06-031-1/+1
| | | | | | This allows us to avoid triggering the code from bug #350285 (see commit b7de3d1fb10e40b4ef03462f8a145968689ac587) in cases when the KEYWORDS from the unbuilt ebuild would unmask the package.
* Use any() to optimize intersection operations.Zac Medico2012-05-301-18/+16
|
* _wildcard_set: specify allow_repo=FalseZac Medico2012-05-301-2/+2
| | | | | This make is behave as it did prior to the change in Atom constructor behavior in commit 587cce4816afc7d57b3edf0be6c0670ec0be89c9.
* depgraph: send output to stderr when appropriateZac Medico2012-05-141-70/+48
| | | | | | This also removes the stderr -> stdout redirect from display_problems, since the app-portage/autounmask program is no longer supported, and that will fix bug #406867.
* BlockerCache: use _unicode() for pickled atomsZac Medico2012-05-131-2/+2
|
* _pkg_str: validate repo (move code from Package)Zac Medico2012-05-131-10/+7
|
* unmerge: use cpv_sort_key instead of pkgcmpZac Medico2012-05-131-10/+12
|
* _pkg_str: add version attribute for comparisonsZac Medico2012-05-131-7/+7
| | | | | This attribute can be passed directly into vercmp, avoiding the need to generate this string many times.
* depgraph: minimize match_from_list operationsZac Medico2012-05-131-58/+64
| | | | | | In _iter_match_pkgs, call match_from_list on one cpv at a time, in order to avoid unnecessary match_from_list comparisons on versions that are never yielded from this method.
* _pkg_str: add slot and repo attributesZac Medico2012-05-121-5/+7
|
* match_from_list: handle Package.UNKNOWN_REPOZac Medico2012-05-121-3/+4
|
* Add a _pkg_str class to cache catpkgsplit resultsZac Medico2012-05-121-2/+5
| | | | | This will compensate for the removal of the catpkgsplit cache in commit 68888b0450b1967cb70673a5f06b04c167ef879c.