summaryrefslogtreecommitdiff
path: root/pym
Commit message (Expand)AuthorAgeFilesLines
...
* Fix imports for style, deprecate grab*, what is foo.metadata and what does it...Alec Warner2007-07-231-8/+20
* Move classes out of __init__.py, they do not belong there. Fix import style,...Alec Warner2007-07-235-163/+161
* Move common file functionality into a FileLoader class and delegate parsing t...Alec Warner2007-07-232-112/+140
* fix spacing, comments, default argsAlec Warner2007-07-231-8/+8
* Fix hardcoded /usr/bin/echo to use portage.process.find_binary().Zac Medico2007-07-221-1/+3
* fix missing import, default value for value in case we try to .join on a vari...Alec Warner2007-07-222-1/+2
* add docstring, fix up imports (style), add keyword expansionAlec Warner2007-07-221-1/+15
* add test for CommandOutputSetAlec Warner2007-07-223-0/+26
* Fix spacing issues, importsAlec Warner2007-07-221-16/+17
* remove unused vars from xpak, fix bug in compose. Also fix tests for portage...Alec Warner2007-07-222-4/+4
* Run pychecker over everything, fix obvious thing slike modules not in use, va...Alec Warner2007-07-226-26/+28
* Fix the reverse dependency display for --prune when there is now real parent.Zac Medico2007-07-221-0/+5
* Make --update imply --oneshot since people often us it to update things when ...Zac Medico2007-07-221-1/+3
* Document --depclean and --prune enhancements.Zac Medico2007-07-221-9/+19
* Prevent a potential KeyError when removing world from the digraph for --prune...Zac Medico2007-07-221-1/+2
* Make --prune pull in the system set since that could pull in some slots that ...Zac Medico2007-07-221-0/+3
* Make --prune and --depclean return before calculating dependencies if atoms a...Zac Medico2007-07-211-0/+9
* Prune really uses all installed instead of world. It's not a real reverse de...Zac Medico2007-07-211-0/+3
* Just show [0] instead of [0=>0] in the repo display.Zac Medico2007-07-211-3/+6
* For bug #185930, direct all FETCHCOMMAND output to stdout.Zac Medico2007-07-211-0/+8
* Optimize PackageSet._updateAtomMap() for the case where one or more atoms are...Zac Medico2007-07-211-4/+7
* Hint about --nodeps if --prune doesn't find anything to prune. Also enable r...Zac Medico2007-07-211-1/+7
* When digest verification of a distfile fails, rename instead of unlinking it ...Zac Medico2007-07-211-5/+18
* If the fetcher reported success and the file is too small, don't attempt to r...Zac Medico2007-07-201-2/+10
* Update --prune docs for bug #151653.Zac Medico2007-07-201-1/+1
* Fix --prune so that it always correctly accounts for COUNTER when dealing wit...Zac Medico2007-07-201-3/+4
* For bug #151653, make --prune keep the highest version whenever possible (eve...Zac Medico2007-07-201-2/+24
* Make --prune try to prune all slotted packages if no atoms are given (that's ...Zac Medico2007-07-191-0/+5
* Make --prune bail out like depclean does if there are unresolved dependencies...Zac Medico2007-07-191-2/+5
* With --prune and --depclean, if --verbose is enabled then show reverse depend...Zac Medico2007-07-191-4/+26
* Allow atoms to be specified for --depclean so that it can be used to safely u...Zac Medico2007-07-181-5/+38
* Use the --depclean algorithm to make --prune safe. The old unsafe --prune wi...Zac Medico2007-07-182-16/+78
* Iterate over a list in order to avoid breaking the iterator when an atom is r...Zac Medico2007-07-171-1/+1
* Use PackageSet.getAtoms() as a wrapper around load() since load() can trigger...Zac Medico2007-07-171-6/+2
* Make PackageSet._updateAtomMap() clear the map in case something was removed.Zac Medico2007-07-171-0/+1
* Unify USE handling in the depgraph with the other metadata.Zac Medico2007-07-171-19/+15
* For bug #185670, make sure package.use.{mask,force} are properly displayed.Zac Medico2007-07-171-0/+1
* When expanding ambiguous atoms against the vardb, make sure the the expanded ...Zac Medico2007-07-171-2/+5
* When dep_expand throws a ValueError due to an ambiguous atom, try to expand i...Zac Medico2007-07-171-4/+11
* Don't show the repo display when the package list is empty.Zac Medico2007-07-171-1/+2
* Make sure the atoms are loaded when calling PackageSet.findAtomForPackage().Zac Medico2007-07-171-0/+1
* Make sure PackageSet._atoms is always a set.Zac Medico2007-07-171-1/+1
* Revert PackageSet.containsCPV() calls back to findAtomForPackage() calls so t...Zac Medico2007-07-171-5/+5
* Always be sure to load the latest version of the world file while it's locked.Zac Medico2007-07-171-1/+3
* Sort the atoms when writing the world file.Zac Medico2007-07-161-1/+1
* Replace emerge.WorldSet with portage.sets.files.WorldSetMarius Mauch2007-07-161-36/+6
* break another recursion cycle, add special subclass for "world" to handle loc...Marius Mauch2007-07-162-4/+24
* Replace emerge.SystemSet with portage.sets.profiles.PackagesSystemSetMarius Mauch2007-07-161-7/+3
* break recursion cycleMarius Mauch2007-07-161-2/+5
* replace emerge.AtomSet with portage.sets.InternalPackageSetMarius Mauch2007-07-163-89/+104