summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Remove a duplicate % character.Zac Medico2007-01-121-1/+1
| | | | svn path=/main/trunk/; revision=5593
* Fix incremental virtuals code for the new stricter catpkgsplit behavior.Zac Medico2007-01-121-1/+5
| | | | svn path=/main/trunk/; revision=5592
* Prevent an InvalidData exception during global updates due to the new ↵Zac Medico2007-01-121-1/+7
| | | | | | stricter catpkgsplit behavior. svn path=/main/trunk/; revision=5591
* For bug #88485, show the location of the build log whenever a build fails.Zac Medico2007-01-121-0/+1
| | | | svn path=/main/trunk/; revision=5590
* Return early from finddigest if findname2 found nothing.Zac Medico2007-01-121-0/+2
| | | | svn path=/main/trunk/; revision=5589
* FIx a bunch of random Except: statements in portage.py, most of them are ↵Alec Warner2007-01-121-27/+9
| | | | | | IO/OS related svn path=/main/trunk/; revision=5588
* os.cwd can return OSError (maybe IOError with wrong perms for ./, will test ↵Alec Warner2007-01-121-30/+11
| | | | | | actually), load_mod should be IMportError, nuke a stupid try except around shuffle which used to break years ago with old glibcs, remove try except around what appears to be a regex? and make the try except around the unlink a bit cleaner svn path=/main/trunk/; revision=5587
* EOFError is also important according to ZacAlec Warner2007-01-121-1/+1
| | | | svn path=/main/trunk/; revision=5586
* getbinpkg.py fix except: open can be IOERror or OSError and cPickle can ↵Alec Warner2007-01-121-3/+1
| | | | | | throw an unpicklingError svn path=/main/trunk/; revision=5585
* comment the excepts in a few placesAlec Warner2007-01-123-3/+3
| | | | svn path=/main/trunk/; revision=5584
* Fix broad except statement, should only be KeyErrorAlec Warner2007-01-121-1/+1
| | | | svn path=/main/trunk/; revision=5583
* portage_versions.py, more string.atoi -> int, fix another except: that ↵Alec Warner2007-01-121-10/+10
| | | | | | should be ValueError svn path=/main/trunk/; revision=5582
* Change vercmp to use int() instead of string atoi, catch ValueError in pkgcmpAlec Warner2007-01-122-6/+4
| | | | svn path=/main/trunk/; revision=5581
* For bug #147512, don't print a cryptic error message when an ↵Zac Medico2007-01-122-10/+25
| | | | | | EnvironmentError occurs. Also, allow the user to get a traceback via --debug. svn path=/main/trunk/; revision=5580
* drop lazy bindings check once and for all ... the system ldso should have ↵Mike Frysinger2007-01-121-14/+0
| | | | | | the logic #71609 svn path=/main/trunk/; revision=5579
* Fix ebuild environment color.map support so that it works properly through ↵Zac Medico2007-01-122-8/+12
| | | | | | exec calls (since the color variables can not be directly exported due to env pollution). svn path=/main/trunk/; revision=5578
* Allow catpkgsplit to be less strict for atoms that come from installed ↵Zac Medico2007-01-111-1/+3
| | | | | | packages (for backward compatibility). svn path=/main/trunk/; revision=5577
* use cached suffix value and if it is not valid, lets warnMike Frysinger2007-01-111-2/+5
| | | | svn path=/main/trunk/; revision=5576
* dont compress files that are already compressed and dont do sanity checking ↵Mike Frysinger2007-01-111-8/+3
| | | | | | on the link dest as we cant properly verify things like absolute symlinks svn path=/main/trunk/; revision=5575
* Use a global to ensure that the valid_category regex is cached.Zac Medico2007-01-111-2/+4
| | | | svn path=/main/trunk/; revision=5574
* SpanKY likes the latin categoriesAlec Warner2007-01-111-1/+1
| | | | svn path=/main/trunk/; revision=5573
* learn to spellAlec Warner2007-01-111-1/+1
| | | | svn path=/main/trunk/; revision=5572
* Handle the exception in isvalidatom, change it to use a portage exceptoin, ↵Alec Warner2007-01-113-9/+10
| | | | | | thanks to Zac for pointing this out svn path=/main/trunk/; revision=5571
* Fix comments for catpkgsplitAlec Warner2007-01-111-1/+2
| | | | svn path=/main/trunk/; revision=5570
* catch and validate new ValueError ExceptionAlec Warner2007-01-111-3/+6
| | | | svn path=/main/trunk/; revision=5569
* Valid categories in catpkgsplitAlec Warner2007-01-111-1/+19
| | | | svn path=/main/trunk/; revision=5568
* print the incorrect atomAlec Warner2007-01-111-1/+2
| | | | svn path=/main/trunk/; revision=5567
* add some invalid ops to getcpv to make sure it returns the cpv stillAlec Warner2007-01-111-0/+6
| | | | svn path=/main/trunk/; revision=5566
* For bug #50738, inform the user about the location of the timestamp file and ↵Zac Medico2007-01-111-0/+4
| | | | | | that it can be removed to force sync. svn path=/main/trunk/; revision=5565
* isjustname testsAlec Warner2007-01-111-0/+25
| | | | svn path=/main/trunk/; revision=5564
* elaborate a bit on isjustname()Alec Warner2007-01-111-1/+1
| | | | svn path=/main/trunk/; revision=5563
* getslot testsAlec Warner2007-01-111-0/+27
| | | | svn path=/main/trunk/; revision=5562
* I owed brian harring 3.50, for th previous advice about ↵Alec Warner2007-01-111-0/+25
| | | | | | assertEqual/NotEqual, oh, add dep_getcpv tests too svn path=/main/trunk/; revision=5561
* take some advice and use AssertEqual/NotEqualAlec Warner2007-01-117-24/+11
| | | | svn path=/main/trunk/; revision=5560
* add some invalid operators to the test to denote that get_operator doesn't ↵Alec Warner2007-01-111-1/+4
| | | | | | validate them, also make sure some common mis-typed things are tested (=> instead of >= fex) svn path=/main/trunk/; revision=5559
* get_operator testsAlec Warner2007-01-111-0/+27
| | | | svn path=/main/trunk/; revision=5558
* Commit unit tests, hey look THEY ARE BROKENAlec Warner2007-01-112-0/+49
| | | | svn path=/main/trunk/; revision=5557
* docs for grabdictAlec Warner2007-01-111-1/+21
| | | | svn path=/main/trunk/; revision=5556
* add support for user-customizable compression #9870Mike Frysinger2007-01-1110-126/+154
| | | | svn path=/main/trunk/; revision=5555
* Use dict.get() to prevent a potential (bug unlikely) KeyError.Zac Medico2007-01-111-4/+4
| | | | svn path=/main/trunk/; revision=5554
* Use isinstance(foo, basestring) so that it can work with unicode strings too.Zac Medico2007-01-111-1/+1
| | | | svn path=/main/trunk/; revision=5553
* Add note that any value enables EPAUSE_IGNOREMarius Mauch2007-01-111-0/+1
| | | | svn path=/main/trunk/; revision=5552
* Make FEATURES=test imply USE=testMarius Mauch2007-01-111-0/+5
| | | | svn path=/main/trunk/; revision=5551
* continue is only for loopsMarius Mauch2007-01-111-1/+1
| | | | svn path=/main/trunk/; revision=5550
* add stack_lists checksAlec Warner2007-01-111-1/+12
| | | | svn path=/main/trunk/; revision=5549
* Extend ignore filter for grablines (bug #144445)Marius Mauch2007-01-111-1/+3
| | | | svn path=/main/trunk/; revision=5548
* More portage_util testsAlec Warner2007-01-113-6/+98
| | | | svn path=/main/trunk/; revision=5547
* Don't escape strings in PortageException as that breaks newline handling ↵Marius Mauch2007-01-111-1/+4
| | | | | | (bug 147785) svn path=/main/trunk/; revision=5546
* Rename 'Last Sync' to 'Timestamp of tree' to clarify the meaning (bug #150051)Marius Mauch2007-01-111-1/+1
| | | | svn path=/main/trunk/; revision=5545
* Add 'stricter' description, misc typo fixes, patch by Max Lorenz (bug #153755)Marius Mauch2007-01-111-6/+9
| | | | svn path=/main/trunk/; revision=5544