summaryrefslogtreecommitdiffstats
path: root/pym/emerge
Commit message (Collapse)AuthorAgeFilesLines
...
* fix broken importAlec Warner2007-07-231-1/+1
| | | | svn path=/main/trunk/; revision=7370
* Fix the reverse dependency display for --prune when there is now real parent.Zac Medico2007-07-221-0/+5
| | | | svn path=/main/trunk/; revision=7351
* Make --update imply --oneshot since people often us it to update things when ↵Zac Medico2007-07-221-1/+3
| | | | | | they don't want to add them to world. Thanks to jakub for the suggestion. svn path=/main/trunk/; revision=7349
* Document --depclean and --prune enhancements.Zac Medico2007-07-221-9/+19
| | | | svn path=/main/trunk/; revision=7345
* Prevent a potential KeyError when removing world from the digraph for ↵Zac Medico2007-07-221-1/+2
| | | | | | --prune display. svn path=/main/trunk/; revision=7344
* Make --prune pull in the system set since that could pull in some slots that ↵Zac Medico2007-07-221-0/+3
| | | | | | wouldn't be pulled in otherwise. svn path=/main/trunk/; revision=7343
* Make --prune and --depclean return before calculating dependencies if atoms ↵Zac Medico2007-07-211-0/+9
| | | | | | are given but they don't match any packages. svn path=/main/trunk/; revision=7336
* Prune really uses all installed instead of world. It's not a real reverse ↵Zac Medico2007-07-211-0/+3
| | | | | | dependency so don't display it as such. svn path=/main/trunk/; revision=7334
* Just show [0] instead of [0=>0] in the repo display.Zac Medico2007-07-211-3/+6
| | | | svn path=/main/trunk/; revision=7332
* Hint about --nodeps if --prune doesn't find anything to prune. Also enable ↵Zac Medico2007-07-211-1/+7
| | | | | | reverse dependency display for global depclean. svn path=/main/trunk/; revision=7327
* Update --prune docs for bug #151653.Zac Medico2007-07-201-1/+1
| | | | svn path=/main/trunk/; revision=7315
* Fix --prune so that it always correctly accounts for COUNTER when dealing ↵Zac Medico2007-07-201-3/+4
| | | | | | with packages in the same slot. svn path=/main/trunk/; revision=7313
* For bug #151653, make --prune keep the highest version whenever possible ↵Zac Medico2007-07-201-2/+24
| | | | | | (even when there is one with a higher counter installed). svn path=/main/trunk/; revision=7312
* Make --prune try to prune all slotted packages if no atoms are given (that's ↵Zac Medico2007-07-191-0/+5
| | | | | | how it already works with --nodeps). svn path=/main/trunk/; revision=7310
* Make --prune bail out like depclean does if there are unresolved ↵Zac Medico2007-07-191-2/+5
| | | | | | dependencies. Notify the user that they can use --nodeps in that case. svn path=/main/trunk/; revision=7309
* With --prune and --depclean, if --verbose is enabled then show reverse ↵Zac Medico2007-07-191-4/+26
| | | | | | dependencies for each package that is matched by an atom from the command line. This allows the user to see why a package will not be unmerged. svn path=/main/trunk/; revision=7308
* Allow atoms to be specified for --depclean so that it can be used to safely ↵Zac Medico2007-07-181-5/+38
| | | | | | unmerge packages if nothing depends on them. svn path=/main/trunk/; revision=7306
* Use the --depclean algorithm to make --prune safe. The old unsafe --prune ↵Zac Medico2007-07-181-12/+77
| | | | | | will be used if the --nodeps option is specified. svn path=/main/trunk/; revision=7305
* Unify USE handling in the depgraph with the other metadata.Zac Medico2007-07-171-19/+15
| | | | svn path=/main/trunk/; revision=7298
* For bug #185670, make sure package.use.{mask,force} are properly displayed.Zac Medico2007-07-171-0/+1
| | | | svn path=/main/trunk/; revision=7296
* When expanding ambiguous atoms against the vardb, make sure the the expanded ↵Zac Medico2007-07-171-2/+5
| | | | | | package is also available in the portage tree. svn path=/main/trunk/; revision=7294
* When dep_expand throws a ValueError due to an ambiguous atom, try to expand ↵Zac Medico2007-07-171-4/+11
| | | | | | it against the installed packages in case it yields a unique match. svn path=/main/trunk/; revision=7292
* Don't show the repo display when the package list is empty.Zac Medico2007-07-171-1/+2
| | | | svn path=/main/trunk/; revision=7290
* Revert PackageSet.containsCPV() calls back to findAtomForPackage() calls so ↵Zac Medico2007-07-171-5/+5
| | | | | | that things like slot atoms and old-style virtuals are properly supported. svn path=/main/trunk/; revision=7287
* Always be sure to load the latest version of the world file while it's locked.Zac Medico2007-07-171-1/+3
| | | | svn path=/main/trunk/; revision=7286
* Replace emerge.WorldSet with portage.sets.files.WorldSetMarius Mauch2007-07-161-36/+6
| | | | svn path=/main/trunk/; revision=7283
* Replace emerge.SystemSet with portage.sets.profiles.PackagesSystemSetMarius Mauch2007-07-161-7/+3
| | | | svn path=/main/trunk/; revision=7281
* replace emerge.AtomSet with portage.sets.InternalPackageSetMarius Mauch2007-07-161-74/+20
| | | | svn path=/main/trunk/; revision=7279
* Fix typo.Zac Medico2007-07-151-2/+2
| | | | svn path=/main/trunk/; revision=7265
* When deciding if a package is slotted inside create_world_atom(), check the ↵Zac Medico2007-07-151-8/+18
| | | | | | vdb in case the package is multislot. svn path=/main/trunk/; revision=7263
* Remove unused repo_name code.Zac Medico2007-07-141-6/+0
| | | | svn path=/main/trunk/; revision=7260
* Use sys.stdout instead of print to avoid an extra newline.Zac Medico2007-07-141-1/+1
| | | | svn path=/main/trunk/; revision=7259
* Encapsulate the repo display code in a class.Zac Medico2007-07-141-51/+64
| | | | svn path=/main/trunk/; revision=7258
* Always show PORTDIR with index 0 in the repo display.Zac Medico2007-07-141-0/+7
| | | | svn path=/main/trunk/; revision=7257
* Make the repo display work for overlays that don't define repo_name (like it ↵Zac Medico2007-07-141-12/+15
| | | | | | used to). svn path=/main/trunk/; revision=7256
* For bug #185278, make the verbose flag display show masked/forced flag ↵Zac Medico2007-07-141-4/+2
| | | | | | status for binary packages too. svn path=/main/trunk/; revision=7254
* Fix it so that the 'repository could not be determined' message is shown ↵Zac Medico2007-07-141-4/+4
| | | | | | when appropriate (issue with variable scope). svn path=/main/trunk/; revision=7250
* Misc fixes for verbose repo output:Zac Medico2007-07-141-47/+76
| | | | | | | | - Support binary packages by using the 'repository' metadata that's stored in the package. - Support PORTAGE_CONFIGROOT, showing repos from both configs if necessary. - Dynamic allocation of repo indexes so only relevant repos are shown. svn path=/main/trunk/; revision=7249
* Use os.path.realpath(portdir) for comparison of repo paths. (branchs/prefix ↵Zac Medico2007-07-131-1/+1
| | | | | | r7245) svn path=/main/trunk/; revision=7246
* Fix the case where the currently installed package is from a repo that is no ↵Zac Medico2007-07-121-1/+1
| | | | | | longer in the overlay (oldrepo is None rather than an empty string). svn path=/main/trunk/; revision=7241
* Make depgraph._reinstall_for_flags() always return all revelant flags.Zac Medico2007-07-121-4/+2
| | | | svn path=/main/trunk/; revision=7239
* For bug #184983, prevent USE_EXPAND_HIDDEN flags from being hidden if they ↵Zac Medico2007-07-121-16/+48
| | | | | | are the only thing that triggered reinstallation. svn path=/main/trunk/; revision=7237
* Use set.discard() instead of remove() to avoid a potential KeyError.Zac Medico2007-07-111-2/+2
| | | | svn path=/main/trunk/; revision=7230
* Fix another case similar to bug #184806 that can occur with --onlydeps.Zac Medico2007-07-111-2/+4
| | | | svn path=/main/trunk/; revision=7226
* Fix typo.Zac Medico2007-07-111-1/+0
| | | | svn path=/main/trunk/; revision=7224
* For bug #184687, skip the huge --depclean warning when --quiet mode is enabled.Zac Medico2007-07-111-17/+21
| | | | svn path=/main/trunk/; revision=7222
* For bug #184806, account for the fact the metadata is not cached for ↵Zac Medico2007-07-101-4/+10
| | | | | | slot_collision_nodes. svn path=/main/trunk/; revision=7214
* Fix interaction of resume opts with spinner output handling so that output ↵Zac Medico2007-07-091-9/+14
| | | | | | always looks correct. svn path=/main/trunk/; revision=7207
* simplify logic a bitMarius Mauch2007-07-091-14/+6
| | | | svn path=/main/trunk/; revision=7206
* For bug #184566, enable the emerge --info action to run an option pkg_info() ↵Zac Medico2007-07-081-11/+15
| | | | | | function from each installed ebuild. svn path=/main/trunk/; revision=7201