summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Document --prune and --depclean enhancements.Zac Medico2007-07-201-0/+6
| | | | svn path=/main/trunk/; revision=7317
* Update --prune docs for bug #151653.Zac Medico2007-07-202-7/+5
| | | | 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-182-16/+78
| | | | | | will be used if the --nodeps option is specified. svn path=/main/trunk/; revision=7305
* Iterate over a list in order to avoid breaking the iterator when an atom is ↵Zac Medico2007-07-171-1/+1
| | | | | | removed. svn path=/main/trunk/; revision=7303
* Use PackageSet.getAtoms() as a wrapper around load() since load() can ↵Zac Medico2007-07-171-6/+2
| | | | | | trigger unnecessary stat calls. svn path=/main/trunk/; revision=7302
* Make PackageSet._updateAtomMap() clear the map in case something was removed.Zac Medico2007-07-171-0/+1
| | | | svn path=/main/trunk/; revision=7301
* Use PF in dyn_package. Thanks to swegener.Zac Medico2007-07-171-1/+1
| | | | svn path=/main/trunk/; revision=7300
* 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
* Make sure the atoms are loaded when calling PackageSet.findAtomForPackage().Zac Medico2007-07-171-0/+1
| | | | svn path=/main/trunk/; revision=7289
* Make sure PackageSet._atoms is always a set.Zac Medico2007-07-171-1/+1
| | | | svn path=/main/trunk/; revision=7288
* 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
* Sort the atoms when writing the world file.Zac Medico2007-07-161-1/+1
| | | | svn path=/main/trunk/; revision=7285
* Replace emerge.WorldSet with portage.sets.files.WorldSetMarius Mauch2007-07-161-36/+6
| | | | svn path=/main/trunk/; revision=7283
* break another recursion cycle, add special subclass for "world" to handle ↵Marius Mauch2007-07-162-4/+24
| | | | | | locking svn path=/main/trunk/; revision=7282
* Replace emerge.SystemSet with portage.sets.profiles.PackagesSystemSetMarius Mauch2007-07-161-7/+3
| | | | svn path=/main/trunk/; revision=7281
* break recursion cycleMarius Mauch2007-07-161-2/+5
| | | | svn path=/main/trunk/; revision=7280
* replace emerge.AtomSet with portage.sets.InternalPackageSetMarius Mauch2007-07-163-89/+104
| | | | svn path=/main/trunk/; revision=7279
* disable FEATURES=gpg as it's unmaintained, useless and likely broken for ↵Marius Mauch2007-07-161-0/+3
| | | | | | many people svn path=/main/trunk/; revision=7278
* fix metadata parsing for file-based sets, add support for user-defined file ↵Marius Mauch2007-07-162-3/+17
| | | | | | sets in test code svn path=/main/trunk/; revision=7277
* add support for metadataMarius Mauch2007-07-166-4/+43
| | | | svn path=/main/trunk/; revision=7276
* ignore already applied glsas when loading the security setMarius Mauch2007-07-163-8/+33
| | | | svn path=/main/trunk/; revision=7275
* fix load logic for editable sets once moreMarius Mauch2007-07-161-3/+5
| | | | svn path=/main/trunk/; revision=7274
* use a more logical approach for editable setsMarius Mauch2007-07-162-47/+46
| | | | svn path=/main/trunk/; revision=7273
* Make PackageSet to behave more like a real set, and change loading logic a ↵Marius Mauch2007-07-162-9/+24
| | | | | | bit to avoid unnecessary reloads for editable sets svn path=/main/trunk/; revision=7272
* s/node/atom/ and other minor updatesMarius Mauch2007-07-166-44/+70
| | | | svn path=/main/trunk/; revision=7271
* sync MAILSUBJECT in make.conf with make.globalsMarius Mauch2007-07-161-1/+1
| | | | svn path=/main/trunk/; revision=7270
* split up the debug/sources steps as proposed by swegener and give the whole ↵Mike Frysinger2007-07-151-50/+64
| | | | | | file a cleanup svn path=/main/trunk/; revision=7267
* 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
* PDEPEND is now installed as soon as possible so that it behaves more like ↵Zac Medico2007-07-141-0/+3
| | | | | | RDEPEND. svn path=/main/trunk/; revision=7251
* 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
* Save the repo name along with the other metadata inside dyn_compile() so ↵Zac Medico2007-07-133-15/+11
| | | | | | that it's saved inside binary packages for when they are finally merged. svn path=/main/trunk/; revision=7247