summaryrefslogtreecommitdiffstats
path: root/pym/_emerge
Commit message (Collapse)AuthorAgeFilesLines
* depgraph: don't distort edges for virtualsZac Medico2011-02-111-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-111-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-111-0/+15
| | | | This will fix bug #354441.
* emerge: support ../ path argumentsZac Medico2011-02-081-1/+2
| | | | This will fix bug #354141.
* backtrack_depgraph: get_best_run for last runv2.2.0_alpha20Zac Medico2011-02-041-1/+2
| | | | | | | It's essential to feed back autounmask config changes, especially USE changes, in order to make the last run as successful as possible. This fixes a regression in the master branch, since commit 2186f87c22e0c4bdb86065855c2034bdbb66fa45.
* get_dep_chain: add "set" node typeZac 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.
* action_uninstall: allow repo with wildcard atomZac Medico2011-02-031-1/+1
|
* 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-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
|
* Display: simplify alignment for mask statusZac Medico2011-02-021-15/+11
|
* 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.
* EbuildFetcher: use default SIGINT/TERM handlersZac Medico2011-01-311-0/+6
| | | | This seems to fix bug #353239.
* 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
|
* EbuildBuild: spawn nofetch for fetchonlyZac Medico2011-01-311-5/+12
|
* Allow relative paths (starting with ./) on the cmd lineSebastian Luther2011-01-311-0/+7
| | | | bug 352208
* slot collision suggestions: Avoid showing redundant suggestions.Sebastian Luther2011-01-311-14/+71
| | | | http://forums.gentoo.org/viewtopic-t-862257.html?sid=9ba8646a15044fe024a41154df351c6a
* Display: Simplify mask code for bug #58416.Zac Medico2011-01-312-20/+22
| | | | | | Hopefully this makes the logic more understandable, though it may support fewer cases. If we want to handle more cases then hopefully we can do it without making the code too complex.
* Display: align nomerge nodes moreZac Medico2011-01-311-4/+12
|
* Display: align blocker and nomerge nodesZac Medico2011-01-311-2/+9
|
* fix a "*" being added for a stable pkg-verBrian Dolbec2011-01-301-2/+3
|
* Display: show masks in the [ ] partZac Medico2011-01-301-11/+16
| | | | | | | | Symbol | Mask Type -------|----------------- # | package.mask * | missing keyword ~ | unstable keyword
* fix the problem of mixing "**" and ebuild keywords for only some archsBrian Dolbec2011-01-302-2/+7
|
* Fix a typo.Arfrever Frehtes Taifersar Arahesis2011-01-301-2/+2
|
* Fix a typo.Arfrever Frehtes Taifersar Arahesis2011-01-301-2/+2
|
* make it only print if it is due to an override settingBrian Dolbec2011-01-301-1/+1
|
* Use the new _getRawMissingKeyword() which optimizes the keyword display. ↵Brian Dolbec2011-01-302-55/+51
| | | | Misc. whitespace cleanup
* add a new function to MaskManager that optimizies getting any raw mask atomsBrian Dolbec2011-01-301-23/+6
|
* optimize isHardMasked() a little moreBrian Dolbec2011-01-301-5/+2
|
* Move most of the code to _emerge's Package object. Refine the hardmasking ↵Brian Dolbec2011-01-302-22/+48
| | | | code, optimizing as much as possible.
* add keyword output info for masked pkgs, fixes bug 58416Brian Dolbec2011-01-301-2/+41
|
* depgraph: fix get_dep_chain unicode handlingZac Medico2011-01-281-7/+8
|
* action_info: fix noiselevel for repo/set displaysZac Medico2011-01-281-4/+4
|
* action_info: use _ENABLE_SET_CONFIG for setsZac Medico2011-01-281-6/+8
|
* --info: Show installed sets (bug 282250)Sebastian Luther2011-01-281-1/+10
|
* 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
|
* 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
|