summaryrefslogtreecommitdiffstats
path: root/pym/emerge
Commit message (Collapse)AuthorAgeFilesLines
* Fix existing_node logic inside depgraph.create().Zac Medico2007-08-161-20/+15
| | | | svn path=/main/trunk/; revision=7628
* Combine 2 locations in depgraph.create() where nodes are added to the ↵Zac Medico2007-08-161-19/+14
| | | | | | digraph. This ensures that dependencies on "rebuild" nodes always have their priority increased. svn path=/main/trunk/; revision=7627
* Always assign higher priority to dependencies on packages that are being ↵Zac Medico2007-08-161-11/+13
| | | | | | rebuilt (except when --emptytree is enabled since all packages are merged in that case). This optimizes merge order so that dependencies are rebuilt/updated as soon as possible. svn path=/main/trunk/; revision=7625
* For bug #188782, dependencies on packages specified as arguments are given ↵Zac Medico2007-08-151-24/+39
| | | | | | higher priority since the currently installed version has been rendered useless by ABI breakage. It's okay to increase the priority here even if the caller is not revdep-rebuild. svn path=/main/trunk/; revision=7604
* Make sure to skip info dir files with the .old extension.Zac Medico2007-08-141-1/+2
| | | | svn path=/main/trunk/; revision=7602
* For bug #188782, keep "nomerge" nodes in the graph during the merge order ↵Zac Medico2007-08-141-4/+2
| | | | | | calculation so that merge order is better in cases where installed packages have unsatisfied dependencies. svn path=/main/trunk/; revision=7599
* For bug #33585, leave the old info dir file in place if there is nothing to ↵Zac Medico2007-08-121-9/+35
| | | | | | generate. svn path=/main/trunk/; revision=7593
* Update emerge --help and --info docs. Thanks to Arfrever Frehtes Taifersar ↵Zac Medico2007-08-061-1/+1
| | | | | | Arahesis in bug #137483. svn path=/main/trunk/; revision=7583
* For bug #187806, use mkstemp to create tmpservertimestampfile (instead of ↵Zac Medico2007-08-051-4/+4
| | | | | | using PORTAGE_TMPDIR). svn path=/main/trunk/; revision=7576
* Use == for comparison of portage_node since digraph.clone() makes a deepcopy ↵Zac Medico2007-08-041-1/+1
| | | | | | of the nodes. svn path=/main/trunk/; revision=7574
* Make sure that portage always has all of it's RDEPENDs installed first.Zac Medico2007-08-041-0/+7
| | | | svn path=/main/trunk/; revision=7572
* Make config updates get counted correctly for bug #187741.Zac Medico2007-08-041-1/+4
| | | | svn path=/main/trunk/; revision=7564
* Like older versions of portage, don't show the repo display if [0] is all ↵Zac Medico2007-08-011-2/+4
| | | | | | that will be shown. svn path=/main/trunk/; revision=7537
* For bug #187375, handle an ImportError when portage is downgraded to a ↵Zac Medico2007-08-011-2/+6
| | | | | | version without mod_echo. svn path=/main/trunk/; revision=7535
* Change the numeric value of DepPriority.MIN to be equal to that of a ↵Zac Medico2007-07-311-2/+2
| | | | | | satisfied PDEPEND since there is currently nothing with lower priority. svn path=/main/trunk/; revision=7528
* For bug #187142, properly pass a dbapi instance into setcpv() so that ↵Zac Medico2007-07-301-1/+1
| | | | | | USE_EXPAND wildcards work correctly. svn path=/main/trunk/; revision=7524
* Always pass a dbapi instance into a setcpv call.Zac Medico2007-07-301-1/+1
| | | | svn path=/main/trunk/; revision=7496
* For bug #137483, move the `emerge --help config` docs to the emerge man ↵Zac Medico2007-07-302-46/+3
| | | | | | page. Thanks to Arfrever Frehtes Taifersar Arahesis for this patch. svn path=/main/trunk/; revision=7430
* For bug #186480, while we transition to repository labels, avoid ? spam in ↵Zac Medico2007-07-271-1/+5
| | | | | | the repository display by ignoring a missing repository label for an installed package. (branches/2.1.2 r7409) svn path=/main/trunk/; revision=7410
* For bug #186826, always show --newuse flags that trigger reinstallation even ↵Zac Medico2007-07-271-16/+24
| | | | | | when not in --verbose mode. svn path=/main/trunk/; revision=7407
* For --buildpkgonly, say "built" instead of "merged" in the "These are the ↵Zac Medico2007-07-271-0/+2
| | | | | | packages that would be <action>" message. svn path=/main/trunk/; revision=7405
* For bug #186610, use `find <path>` to scan for config updates since `cd ↵Zac Medico2007-07-261-5/+5
| | | | | | <path>` could fail and cause the cwd to be scanned. svn path=/main/trunk/; revision=7402
* 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