summaryrefslogtreecommitdiffstats
path: root/bin
Commit message (Collapse)AuthorAgeFilesLines
* For bug #158354, make "No" the default response for unmerge actions.Zac Medico2006-12-181-1/+2
| | | | svn path=/main/trunk/; revision=5318
* Just start with an empty dict in dep_check_trees since nothing more is needed.Zac Medico2006-12-181-1/+1
| | | | svn path=/main/trunk/; revision=5317
* Catch PortageException from portdbapi.aux_get since it can happen when gpg ↵Zac Medico2006-12-181-1/+1
| | | | | | is in FEATURES. svn path=/main/trunk/; revision=5316
* Disable the spinner when --debug is enabled so that it doesn't interfere.Zac Medico2006-12-181-0/+1
| | | | svn path=/main/trunk/; revision=5314
* Make depclean skip empty depstrings.Zac Medico2006-12-181-0/+3
| | | | svn path=/main/trunk/; revision=5313
* Do some minor cleanup of the --depclean code.Zac Medico2006-12-181-18/+10
| | | | svn path=/main/trunk/; revision=5312
* Add --debug support for --depclean.Zac Medico2006-12-171-0/+15
| | | | svn path=/main/trunk/; revision=5311
* Add a comment about the previous commit.Zac Medico2006-12-171-1/+2
| | | | svn path=/main/trunk/; revision=5310
* Don't optimize depgraph.altlist() in reversed mode since the optimization ↵Zac Medico2006-12-171-1/+1
| | | | | | destroys --tree ouput. svn path=/main/trunk/; revision=5309
* In depgraph.altlist(), pop as many leaf nodes as possible when no ↵Zac Medico2006-12-171-1/+7
| | | | | | relationship has been ignored. This can halve the time taken for a large merge order calculation. svn path=/main/trunk/; revision=5308
* force environment.bz2 to be clobbered if it already existsMike Frysinger2006-12-171-1/+1
| | | | svn path=/main/trunk/; revision=5307
* remove pointless redirects to /dev/null when using hasq()Mike Frysinger2006-12-171-2/+2
| | | | svn path=/main/trunk/; revision=5306
* Make dep_check validate all depstring atoms in order to prevent problems ↵Zac Medico2006-12-161-0/+1
| | | | | | from occuring later due to unexpected invalid atoms. svn path=/main/trunk/; revision=5304
* For bug #158177, force configure scripts that automatically detect ccache to ↵Zac Medico2006-12-161-0/+4
| | | | | | respect FEATURES="-ccache". Thanks to Horst Schirmeier <gentoo@schirmeier.com> for this suggestion. svn path=/main/trunk/; revision=5302
* Make repoman cache per-profile xmatch results.Zac Medico2006-12-161-2/+6
| | | | svn path=/main/trunk/; revision=5301
* For bug #157897, show parent nodes in order to help the user decide about ↵Zac Medico2006-12-161-7/+16
| | | | | | what action to take. svn path=/main/trunk/; revision=5297
* Cache blocked slots for better efficiency.Zac Medico2006-12-141-1/+2
| | | | svn path=/main/trunk/; revision=5296
* Make --columns blockers output more consistent when --quiet is not enabled.Zac Medico2006-12-141-1/+1
| | | | svn path=/main/trunk/; revision=5294
* Remove pointless unpacking of the parent node.Zac Medico2006-12-141-1/+0
| | | | svn path=/main/trunk/; revision=5293
* Remove redundant priority handling since that's always handled in ↵Zac Medico2006-12-141-5/+2
| | | | | | select_dep() for nodes that have parents. svn path=/main/trunk/; revision=5292
* Fix the --onlydeps conditional logic in depgraph.create(). These aren't ↵Zac Medico2006-12-141-48/+44
| | | | | | real nodes and shouldn't be added to the digraph, etc... svn path=/main/trunk/; revision=5291
* Use depgraph.pkg_node_map so simplify comparison against existing nodes at ↵Zac Medico2006-12-141-14/+7
| | | | | | the beginning of depgraph.create(). svn path=/main/trunk/; revision=5290
* Update the comment about depgraph.pkg_node_map since it now maps all nodes ↵Zac Medico2006-12-141-1/+1
| | | | | | added to the graph. svn path=/main/trunk/; revision=5289
* Fix a typo from the previous commit.Zac Medico2006-12-141-1/+1
| | | | svn path=/main/trunk/; revision=5288
* For bug #157897, add slot collision handling in depgraph.create(), since ↵Zac Medico2006-12-141-28/+75
| | | | | | create() is called from places other than select_dep(). svn path=/main/trunk/; revision=5287
* handle --cols when displaying blockersMike Frysinger2006-12-131-1/+4
| | | | svn path=/main/trunk/; revision=5286
* For bug #157897, handle the case of multiple versions within a single ↵Zac Medico2006-12-131-0/+32
| | | | | | package slot have been pulled into the dependency graph. If possible, the package that has already been pulled in will be reused. Otherwise, an error message will advise the user to mask an unwanted version. svn path=/main/trunk/; revision=5285
* Remove redundant digraph.pkg_node_map node insertions. Once per ↵Zac Medico2006-12-131-12/+1
| | | | | | digraph.create() call will cover all nodes. svn path=/main/trunk/; revision=5283
* Track slot atom to digraph node mappings as the depgraph is built. This ↵Zac Medico2006-12-131-6/+10
| | | | | | mapping will be used to detect node collisions for bug #157897. svn path=/main/trunk/; revision=5282
* For bug #157897, ensure that only "merge" nodes are stored in ↵Zac Medico2006-12-121-6/+13
| | | | | | digraph.pkg_node_map. svn path=/main/trunk/; revision=5280
* For bug #157897, only let depgraph.create() inject "merge" nodes into the ↵Zac Medico2006-12-121-1/+1
| | | | | | final state dbapi. svn path=/main/trunk/; revision=5279
* For higher efficiency, call self.__int__() instead of int(self).Zac Medico2006-12-121-7/+7
| | | | svn path=/main/trunk/; revision=5278
* Optimize dep_check calls in depgraph.validate_blockers() by using a ↵Zac Medico2006-12-121-1/+14
| | | | | | fakedbapi instance instead of the real pordbapi (minimizes available matches). svn path=/main/trunk/; revision=5277
* Store dependency metadata in depgraph.mydbapi so that it can be used in ↵Zac Medico2006-12-121-4/+7
| | | | | | place of the portdb for optimized dep_check calls in depgraph.validate_blockers(). svn path=/main/trunk/; revision=5276
* Centralize all of the vardb metadata mangling in FakeVartree.Zac Medico2006-12-121-45/+22
| | | | svn path=/main/trunk/; revision=5275
* For bug #157823, ignore blocker collisions between two packages that are ↵Zac Medico2006-12-111-0/+24
| | | | | | already installed if no merge is currently scheduled for either of those package slots. These blockers will be handled as necessary the next time that a merge of either package is triggered. svn path=/main/trunk/; revision=5272
* For bug #157823, don't forget to split the USE.Zac Medico2006-12-111-1/+1
| | | | svn path=/main/trunk/; revision=5270
* Fix a typo from the previous commit.Zac Medico2006-12-111-1/+1
| | | | svn path=/main/trunk/; revision=5269
* When there are multiple packages occupying the same slot, only consider the ↵Zac Medico2006-12-111-1/+14
| | | | | | one with the highest COUNTER. Thanks to leio for reporting. svn path=/main/trunk/; revision=5268
* Ensure that the root of the vdb exists before attempting to lock it. Thanks ↵Zac Medico2006-12-111-0/+10
| | | | | | to Flameeyes for reporting. svn path=/main/trunk/; revision=5267
* Ignore blockers when "--buildpkgonly" is enabled.Zac Medico2006-12-101-0/+3
| | | | svn path=/main/trunk/; revision=5266
* Add an allow_blockers parameter to isvalidatom so that the behavior is ↵Zac Medico2006-12-101-1/+1
| | | | | | optional. Thanks to Brian Harring for the suggestion. svn path=/main/trunk/; revision=5264
* Make sure the SLOT comes from the vardb instead of the portdb (for ↵Zac Medico2006-12-101-0/+2
| | | | | | multislot, etc..). Thanks to jakub for reporting. svn path=/main/trunk/; revision=5256
* For bug #128809, optimize dep_check calls and enable the blocker detection ↵Zac Medico2006-12-101-2/+7
| | | | | | by default since the performance now seems acceptable. svn path=/main/trunk/; revision=5255
* For bug #128809, process blockers for all installed packages. Due to the ↵Zac Medico2006-12-101-3/+62
| | | | | | performance penalty incurred by additional dep_check calls, this is only enabled with the --deep option. svn path=/main/trunk/; revision=5248
* Escape a newline from the previous commit.Zac Medico2006-12-101-1/+1
| | | | svn path=/main/trunk/; revision=5247
* Don't attempt to enforce merge order unless the blocker parent is actually a ↵Zac Medico2006-12-091-1/+2
| | | | | | "merge" node. svn path=/main/trunk/; revision=5246
* This patch cleans up the blocker validation logic. Unlike the previous ↵Zac Medico2006-12-091-60/+60
| | | | | | implementation, this one carefully considers each parent/block package relationship in order to ensure that no unresolved blocks slip through. svn path=/main/trunk/; revision=5245
* For bug #157369, clean when cleanup has been triggered by changed ↵Zac Medico2006-12-091-4/+11
| | | | | | timestamps. Also, allow FEATURES=keepwork to override the ebuild mtime check. svn path=/main/trunk/; revision=5244
* Clean up depstring/atom splitting and filtering.Zac Medico2006-12-091-2/+6
| | | | svn path=/main/trunk/; revision=5243