summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Bug #307723 - Define basestring for python3. (trunk r15745)v2.1.8.1Zac Medico2010-03-041-0/+5
| | | | svn path=/main/branches/2.1.7/; revision=15749
* Fix imports doebuild_environment and prepare_build_dirs imports to import fromZac Medico2010-03-042-6/+13
| | | | | | the real location instead of importing proxies. (trunk r15744) svn path=/main/branches/2.1.7/; revision=15748
* Bug #307707 - Fix fetch() to use the correct spawn function when callingZac Medico2010-03-041-1/+2
| | | | | | nofetch. (trunk r15743) svn path=/main/branches/2.1.7/; revision=15747
* Add new colors for binary packages in the merge list. Thanks to SebastianZac Medico2010-03-043-5/+25
| | | | | | Luther (few) for this patch. (trunk r15739) svn path=/main/branches/2.1.7/; revision=15746
* Add news about splitting the top-level __init__.py. (trunk r15730)v2.1.8Zac Medico2010-03-031-0/+6
| | | | svn path=/main/branches/2.1.7/; revision=15731
* Make _global_updates() silently return if ROOT != "/" and make fixpackagesZac Medico2010-03-032-3/+18
| | | | | | | | bail out with an error message in this case which suggests to instead use emaint --fix movebin and/or moveinst. This prevents useless/ugly global updates messages that flood the terminal when ROOT != "/". (trunk r15728) svn path=/main/branches/2.1.7/; revision=15729
* Remove preserve libs code from unmerge() that accidentally got merged fromZac Medico2010-03-031-3/+0
| | | | | | trunk. svn path=/main/branches/2.1.7/; revision=15727
* Fix incorrect merge.Zac Medico2010-03-021-4/+5
| | | | svn path=/main/branches/2.1.7/; revision=15726
* Unlink log instead of truncate, to avoid leaving empty log inZac Medico2010-03-021-2/+1
| | | | | | | $PORT_LOGDIR. This reverts bug 304981 (reporting doesn't use tee like this anymore so he'd prefer the old behavior). (trunk r15722) svn path=/main/branches/2.1.7/; revision=15725
* Remove fetch log after successful fetch. (trunk r15721)Zac Medico2010-03-021-0/+8
| | | | svn path=/main/branches/2.1.7/; revision=15724
* Bug #304981 - Remove redundant fetch log removal code which is alreadyZac Medico2010-03-021-7/+0
| | | | | | handled by EbuildFetcher. (trunk r15720) svn path=/main/branches/2.1.7/; revision=15723
* Clean up imports and unused variables. (trunk r15716)Zac Medico2010-03-021-19/+5
| | | | svn path=/main/branches/2.1.7/; revision=15719
* Move imports to top. (trunk r15715)Zac Medico2010-03-021-4/+4
| | | | svn path=/main/branches/2.1.7/; revision=15718
* Clean up imports. (trunk r15714)Zac Medico2010-03-021-3/+2
| | | | svn path=/main/branches/2.1.7/; revision=15717
* Move _pty module to portage.util._pty. (trunk r15515)Zac Medico2010-03-025-4/+4
| | | | svn path=/main/branches/2.1.7/; revision=15713
* Move imports to top. (trunk r15514)Zac Medico2010-03-021-4/+2
| | | | svn path=/main/branches/2.1.7/; revision=15712
* Bug #306659 - For --rebuilt-binaries, only reinstall if binary packageZac Medico2010-03-021-2/+7
| | | | | | | | BUILD_TIME is non-empty, in order to avoid cases like to bug #306659 where BUILD_TIME fields are missing in local and/or remote Packages file. (trunk r15513) svn path=/main/branches/2.1.7/; revision=15711
* Test for python openpty breakage after freebsd7 to freebsd8 upgrade, whichZac Medico2010-03-021-1/+16
| | | | | | | | results in a 'Function not implemented' error and the process being killed. Thanks to Javier Villavicenciom <the_paya@g.o> for reporting and helping to develop this test. (trunk r15512) svn path=/main/branches/2.1.7/; revision=15710
* Fix legacy globals proxies to reset state when the portage module is reloaded.Zac Medico2010-03-022-23/+23
| | | | | | | This fixes ebuild(1) failing to generate manifests when the ebuild is not in PORTDIR_OVERLAY, as reported by Arfrever. (trunk r15511) svn path=/main/branches/2.1.7/; revision=15709
* Add a note in _find_system_deps about needing the system set added to theZac Medico2010-03-021-0/+3
| | | | | | graph. (trunk r15510) svn path=/main/branches/2.1.7/; revision=15708
* Use writemsg instead of print. Also don't use _ as a variable name since itZac Medico2010-03-021-2/+0
| | | | | | collides with _ from portage.localization. (trunk r15509) svn path=/main/branches/2.1.7/; revision=15707
* Move imports to the top and use writemsg_stdout instead of print().Zac Medico2010-03-021-9/+7
| | | | | | (trunk r15508) svn path=/main/branches/2.1.7/; revision=15706
* Call stack_lists on profile_only_variables for incremental processing.Zac Medico2010-03-021-0/+1
| | | | | | (trunk r15507) svn path=/main/branches/2.1.7/; revision=15705
* Remove redundant eerror import. (trunk r15506)Zac Medico2010-03-021-1/+0
| | | | svn path=/main/branches/2.1.7/; revision=15704
* Remove redundant local elog_process import that can trigger UnboundLocalErrorZac Medico2010-03-021-1/+0
| | | | | | in some cases. (trunk r15505) svn path=/main/branches/2.1.7/; revision=15703
* Remove unused print_function. (trunk r15504)Zac Medico2010-03-021-2/+0
| | | | svn path=/main/branches/2.1.7/; revision=15702
* Bug #307235 - Inside depgraph._add_dep, discard child choices for deps thatZac Medico2010-03-021-0/+4
| | | | | | | will be not be processed immediately, since "complete" mode may select a different child later. (trunk r15503) svn path=/main/branches/2.1.7/; revision=15701
* Remove unused print() import. (trunk r15502)Zac Medico2010-03-021-2/+0
| | | | svn path=/main/branches/2.1.7/; revision=15700
* Remove unused imports. (trunk r15501)Zac Medico2010-03-021-7/+0
| | | | svn path=/main/branches/2.1.7/; revision=15699
* Add ObjectProxy __gt__, __ge__, __lt__, and __le__ methods to fix TypeErrorZac Medico2010-03-022-1/+13
| | | | | | | | | | with python3 reported by Arfrever: File "/usr/lib/portage/pym/portage/__init__.py", line 513, in portageexit if secpass > 1 and os.environ.get("SANDBOX_ON") != "1": TypeError: unorderable types: _LazyImportFrom() > int() (trunk r15497) svn path=/main/branches/2.1.7/; revision=15698
* Fix broken reference to portage._spawn_misc_sh(). Thanks to Arfrever forZac Medico2010-03-021-1/+1
| | | | | | reporting. (trunk r15496) svn path=/main/branches/2.1.7/; revision=15697
* Remove print() usage. (trunk r15495)Zac Medico2010-03-021-5/+0
| | | | svn path=/main/branches/2.1.7/; revision=15696
* Remove print() usage. (trunk r15494)Zac Medico2010-03-021-6/+4
| | | | svn path=/main/branches/2.1.7/; revision=15695
* Fix broken fakedbapi.cpv_inject/cpv_remove calls. (trunk r15493)Zac Medico2010-03-021-2/+2
| | | | svn path=/main/branches/2.1.7/; revision=15694
* Move legacy globals code into a _legacy_globals module that's imported onZac Medico2010-03-022-121/+93
| | | | | | demand. (trunk r15492) svn path=/main/branches/2.1.7/; revision=15693
* Move deprecated_profile_check to portage.package.ebuild submodule.Zac Medico2010-03-022-30/+45
| | | | | | (trunk r15491) svn path=/main/branches/2.1.7/; revision=15692
* Move the MtimeDB class to portage.util.mtimedb and deprecate the commit_mtimedbZac Medico2010-03-023-82/+92
| | | | | | function. (trunk r15490) svn path=/main/branches/2.1.7/; revision=15691
* Fix vardbapi.move_ent and aux_update to clear relevant caches. (trunk r15489)Zac Medico2010-03-021-0/+3
| | | | svn path=/main/branches/2.1.7/; revision=15690
* Make bindbapi override cpv_inject and cpv_remove, for deleting stale valuesZac Medico2010-03-021-1/+9
| | | | | | | from self._aux_cache. Also, add a comment about stale cache handling inside aux_update. (trunk r15488) svn path=/main/branches/2.1.7/; revision=15689
* Make _global_updates ensure that the binarytree is only populated with localZac Medico2010-03-022-4/+12
| | | | | | | packages (getbinpkgs=0), and fix binarytree.populate() to behave properly when called more than once. (trunk r15487) svn path=/main/branches/2.1.7/; revision=15688
* Add a --quiet-unmerge-warn option to disable the warning message that's shownZac Medico2010-03-024-1/+18
| | | | | | | prior to --unmerge actions. Thanks to Thomas Sachau <tommy@gentoo.org> for the suggestion. (trunk r15486) svn path=/main/branches/2.1.7/; revision=15687
* Fix reference to portage.util.listdir.dircache. (trunk r15477)Zac Medico2010-03-021-1/+2
| | | | svn path=/main/branches/2.1.7/; revision=15686
* Remove deprecated flushmtimedb function. (trunk r15476)Zac Medico2010-03-021-5/+2
| | | | svn path=/main/branches/2.1.7/; revision=15685
* Move portage._global_updates to a submodule. (trunk r15475)Zac Medico2010-03-025-143/+158
| | | | svn path=/main/branches/2.1.7/; revision=15684
* Remove unused 'dircache' variable that's moved to portage.util.listdir.Zac Medico2010-03-021-7/+0
| | | | | | (trunk r15474) svn path=/main/branches/2.1.7/; revision=15683
* Move missing encodings module workarounds (<python-2.6.4 + USE=build) to aZac Medico2010-03-022-124/+136
| | | | | | _ensure_encodings module that's only imported on demand. (trunk r15473) svn path=/main/branches/2.1.7/; revision=15682
* Another turquoise -> red. (trunk r15472)Zac Medico2010-03-021-1/+1
| | | | svn path=/main/branches/2.1.7/; revision=15681
* Bug #307021 - Show "Please fix" message in red instead of turquoise whenZac Medico2010-03-021-1/+1
| | | | | | repoman fails. (trunk r15471) svn path=/main/branches/2.1.7/; revision=15680
* Eliminate the PhaseCheck constructor and make PhaseCheck.phases_re a classZac Medico2010-03-021-9/+5
| | | | | | | attribute. Thanks to Sebastian Pipping <sping@g.o> for the initial patch. (trunk r15470) svn path=/main/branches/2.1.7/; revision=15679
* Move getvirtuals to _deprecated module. (trunk r15469)Zac Medico2010-03-022-12/+10
| | | | svn path=/main/branches/2.1.7/; revision=15678