summaryrefslogtreecommitdiffstats
path: root/pym/emerge
Commit message (Collapse)AuthorAgeFilesLines
...
* 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
* Add color classes PROMPT_CHOICE_{DEFAULT,OTHER} for emerge's Yes/No prompt.Zac Medico2007-07-081-1/+5
| | | | svn path=/main/trunk/; revision=7199
* Allow system virtuals to be pruned from the world file in cases where the ↵Zac Medico2007-07-081-3/+7
| | | | | | matched package is the only provider of that virtual. svn path=/main/trunk/; revision=7197
* For bug #184412, make depclean more consistent with the update algorithm by ↵Zac Medico2007-07-081-0/+7
| | | | | | keeping the highest version that as visible in the portage tree and pruning any versions that are either masked or no longer exist in the portage tree. svn path=/main/trunk/; revision=7195
* Now that the "white" color code really is white, alias it to bold where it's ↵Zac Medico2007-07-071-0/+2
| | | | | | used by emerge since white looks bad on a terminal with a white background. svn path=/main/trunk/; revision=7191
* Add a depgaph.loadResumeCommand() method to handle loading and validation of ↵Zac Medico2007-07-071-55/+51
| | | | | | all resume data. svn path=/main/trunk/; revision=7187
* When depgraph updates preferences for old-style virtuals, also update them ↵Zac Medico2007-07-061-1/+6
| | | | | | in the global config so that they are consistent everywhere. Optimize config.setinst() to minimize the work done. svn path=/main/trunk/; revision=7185
* Misc color fixes. Thanks to Arfrever Frehtes Taifersar Arahesis ↵Zac Medico2007-07-061-7/+7
| | | | | | <Arfrever.FTA@GMail.Com> for this patch from bug#183861, comment #9. svn path=/main/trunk/; revision=7183
* Don't exclude system virtuals from world since they can match multiple ↵Zac Medico2007-07-061-2/+10
| | | | | | old-style virtuals but only one of them will be pulled in by update or depclean. svn path=/main/trunk/; revision=7180
* Count the number of merges processed by MergeTask and use that to determine ↵Zac Medico2007-07-061-18/+28
| | | | | | whether or not post_merge() should run. svn path=/main/trunk/; revision=7178
* tighten up --quiet output for --unmergeMike Frysinger2007-07-061-3/+10
| | | | svn path=/main/trunk/; revision=7177
* Remove the PKG_*ARG* color classes in order to simplify things since it's ↵Zac Medico2007-07-061-32/+15
| | | | | | questionable whether many people will want to use them. Also, make the PKG_*SYSTEM colors default to the traditional colors since people are generally most interested in world packages. svn path=/main/trunk/; revision=7174
* Fix emerge by tbz2 path so that it works properly.Zac Medico2007-07-061-4/+4
| | | | svn path=/main/trunk/; revision=7171
* Fix emerge by ebuild path so that it works properly.Zac Medico2007-07-061-5/+17
| | | | svn path=/main/trunk/; revision=7166
* Don't store unslotted system packages in the world file.Zac Medico2007-07-051-9/+17
| | | | svn path=/main/trunk/; revision=7164
* Move depgraph._args_atoms to depgraph._sets["args"] and move ↵Zac Medico2007-07-051-12/+17
| | | | | | depgraph._args_nodes to self._set_nodes. svn path=/main/trunk/; revision=7161
* Remove redundant config update notification (bug #184116)Marius Mauch2007-07-051-3/+2
| | | | svn path=/main/trunk/; revision=7159
* Remove fallback imports for set(), and note minimum requirement of python-2.4Marius Mauch2007-07-051-3/+2
| | | | svn path=/main/trunk/; revision=7157
* Replace sys.exit() with return in depgraph.display() and action_build().Zac Medico2007-07-051-16/+16
| | | | svn path=/main/trunk/; revision=7153
* Make the color class handling for package sets more consistent as suggested ↵Zac Medico2007-07-051-62/+108
| | | | | | in comment #2 of bug #183861. svn path=/main/trunk/; revision=7149
* Fix greedy atoms logic for system mode.Zac Medico2007-07-041-1/+1
| | | | svn path=/main/trunk/; revision=7144
* Record a slot atom in the world file for any atom that is precise enough to ↵Zac Medico2007-07-041-41/+55
| | | | | | identify a specific slot. Make depclean clean unnecessary slots of system and world packages. For update and depclean, world atoms can be greedy with slots while system atoms can not. svn path=/main/trunk/; revision=7142
* Use depgraph._args_nodes to simplify depgraph.saveNomergeFavorites().Zac Medico2007-07-031-37/+14
| | | | svn path=/main/trunk/; revision=7140
* Fix --oneshot handling from the previous commit.Zac Medico2007-07-031-1/+3
| | | | svn path=/main/trunk/; revision=7139
* In depgraph.select_files(), unify favorites handling with the other args ↵Zac Medico2007-07-031-9/+7
| | | | | | handling. svn path=/main/trunk/; revision=7138
* Implement BlockerCache.keys() so that DictMixin.__repr__() works.Zac Medico2007-07-031-0/+7
| | | | svn path=/main/trunk/; revision=7135
* Fix broken favorites handling with --usepkg.Zac Medico2007-07-031-0/+2
| | | | svn path=/main/trunk/; revision=7133
* Add USE to the list of metadata keys to pull.Zac Medico2007-07-031-1/+1
| | | | svn path=/main/trunk/; revision=7132
* Clean up system and world set handling. For forward compatibility, the ↵Zac Medico2007-07-031-112/+228
| | | | | | world file handling now allows the world file to contain arbitrary atoms such as slot atoms. svn path=/main/trunk/; revision=7131