summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* 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
* Move merge and unmerge functions to the vartree module. (trunk r15468)Zac Medico2010-03-022-30/+33
| | | | svn path=/main/branches/2.1.7/; revision=15677
* Fix broken dep_expand import from previous commit. (trunk r15467)Zac Medico2010-03-021-1/+1
| | | | svn path=/main/branches/2.1.7/; revision=15676
* Splid deprecated functions into a _deprecated module. (trunk r15466)Zac Medico2010-03-022-171/+183
| | | | svn path=/main/branches/2.1.7/; revision=15675
* Avoid name collision with dep_expand submodule so epydoc won't crash.Zac Medico2010-03-021-2/+2
| | | | | | (trunk r15465) svn path=/main/branches/2.1.7/; revision=15674
* Move portage.movefile to portage.util.movefile. (trunk r15464)Zac Medico2010-03-023-218/+237
| | | | svn path=/main/branches/2.1.7/; revision=15673
* Split getmaskingstatus and getmaskingreason info portage.package.ebuildZac Medico2010-03-023-211/+234
| | | | | | submodules. (trunk r15463) svn path=/main/branches/2.1.7/; revision=15672
* Move portage.dep_check and related functions to portage.dep.dep_check.Zac Medico2010-03-022-618/+635
| | | | | | (trunk r15462) svn path=/main/branches/2.1.7/; revision=15671
* Move dep.py to dep/__init__.py, for splitting into smaller files. (trunk r15461)Zac Medico2010-03-021-0/+0
| | | | svn path=/main/branches/2.1.7/; revision=15670
* Move dep_expand and cpv_expand into portage.dbapi submodules. (trunk r15460)Zac Medico2010-03-0211-131/+162
| | | | svn path=/main/branches/2.1.7/; revision=15669
* Fix typo in import. (trunk r15459)Zac Medico2010-03-021-1/+1
| | | | svn path=/main/branches/2.1.7/; revision=15668
* Move portage.digestcheck to portage.package.ebuild.digestcheck. (trunk r15458)Zac Medico2010-03-024-143/+160
| | | | svn path=/main/branches/2.1.7/; revision=15667
* Fix broken digestgen import. (trunk r15457)Zac Medico2010-03-021-1/+1
| | | | svn path=/main/branches/2.1.7/; revision=15666
* Relocate portage.util.digestgen to portage.package.ebuild.digestgen.Zac Medico2010-03-023-2/+2
| | | | | | (trunk r15456) svn path=/main/branches/2.1.7/; revision=15665
* Define 'long' for Python 3. (trunk r15455)Zac Medico2010-03-021-0/+4
| | | | svn path=/main/branches/2.1.7/; revision=15664
* Move digestgen to portage.util.digestgen. (trunk r15454)Zac Medico2010-03-025-185/+214
| | | | svn path=/main/branches/2.1.7/; revision=15663
* Move ExtractKernelVersion portage.util.ExtractKernelVersion. (trunk r15453)Zac Medico2010-03-023-73/+95
| | | | svn path=/main/branches/2.1.7/; revision=15662
* Move env_update to portage.util.env_update.envupdate. (trunk r15452)Zac Medico2010-03-023-264/+290
| | | | svn path=/main/branches/2.1.7/; revision=15661
* Fix broken references to portage._doebuild_manifest_exempt_depend.Zac Medico2010-03-022-8/+7
| | | | | | (trunk r15451) svn path=/main/branches/2.1.7/; revision=15660
* Move cacheddir and listdir to portage.util.listdir. (trunk r15450)Zac Medico2010-03-026-149/+170
| | | | svn path=/main/branches/2.1.7/; revision=15659
* Make auxdbkeys a tuple instead of a list. (trunk r15449)Zac Medico2010-03-021-2/+2
| | | | svn path=/main/branches/2.1.7/; revision=15658
* Split doebuild and related code to the portage.package.ebuild module.Zac Medico2010-03-0213-2217/+2296
| | | | | | (trunk r15448) svn path=/main/branches/2.1.7/; revision=15657
* Remove unused 'expandcache' global variable. (trunk r15447)Zac Medico2010-03-021-2/+0
| | | | svn path=/main/branches/2.1.7/; revision=15656
* Fix a logic error which causes blockers from installed packages to beZac Medico2010-03-021-1/+8
| | | | | | | ignored in some cases. Thanks to Brian Dolbec (dol-sen) for reporting. (trunk r15446) svn path=/main/branches/2.1.7/; revision=15655
* Add missing writmsg import. (trunk r15445)Zac Medico2010-03-021-0/+2
| | | | svn path=/main/branches/2.1.7/; revision=15654