summaryrefslogtreecommitdiffstats
path: root/pym/portage.py
Commit message (Collapse)AuthorAgeFilesLines
...
* Use PORTAGE_DEBUG=1 since that's all that portage currently recognizes.Zac Medico2006-07-011-1/+1
| | | | svn path=/main/trunk/; revision=3723
* Integrate the load_mtimedb() function into the MtimeDB class. This function ↵Zac Medico2006-06-301-25/+23
| | | | | | is relatively new so nobody should miss it. svn path=/main/trunk/; revision=3721
* Pass trees into dep_check and dep_zapdeps calls in order to avoid dependance ↵Zac Medico2006-06-301-4/+8
| | | | | | on global variables. svn path=/main/trunk/; revision=3719
* Fix pkgmerge() to work without dependance on global variables.Zac Medico2006-06-301-6/+9
| | | | svn path=/main/trunk/; revision=3717
* Pass a config instance into the bindbapi and fakedbapi constructors in order ↵Zac Medico2006-06-301-4/+10
| | | | | | to avoid dependance on globals for dep_expand() calls. svn path=/main/trunk/; revision=3716
* Pass the ldpath_mtimes for unmerging the already-installed instance.Zac Medico2006-06-301-1/+1
| | | | svn path=/main/trunk/; revision=3714
* Fix missing target_root keyword parameter.Zac Medico2006-06-301-1/+1
| | | | svn path=/main/trunk/; revision=3713
* Only use the global vartree when really necessary.Zac Medico2006-06-301-3/+1
| | | | svn path=/main/trunk/; revision=3711
* Pass config and portdbapi instances into the portagetree constructor.Zac Medico2006-06-301-3/+4
| | | | svn path=/main/trunk/; revision=3710
* Allow the portagetree constructor to work without globals.Zac Medico2006-06-301-4/+9
| | | | svn path=/main/trunk/; revision=3709
* Add an MtimeDB class to encapsulate the mtimedb.Zac Medico2006-06-301-8/+23
| | | | svn path=/main/trunk/; revision=3706
* Pass ldpath mtimes into the unmerge operations.Zac Medico2006-06-301-2/+3
| | | | svn path=/main/trunk/; revision=3704
* Trigger env_update() after each unmerge operation.Zac Medico2006-06-301-2/+4
| | | | svn path=/main/trunk/; revision=3703
* Pass a config instance into each dep_expand call.Zac Medico2006-06-291-4/+7
| | | | svn path=/main/trunk/; revision=3690
* Pass a config instance into the vardbapi constructor so that it doesn't have ↵Zac Medico2006-06-291-1/+2
| | | | | | to rely on global settings. svn path=/main/trunk/; revision=3689
* Pass a config instance into the vardbapi constructor so that it doesn't have ↵Zac Medico2006-06-291-3/+6
| | | | | | to rely on global settings. svn path=/main/trunk/; revision=3688
* Update symlinks in during package moves for bug #138394.Zac Medico2006-06-281-0/+26
| | | | svn path=/main/trunk/; revision=3687
* Allow a config instance to be passed into dep_expand so that it doesn't have ↵Zac Medico2006-06-281-2/+3
| | | | | | to rely on global settings. svn path=/main/trunk/; revision=3685
* Allow a config instance to be passed into cpv_expand so that it doesn't have ↵Zac Medico2006-06-281-2/+3
| | | | | | to rely on global settings. svn path=/main/trunk/; revision=3684
* readd Rev to portage.py for proper svn revisions in portage.versionAlec Warner2006-06-281-1/+1
| | | | svn path=/main/trunk/; revision=3679
* Allow /etc/portage/color.map to control colors associated with einfo, ewarn, ↵Zac Medico2006-06-261-0/+4
| | | | | | etc... svn path=/main/trunk/; revision=3665
* Remove all direct references to global variables form post_emerge().Zac Medico2006-06-261-1/+1
| | | | svn path=/main/trunk/; revision=3660
* Print a message to stderr if an error occurs when updating a config file.Zac Medico2006-06-251-1/+4
| | | | svn path=/main/trunk/; revision=3654
* Pass in just the CONFIG_PROTECT info instead of the whole config object.Zac Medico2006-06-251-6/+12
| | | | svn path=/main/trunk/; revision=3653
* Split the config protect functionality from the dblink class to a new class ↵Zac Medico2006-06-251-33/+48
| | | | | | and use it in portage.update_config_files() (dblink requires a vartree and that's not needed here). svn path=/main/trunk/; revision=3652
* Fix portage.update_config_files() so that it can work with an arbitrary ↵Zac Medico2006-06-251-10/+13
| | | | | | $ROOT and without any global variables. svn path=/main/trunk/; revision=3651
* 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
* 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
* 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
* 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
* 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
* 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
* 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