summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* For bug #186386, pass stdin directly to spawned processes (even when their ↵Zac Medico2007-07-252-55/+5
| | | | | | output goes through a pty) so that Ctrl+Z works as on would expect.) svn path=/main/trunk/; revision=7394
* Set O_NONBLOCK just for read calls (uses fewer fcntl calls).Zac Medico2007-07-251-16/+5
| | | | svn path=/main/trunk/; revision=7393
* CACHE_PATH starts with / and therefore isn't compatible with os.path.join().Zac Medico2007-07-251-1/+1
| | | | svn path=/main/trunk/; revision=7392
* Use blocking mode for writes since we'd rather block than trigger a ↵Zac Medico2007-07-251-6/+22
| | | | | | EWOULDBLOCK error. svn path=/main/trunk/; revision=7391
* Use the hardcoded variables from portage.const rather than strings that are ↵Alec Warner2007-07-251-11/+11
| | | | | | apt to change, fix spacing. svn path=/main/trunk/; revision=7390
* Use a select loop for moving input and ouput when logging is enabled in ↵Zac Medico2007-07-251-29/+44
| | | | | | portage.spawn(). svn path=/main/trunk/; revision=7389
* Add droppriv keyword for the depend phase (last one).Zac Medico2007-07-241-1/+1
| | | | svn path=/main/trunk/; revision=7387
* Add droppriv keyword for the depend phase.Zac Medico2007-07-241-1/+1
| | | | svn path=/main/trunk/; revision=7385
* Fix make.conf.example rejects.Zac Medico2007-07-242-12/+13
| | | | svn path=/main/trunk/; revision=7383
* For bug #186337, show an ewarn message if FEATURES=installsources is enabled ↵Zac Medico2007-07-242-0/+14
| | | | | | but debugedit is not installed. Also document installsources and splitdebug in make.conf.example. svn path=/main/trunk/; revision=7381
* Add FEATURES=fakeroot support which causes install and package phases to run ↵Zac Medico2007-07-236-24/+50
| | | | | | inside fakeroot when a non-root user runs the ebuild command. Thanks to swegener for the initial patch. svn path=/main/trunk/; revision=7379
* Add sfperms and strict to the default FEATURES since they're already in the ↵Zac Medico2007-07-231-1/+1
| | | | | | base profile's make.defaults. svn path=/main/trunk/; revision=7377
* Enable FEATURES=userfetch by default.Zac Medico2007-07-231-1/+1
| | | | svn path=/main/trunk/; revision=7375
* Drop privileges in the "depend" phase regardless of FEATURES and RESTRICT ↵Zac Medico2007-07-231-10/+12
| | | | | | since that phase should never need special privileges. Thanks to swegener for the initial patch. svn path=/main/trunk/; revision=7373
* add more tests for keyvaluepairloader (it had a bug previously) and fix up ↵Alec Warner2007-07-232-12/+14
| | | | | | other misc tests svn path=/main/trunk/; revision=7371
* fix broken importAlec Warner2007-07-231-1/+1
| | | | svn path=/main/trunk/; revision=7370
* Fix imports for style, slight optimization for grab* function, doc fixups.Alec Warner2007-07-231-4/+11
| | | | svn path=/main/trunk/; revision=7369
* Validator should be a function, not a class, fix spacing/tab issues. Fix ↵Alec Warner2007-07-233-26/+72
| | | | | | parsing errors for KeyValuePairLoader. Add a GenericFileLoader class that uses more than 1 loader in a vain attempt to figure out what kind of file it is. Fix inheritance by renaming UserConfigKlass svn path=/main/trunk/; revision=7368
* Fix imports for style, deprecate grab*, what is foo.metadata and what does ↵Alec Warner2007-07-231-8/+20
| | | | | | it contain svn path=/main/trunk/; revision=7367
* Move classes out of __init__.py, they do not belong there. Fix import ↵Alec Warner2007-07-235-163/+161
| | | | | | style, and import statements broken by class moves. svn path=/main/trunk/; revision=7366
* Move common file functionality into a FileLoader class and delegate parsing ↵Alec Warner2007-07-232-112/+140
| | | | | | to subclasses via a lineParser func, no idea how this will work performance wise. Fix errors in parser (blank lines are not errors ;)) svn path=/main/trunk/; revision=7365
* fix spacing, comments, default argsAlec Warner2007-07-231-8/+8
| | | | svn path=/main/trunk/; revision=7364
* Fix hardcoded /usr/bin/echo to use portage.process.find_binary().Zac Medico2007-07-221-1/+3
| | | | svn path=/main/trunk/; revision=7363
* fix missing import, default value for value in case we try to .join on a ↵Alec Warner2007-07-222-1/+2
| | | | | | variable that hasn't been assigned to yet svn path=/main/trunk/; revision=7362
* add docstring, fix up imports (style), add keyword expansionAlec Warner2007-07-221-1/+15
| | | | svn path=/main/trunk/; revision=7361
* add test for CommandOutputSetAlec Warner2007-07-223-0/+26
| | | | svn path=/main/trunk/; revision=7360
* For bug #184774, put lha's -q option last since otherwise the option parser ↵Zac Medico2007-07-221-1/+1
| | | | | | now requires level 0, 1, or 2 to be specified. svn path=/main/trunk/; revision=7358
* Fix spacing issues, importsAlec Warner2007-07-221-16/+17
| | | | svn path=/main/trunk/; revision=7357
* Add notes about import statements (clarity) and fix spelling error in ↵Alec Warner2007-07-222-1/+38
| | | | | | release-notes svn path=/main/trunk/; revision=7356
* remove unused vars from xpak, fix bug in compose. Also fix tests for ↵Alec Warner2007-07-222-4/+4
| | | | | | portage sets, fix misnamed variable. svn path=/main/trunk/; revision=7355
* Run pychecker over everything, fix obvious thing slike modules not in use, ↵Alec Warner2007-07-226-26/+28
| | | | | | variables not being used, or global exceptions not being deleted. Also fix imports for style (1 per line) svn path=/main/trunk/; revision=7354
* 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-222-22/+40
| | | | 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
* For bug #169500, detect when the cvs server puts /Attic/ inside the $Header ↵Zac Medico2007-07-211-0/+17
| | | | | | path and automatically correct it. svn path=/main/trunk/; revision=7340
* For bug #185153, in commit mode do the "Fetching trivial updates" routine ↵Zac Medico2007-07-211-38/+44
| | | | | | before the qa scan. svn path=/main/trunk/; revision=7338
* 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
* For bug #185930, direct all FETCHCOMMAND output to stdout.Zac Medico2007-07-211-0/+8
| | | | svn path=/main/trunk/; revision=7330
* Optimize PackageSet._updateAtomMap() for the case where one or more atoms ↵Zac Medico2007-07-211-4/+7
| | | | | | are added and none are removed. svn path=/main/trunk/; revision=7329
* 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
* When digest verification of a distfile fails, rename instead of unlinking it ↵Zac Medico2007-07-211-5/+18
| | | | | | in case it's a large download and the user wants to salvage it due to a bad digest. svn path=/main/trunk/; revision=7325
* If the fetcher reported success and the file is too small, don't attempt to ↵Zac Medico2007-07-201-2/+10
| | | | | | resume. Upstream probably changed the distfile and we need to show a digest verification failure so the user gets a clue. svn path=/main/trunk/; revision=7321
* For bug #185504, document profiles/repo_name.Zac Medico2007-07-201-0/+6
| | | | svn path=/main/trunk/; revision=7319
* 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