summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Make sure stderr is flushed since os._exit doesn't flush stdio buffers.Zac Medico2007-01-031-0/+1
| | | | svn path=/main/trunk/; revision=5454
* Use os._exit instead of sys.exit in a forked child process.Zac Medico2007-01-031-1/+1
| | | | svn path=/main/trunk/; revision=5453
* When using the spawn's returnpid parameter, manually remove the returned ↵Zac Medico2007-01-031-0/+1
| | | | | | pids from portage_exec.spawned_pids. svn path=/main/trunk/; revision=5452
* undoMarius Mauch2007-01-035-1280/+0
| | | | svn path=/main/trunk/; revision=5451
* Allow - in elog module namesMarius Mauch2007-01-036-0/+1282
| | | | svn path=/main/trunk/; revision=5450
* add support for scanning of build logs for common issues #111436Mike Frysinger2007-01-033-7/+98
| | | | svn path=/main/trunk/; revision=5449
* Try to create DISTDIR before disabling fetch due to it's nonexistence. ↵Zac Medico2007-01-021-7/+7
| | | | | | Thanks to astinus for reporting. svn path=/main/trunk/; revision=5448
* Optimize dep_zapdeps to work without a vartree when called by repoman.Zac Medico2007-01-022-8/+15
| | | | svn path=/main/trunk/; revision=5444
* Don't bother to list the contents of directories before they are unmerged ↵Zac Medico2007-01-021-14/+5
| | | | | | since it triggers unnecessary stat calls. Thanks to James Cloos <cloos@jhcloos.com> for reporting. svn path=/main/trunk/; revision=5443
* merge all of the QA related checks togetherMike Frysinger2007-01-022-91/+96
| | | | svn path=/main/trunk/; revision=5442
* Fix the writemsg noiselevel from the previous commit.Zac Medico2007-01-021-1/+1
| | | | svn path=/main/trunk/; revision=5441
* For bug #159638, fix the UnboundLocalError in vartree.getprovide().Zac Medico2007-01-021-5/+8
| | | | svn path=/main/trunk/; revision=5440
* For bug #159224, use separate xmatch caches for each value of ACCEPT_KEYWORDS.Zac Medico2006-12-311-5/+11
| | | | svn path=/main/trunk/; revision=5438
* Use slot atom matching to simplify detection of downgrades relative to ↵Zac Medico2006-12-311-14/+12
| | | | | | installed packages. svn path=/main/trunk/; revision=5437
* For bug #159518, increase the "database is locked" timeout.Zac Medico2006-12-311-1/+7
| | | | svn path=/main/trunk/; revision=5434
* Send errors in elog_process() to stderr via writemsg.Zac Medico2006-12-311-4/+6
| | | | svn path=/main/trunk/; revision=5433
* Use return values instead of direct sys.exit(123) calls when a merge fails.Zac Medico2006-12-302-21/+13
| | | | svn path=/main/trunk/; revision=5432
* Use a try/finally block to ensure that the alarm will always be cancelled ↵Zac Medico2006-12-301-2/+4
| | | | | | appropriately. svn path=/main/trunk/; revision=5431
* For bug #141361, use an alarm signal to implement a 1 minute timeout for ↵Zac Medico2006-12-301-0/+9
| | | | | | processing inside an elog module. svn path=/main/trunk/; revision=5430
* Correct the package.mask lookup order in getmaskingreason().Zac Medico2006-12-301-4/+4
| | | | svn path=/main/trunk/; revision=5429
* For bug #151326, prevent invalid comments from being returned by ↵Zac Medico2006-12-301-3/+10
| | | | | | portage.getmaskingreason(). svn path=/main/trunk/; revision=5428
* Punt the abort_unpack() handler since it's pointless anyway.Zac Medico2006-12-301-10/+0
| | | | svn path=/main/trunk/; revision=5425
* Fix 'TypeError: unpack non-sequence' that occurs if myparent is None.Zac Medico2006-12-301-1/+4
| | | | svn path=/main/trunk/; revision=5424
* Do some small fixes to prevent slot collision nodes from interfering with ↵Zac Medico2006-12-301-2/+8
| | | | | | the depgraph. svn path=/main/trunk/; revision=5423
* Improve the logic for bug #159360 to ensure that an actual upgrade is ↵Zac Medico2006-12-301-6/+9
| | | | | | selected without any downgrades. svn path=/main/trunk/; revision=5422
* Be slightly more defensive when loading the vdb/blockers caches.Zac Medico2006-12-302-3/+4
| | | | svn path=/main/trunk/; revision=5421
* Sort the --info USE flags for bug #159161.Zac Medico2006-12-301-0/+2
| | | | svn path=/main/trunk/; revision=5420
* For bug #159360, make sure that the highest available new-style virtual is ↵Zac Medico2006-12-301-11/+48
| | | | | | selected even if it has depes that aren't already installed. svn path=/main/trunk/; revision=5419
* detect incorrect absolute symlinks in libdirsMike Frysinger2006-12-301-3/+13
| | | | svn path=/main/trunk/; revision=5418
* fixup styleMike Frysinger2006-12-301-5/+7
| | | | svn path=/main/trunk/; revision=5417
* Send stuff that's not a warning or error to stdout rather than stderr.Zac Medico2006-12-291-1/+3
| | | | svn path=/main/trunk/; revision=5416
* - keep things quiet when uninstallingNed Ludd2006-12-291-2/+1
| | | | svn path=/main/trunk/; revision=5415
* Do some minor cleanup in the dep_zapdeps downgrade avoidance logic (while ↵Zac Medico2006-12-291-9/+9
| | | | | | working toward a fix for bug #159360). svn path=/main/trunk/; revision=5414
* For bug #159310, don't show a slot collision notice if there are ↵Zac Medico2006-12-291-4/+28
| | | | | | unresolvable blockers. svn path=/main/trunk/; revision=5413
* Add some docs for the blockers cache format.Zac Medico2006-12-291-1/+9
| | | | svn path=/main/trunk/; revision=5412
* For bug #159161, make emerge --info show USE_EXPAND flags similar to the way ↵Zac Medico2006-12-291-2/+18
| | | | | | it does in merge list output. svn path=/main/trunk/; revision=5411
* Use a pickle to cache blockers for all installed packages so that dep_check ↵Zac Medico2006-12-291-6/+115
| | | | | | doesn't have to be called for every single installed package on every invocation of emerge. svn path=/main/trunk/; revision=5410
* For bug #159295 and python-2.3 compatibility, don't assume that dict.update ↵Zac Medico2006-12-281-1/+2
| | | | | | can use an iterable. svn path=/main/trunk/; revision=5409
* For bug #159252, don't preserve file attributes when copying files for ↵Zac Medico2006-12-281-1/+1
| | | | | | installsources. Thanks to Ed Catmur <ed@catmur.co.uk> for this patch. svn path=/main/trunk/; revision=5408
* Make vardbapi.cpv_counter() use aux_get for caching.Zac Medico2006-12-281-0/+4
| | | | svn path=/main/trunk/; revision=5407
* Make vartree.getslot() use the dbapi for aux_get caching.Zac Medico2006-12-281-7/+3
| | | | svn path=/main/trunk/; revision=5406
* Allow the list of keys cached by the vardb to change without forcing a cache ↵Zac Medico2006-12-281-0/+4
| | | | | | version bump. svn path=/main/trunk/; revision=5405
* Update emerge --metadata docs for more clarity.Zac Medico2006-12-282-8/+13
| | | | svn path=/main/trunk/; revision=5404
* Make portdbapi.flush_cache() consistent with vardbapi.flush_cache().Zac Medico2006-12-281-3/+2
| | | | svn path=/main/trunk/; revision=5403
* Use a pickle to cache vdb metadata. This greatly improves the performance ↵Zac Medico2006-12-282-0/+96
| | | | | | for loading the vdb when the buffer cache is cold. svn path=/main/trunk/; revision=5402
* try to give the emerge manpage a facelift, upgrade clean and prune docs, ↵Alec Warner2006-12-281-39/+42
| | | | | | change 'dependency' to 'atom', other minor fixes svn path=/main/trunk/; revision=5401
* Allow dep_check to use the global db for compatibility (fixes python-updater ↵Zac Medico2006-12-271-1/+2
| | | | | | breakage). svn path=/main/trunk/; revision=5398
* Make _setitem do a deepcopy just in case.Zac Medico2006-12-261-1/+3
| | | | svn path=/main/trunk/; revision=5394
* For bug #148603, when an ebuild dies, print eclasses that are from overlays. ↵Zac Medico2006-12-251-0/+16
| | | | | | Thanks to Alec Warner for the initial patch. svn path=/main/trunk/; revision=5392
* Use a SIGTERM signal to support a die call inside of a subshell.Zac Medico2006-12-251-0/+7
| | | | svn path=/main/trunk/; revision=5391