summaryrefslogtreecommitdiffstats
path: root/pym
Commit message (Collapse)AuthorAgeFilesLines
* Fix another typo.Zac Medico2007-01-121-1/+1
| | | | svn path=/main/trunk/; revision=5609
* Fix more typos.Zac Medico2007-01-121-2/+2
| | | | svn path=/main/trunk/; revision=5608
* purge string from portage.py, fix minor bug in portage_utilAlec Warner2007-01-122-42/+41
| | | | svn path=/main/trunk/; revision=5604
* another annoy space bugAlec Warner2007-01-121-1/+1
| | | | svn path=/main/trunk/; revision=5602
* Fix typos from the previous commit.Zac Medico2007-01-121-2/+2
| | | | svn path=/main/trunk/; revision=5599
* Use startswith and endswith to simplify code.Zac Medico2007-01-121-3/+3
| | | | svn path=/main/trunk/; revision=5598
* more string deprecationAlec Warner2007-01-125-20/+19
| | | | svn path=/main/trunk/; revision=5595
* Begin the deprecation of the string moduleAlec Warner2007-01-122-16/+15
| | | | svn path=/main/trunk/; revision=5594
* 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
* 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-121-10/+23
| | | | | | EnvironmentError occurs. Also, allow the user to get a traceback via --debug. svn path=/main/trunk/; revision=5580
* Fix ebuild environment color.map support so that it works properly through ↵Zac Medico2007-01-121-1/+3
| | | | | | 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 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-112-3/+8
| | | | | | 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
* Valid categories in catpkgsplitAlec Warner2007-01-111-1/+19
| | | | svn path=/main/trunk/; revision=5568
* elaborate a bit on isjustname()Alec Warner2007-01-111-1/+1
| | | | svn path=/main/trunk/; revision=5563
* docs for grabdictAlec Warner2007-01-111-1/+21
| | | | svn path=/main/trunk/; revision=5556
* 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
* 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
* Extend ignore filter for grablines (bug #144445)Marius Mauch2007-01-111-1/+3
| | | | svn path=/main/trunk/; revision=5548
* 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
* Use startwith to simplify =* matching.Zac Medico2007-01-101-2/+1
| | | | svn path=/main/trunk/; revision=5521
* Minor fixes for the =* operator (I hope we're done now :).Zac Medico2007-01-101-3/+6
| | | | svn path=/main/trunk/; revision=5520
* I hate this thingMarius Mauch2007-01-101-1/+4
| | | | svn path=/main/trunk/; revision=5519
* minor performance improvementMarius Mauch2007-01-101-5/+5
| | | | svn path=/main/trunk/; revision=5518
* also sanitize mycpv for =* handlingMarius Mauch2007-01-101-0/+2
| | | | svn path=/main/trunk/; revision=5517
* =* operator sucksMarius Mauch2007-01-101-8/+5
| | | | svn path=/main/trunk/; revision=5516
* Documenting the loop a bitMarius Mauch2007-01-101-0/+3
| | | | svn path=/main/trunk/; revision=5515
* Make the =* operator more robustMarius Mauch2007-01-101-2/+7
| | | | svn path=/main/trunk/; revision=5514
* Attach the problematic data to the exception for debuggingMarius Mauch2007-01-101-1/+1
| | | | svn path=/main/trunk/; revision=5513
* Stupid me, shouldn't jsut move a part of the patchMarius Mauch2007-01-102-13/+12
| | | | svn path=/main/trunk/; revision=5512
* Always use vercmp for cpv comparisonsMarius Mauch2007-01-102-4/+15
| | | | svn path=/main/trunk/; revision=5511
* create symlinks to html documentation if DOC_SYMLINK_DIR is set, original ↵Marius Mauch2007-01-101-1/+1
| | | | | | patch by TGL <degrenier@easyconnect.fr> (bug #67130) svn path=/main/trunk/; revision=5509
* make.globals has no business in profilesMarius Mauch2007-01-101-3/+1
| | | | svn path=/main/trunk/; revision=5508