summaryrefslogtreecommitdiffstats
path: root/pym
Commit message (Collapse)AuthorAgeFilesLines
* Pass a config object into the binarytree constructor so that is doesn't have ↵Zac Medico2006-06-251-8/+11
| | | | | | to use global settings for key_expand calls. svn path=/main/trunk/; revision=3648
* Pass a config object into the vartree constructor so that is doesn't have to ↵Zac Medico2006-06-251-6/+12
| | | | | | use global settings for key_expand calls. svn path=/main/trunk/; revision=3647
* Move the counter_tick methods from the dbapi class to the vardbapi class.Zac Medico2006-06-241-74/+73
| | | | svn path=/main/trunk/; revision=3645
* Make the COUNTER regeneration logic account for $ROOT as per bug #129054.Zac Medico2006-06-241-2/+5
| | | | svn path=/main/trunk/; revision=3644
* The mtimedb should not be relative to the target $ROOT because the paths ↵Zac Medico2006-06-241-1/+1
| | | | | | that it contains are currently relative to "/". svn path=/main/trunk/; revision=3643
* Pass a config instance into key_expand calls so that it doesn't rely on ↵Zac Medico2006-06-241-7/+14
| | | | | | global settings. svn path=/main/trunk/; revision=3636
* Remove all direct references to global variables from unmerge().Zac Medico2006-06-241-2/+3
| | | | svn path=/main/trunk/; revision=3635
* Remove the deprectated digestCheckFiles function.Zac Medico2006-06-241-42/+0
| | | | svn path=/main/trunk/; revision=3631
* Remove a few unused imports.Zac Medico2006-06-241-3/+1
| | | | svn path=/main/trunk/; revision=3630
* Remove a few unused imports.Zac Medico2006-06-241-4/+1
| | | | svn path=/main/trunk/; revision=3629
* Sort filenames for predictable results.Zac Medico2006-06-231-1/+3
| | | | svn path=/main/trunk/; revision=3621
* Prevent an inappropriate warning when a repoman user's profile does not ↵Zac Medico2006-06-231-2/+9
| | | | | | support sandbox. Thanks to exg for reporting. svn path=/main/trunk/; revision=3614
* Test the basename for starting with "." instead of the full path.Zac Medico2006-06-231-5/+4
| | | | svn path=/main/trunk/; revision=3613
* Fix a typo from r3611 (file != files).Zac Medico2006-06-231-1/+1
| | | | svn path=/main/trunk/; revision=3612
* ignore .files in /etc/portage recursionAlec Warner2006-06-231-0/+1
| | | | svn path=/main/trunk/; revision=3611
* Don't register signal handlers during module import because it may override ↵Zac Medico2006-06-221-13/+0
| | | | | | signal hadlers that were registered by the calling code. svn path=/main/trunk/; revision=3606
* Simplify PORT_LOGDIR intitialization.Zac Medico2006-06-221-21/+8
| | | | svn path=/main/trunk/; revision=3590
* Prevent and exception when PORT_LOGDIR is an empty string.Zac Medico2006-06-221-2/+5
| | | | svn path=/main/trunk/; revision=3589
* Remove redundant PORT_LOGDIR validation from the config constructor.Zac Medico2006-06-221-4/+0
| | | | svn path=/main/trunk/; revision=3588
* Don't bother to warn when PORT_LOGDIR="".Zac Medico2006-06-221-4/+0
| | | | svn path=/main/trunk/; revision=3587
* Make sure that PORT_LOGDIR is properly unset when it is unusable. Thanks to ↵Zac Medico2006-06-221-2/+4
| | | | | | solar for reporting issues with logs landing in $PWD. svn path=/main/trunk/; revision=3586
* Make it easy to pass alternative cache implementations into the constructor ↵Zac Medico2006-06-201-1/+2
| | | | | | as suggested by Brian Harring. svn path=/main/trunk/; revision=3547
* Use get() to simplify setitem logic as suggested by Brian Harring.Zac Medico2006-06-201-12/+10
| | | | svn path=/main/trunk/; revision=3546
* Implement get() as part of the standard mapping interface.Zac Medico2006-06-201-0/+6
| | | | svn path=/main/trunk/; revision=3545
* Fix it so that values are properly saved in the writable layer. Previously ↵Zac Medico2006-06-201-1/+3
| | | | | | they've been discarded, leading to regen on each access (only in cases where the user has altered an ebuild in the $PORTDIR). svn path=/main/trunk/; revision=3544
* Use wantnewlockfile=1 on /var/lib/portage/config for bug #137269. r3540 is ↵Zac Medico2006-06-201-1/+2
| | | | | | also related. svn path=/main/trunk/; revision=3543
* To prevent infinite recursion when a lock file has more than 1 hardlink, ↵Zac Medico2006-06-191-1/+1
| | | | | | test for exactly 0 hardlinks before recursing. svn path=/main/trunk/; revision=3540
* make sure that elog entries are also processed in *rm phases and that they ↵Marius Mauch2006-06-191-0/+11
| | | | | | are only processed once svn path=/main/trunk/; revision=3539
* goodbye tokenizeAlec Warner2006-06-181-46/+0
| | | | svn path=/main/trunk/; revision=3533
* Put bright colors before dark colors for bug #137206. Thanks to Benno ↵Zac Medico2006-06-181-1/+1
| | | | | | Schulenberg <benno@nietvergeten.nl> for this patch. svn path=/main/trunk/; revision=3532
* Add missing sys import found by pyflakes.Zac Medico2006-06-181-1/+1
| | | | svn path=/main/trunk/; revision=3531
* fix typoMarius Mauch2006-06-181-1/+1
| | | | svn path=/main/trunk/; revision=3530
* Prevent repoman frm using /etc/portage/package.mask. This is a regression ↵Zac Medico2006-06-181-3/+7
| | | | | | in 2.1.1_pre1 from svn r3495. See bug #133740. Thanks to sekretarz for reporting this issue. svn path=/main/trunk/; revision=3527
* Make sure that doebuild gets the correct CATEGORY. See bug #137105.Zac Medico2006-06-171-0/+2
| | | | svn path=/main/trunk/; revision=3524
* Force digest generation when assume-digests is enabled but the file size ↵Zac Medico2006-06-171-2/+10
| | | | | | does not match. See bug #137032. svn path=/main/trunk/; revision=3517
* Import missing PermissionDenied class. Thanks to marienz for reporting (and ↵Zac Medico2006-06-161-1/+2
| | | | | | suggesting pyflakes). svn path=/main/trunk/; revision=3516
* Fix checksum error messages for bug #136947. Thanks to truedfx for this patch.Zac Medico2006-06-161-2/+2
| | | | svn path=/main/trunk/; revision=3515
* Only attempt to unmerge the already-installed instance if it actually ↵Zac Medico2006-06-151-5/+6
| | | | | | exists. This patch prevents self.settings.configdict["pkg"] from getting nuked by a call to load_infodir on a nonexistent directory. By preserving configdict["pkg"] here, the CATEGORY is available for the next doebuild call (needed to create log names correctly). svn path=/main/trunk/; revision=3514
* Fix generation of ebuild log file names for bug #136285.Zac Medico2006-06-131-15/+18
| | | | svn path=/main/trunk/; revision=3506
* Fix a typo from the last revision (octal literals begin with 0).Zac Medico2006-06-131-1/+1
| | | | svn path=/main/trunk/; revision=3503
* Toggle the setgid bit on $PORT_LOGDIR\elog\ for bug #136278.Zac Medico2006-06-131-1/+1
| | | | svn path=/main/trunk/; revision=3502
* For more simplicity, use os.rename instead of spawning MOVE_BINARY (see bug ↵Zac Medico2006-06-121-1/+1
| | | | | | #136404). svn path=/main/trunk/; revision=3500
* add date header for rfc2822 complianceMarius Mauch2006-06-121-2/+3
| | | | svn path=/main/trunk/; revision=3497
* Stack package.mask files in a more logical order as specified in bug #133740.Zac Medico2006-06-121-5/+13
| | | | svn path=/main/trunk/; revision=3495
* Wrap more exceptions in ensure_dirs().Zac Medico2006-06-121-2/+8
| | | | svn path=/main/trunk/; revision=3494
* Wrap more exceptions when applying permissions. Thanks to marienz for ↵Zac Medico2006-06-111-3/+16
| | | | | | reporting. svn path=/main/trunk/; revision=3493
* override sender on sendmail invocationMarius Mauch2006-06-101-3/+3
| | | | svn path=/main/trunk/; revision=3486
* add code to allow sendmail binaries to be used instead of a smtp connection ↵Marius Mauch2006-06-101-17/+26
| | | | | | for sending mails svn path=/main/trunk/; revision=3485
* refactor elog mail stuff so it's reusable by other tools (like glsa-check)Marius Mauch2006-06-102-57/+97
| | | | svn path=/main/trunk/; revision=3484
* make elog mail module always set the 'From' header for rfc2822 complianceMarius Mauch2006-06-1029-29/+30
| | | | svn path=/main/trunk/; revision=3483