summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* fix tabs with patch from Grobian and bug # 161911, fix developing a bitAlec Warner2007-01-136-21/+17
| | | | svn path=/main/trunk/; revision=5633
* make sure people call addread/addwrite/adddeny/addpredict correctlyMike Frysinger2007-01-131-0/+4
| | | | svn path=/main/trunk/; revision=5632
* Catch InvalidData exceptions for bad atoms passed as emerge arguments.Zac Medico2007-01-131-1/+4
| | | | svn path=/main/trunk/; revision=5629
* Fix a typo.Zac Medico2007-01-131-1/+1
| | | | svn path=/main/trunk/; revision=5628
* Obey the silent parameter when parsing options.Zac Medico2007-01-131-1/+1
| | | | svn path=/main/trunk/; revision=5627
* Document PORTAGE_COMPRESS and PORTAGE_COMPRESS_FLAGS.Zac Medico2007-01-131-0/+7
| | | | svn path=/main/trunk/; revision=5626
* For bug #144380, disable color at emerge startup and then enable it only ↵Zac Medico2007-01-131-14/+7
| | | | | | when it's absolutely sure that color should be enabled (after EMERGE_DEFAULT_OPTS has been parsed). svn path=/main/trunk/; revision=5625
* Use end_paragraph(1) instead of add_line_break() so that there is really a ↵Zac Medico2007-01-131-1/+1
| | | | | | blank line. svn path=/main/trunk/; revision=5624
* Send the unmerge failure message to stderr.Zac Medico2007-01-131-2/+3
| | | | svn path=/main/trunk/; revision=5623
* Send the slot collision notice to stderr and only show minimal output in ↵Zac Medico2007-01-121-12/+19
| | | | | | --quiet mode. svn path=/main/trunk/; revision=5621
* remove the last of the string module from portage.pyAlec Warner2007-01-121-4/+4
| | | | svn path=/main/trunk/; revision=5620
* Add a few pretty basic comments on writing code, particularly things that ↵Alec Warner2007-01-121-0/+71
| | | | | | portage used to do (and still does) that are...a bit out of style ;) svn path=/main/trunk/; revision=5612
* 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
* Revert accidentally modified joins.Zac Medico2007-01-121-2/+2
| | | | svn path=/main/trunk/; revision=5607
* Fix a typo.Zac Medico2007-01-121-6/+2
| | | | svn path=/main/trunk/; revision=5606
* Fix a typo.Zac Medico2007-01-121-1/+1
| | | | svn path=/main/trunk/; revision=5605
* purge string from portage.py, fix minor bug in portage_utilAlec Warner2007-01-122-42/+41
| | | | svn path=/main/trunk/; revision=5604
* purge string module from repomanAlec Warner2007-01-121-39/+39
| | | | svn path=/main/trunk/; revision=5603
* another annoy space bugAlec Warner2007-01-121-1/+1
| | | | svn path=/main/trunk/; revision=5602
* fix "" " " bugAlec Warner2007-01-122-4/+4
| | | | svn path=/main/trunk/; revision=5601
* purge string module from emergeAlec Warner2007-01-121-13/+13
| | | | svn path=/main/trunk/; revision=5600
* 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-127-28/+26
| | | | svn path=/main/trunk/; revision=5597
* set Id on testsAlec Warner2007-01-1217-17/+17
| | | | svn path=/main/trunk/; revision=5596
* 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
* 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