summaryrefslogtreecommitdiffstats
path: root/pym
Commit message (Collapse)AuthorAgeFilesLines
* 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
* For bug #161003, disallow virtuals in package.provided and document it. ↵Zac Medico2007-01-091-1/+19
| | | | | | Thanks to Robin Johnson <robbat2@gentoo.org> for the initial patch. svn path=/main/trunk/; revision=5502
* For bug #161103, don't skip collision-protect checks in cases where the ↵Zac Medico2007-01-091-3/+6
| | | | | | beginning of the file path matches a symlink but is not acually inside a symlinked directory (check the path against symlink + os.path.sep). svn path=/main/trunk/; revision=5499
* Make digestgen() force fetch unless all required digest types are available. ↵Zac Medico2007-01-091-2/+12
| | | | | | Thanks to jokey for reporting on irc. svn path=/main/trunk/; revision=5496
* Split PORTAGE_ELOG_CLASSES outside the loop for better efficiency.Zac Medico2007-01-091-2/+3
| | | | svn path=/main/trunk/; revision=5495
* This file apparently uses spaces to line everything up pretty (I have weird ↵Alec Warner2007-01-091-2/+2
| | | | | | tabs set, so spacies are good :P) svn path=/main/trunk/; revision=5493
* Add new eqawarn function and QA loglevel to be used for QA messagesMarius Mauch2007-01-091-1/+5
| | | | svn path=/main/trunk/; revision=5490
* Make PORTAGE_BASE_PATH dynamic based on __file__Marius Mauch2007-01-091-1/+4
| | | | svn path=/main/trunk/; revision=5486
* For bug #160893, ignore a KeyError during cache cleansing since that key ↵Zac Medico2007-01-081-1/+4
| | | | | | isn't wanted anyway. svn path=/main/trunk/; revision=5483
* Don't swallow an IOError if it is thrown from the aux_get call in ↵Zac Medico2007-01-061-1/+1
| | | | | | portdbapi.getfetchlist(). svn path=/main/trunk/; revision=5478
* For python-2.3 compatibility, don't pass an iterable into dict.update().Zac Medico2007-01-051-1/+2
| | | | svn path=/main/trunk/; revision=5464
* Use -G instead of -g (typo from the previous commit).Zac Medico2007-01-041-1/+1
| | | | svn path=/main/trunk/; revision=5462
* As a workaround for bug #147625, spawn `id -g portage` in order to get a ↵Zac Medico2007-01-041-4/+13
| | | | | | list of groups for the portage user without the need to call grp.getgrall(). svn path=/main/trunk/; revision=5461
* Make sure that myid is defined for the previous commit.Zac Medico2007-01-041-1/+2
| | | | svn path=/main/trunk/; revision=5459
* When fetching metadata from a binhost, reconnect if the http server closes ↵Zac Medico2007-01-041-2/+14
| | | | | | the connection before sending a valid response. Thanks to ranger for reporting. svn path=/main/trunk/; revision=5458
* Export EBUILD_PHASE="" when running misc-function.sh in order to prevent ↵Zac Medico2007-01-041-1/+3
| | | | | | bogus phase values coming from ${T}/environment. Thanks to solar for reporting. svn path=/main/trunk/; revision=5457
* Make sure stderr is flushed since os._exit doesn't flush stdio buffers.Zac Medico2007-01-031-0/+1
| | | | svn path=/main/trunk/; revision=5455
* 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-031-0/+2
| | | | 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-021-7/+14
| | | | 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
* Fix the writemsg noiselevel from the previous commit.Zac Medico2007-01-021-1/+1
| | | | svn path=/main/trunk/; revision=5441