summaryrefslogtreecommitdiffstats
path: root/pym
Commit message (Collapse)AuthorAgeFilesLines
* Move _pty module to portage.util._pty.Zac Medico2010-03-025-4/+4
| | | | svn path=/main/trunk/; revision=15515
* Move imports to top.Zac Medico2010-03-021-4/+2
| | | | svn path=/main/trunk/; revision=15514
* 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. svn path=/main/trunk/; revision=15513
* 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. svn path=/main/trunk/; revision=15512
* Fix legacy globals proxies to reset state when the portage module is reloaded.Zac Medico2010-03-012-23/+23
| | | | | | | This fixes ebuild(1) failing to generate manifests when the ebuild is not in PORTDIR_OVERLAY, as reported by Arfrever. svn path=/main/trunk/; revision=15511
* Add a note in _find_system_deps about needing the system set added to theZac Medico2010-03-011-0/+3
| | | | | | graph. svn path=/main/trunk/; revision=15510
* Use writemsg instead of print. Also don't use _ as a variable name since itZac Medico2010-03-011-15/+19
| | | | | | collides with _ from portage.localization. svn path=/main/trunk/; revision=15509
* Move imports to the top and use writemsg_stdout instead of print().Zac Medico2010-03-011-9/+7
| | | | svn path=/main/trunk/; revision=15508
* Call stack_lists on profile_only_variables for incremental processing.Zac Medico2010-03-011-0/+1
| | | | svn path=/main/trunk/; revision=15507
* Remove redundant eerror import.Zac Medico2010-03-011-1/+0
| | | | svn path=/main/trunk/; revision=15506
* Remove redundant local elog_process import that can trigger UnboundLocalErrorZac Medico2010-03-011-1/+0
| | | | | | in some cases. svn path=/main/trunk/; revision=15505
* Remove unused print_function.Zac Medico2010-03-011-2/+0
| | | | svn path=/main/trunk/; revision=15504
* Bug #307235 - Inside depgraph._add_dep, discard child choices for deps thatZac Medico2010-03-011-0/+4
| | | | | | | will be not be processed immediately, since "complete" mode may select a different child later. svn path=/main/trunk/; revision=15503
* Remove unused print() import.Zac Medico2010-02-281-2/+0
| | | | svn path=/main/trunk/; revision=15502
* Remove unused imports.Zac Medico2010-02-281-7/+0
| | | | svn path=/main/trunk/; revision=15501
* Add ObjectProxy __gt__, __ge__, __lt__, and __le__ methods to fix TypeErrorZac Medico2010-02-282-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() svn path=/main/trunk/; revision=15497
* Fix broken reference to portage._spawn_misc_sh(). Thanks to Arfrever forZac Medico2010-02-281-1/+1
| | | | | | reporting. svn path=/main/trunk/; revision=15496
* Remove print() usage.Zac Medico2010-02-281-5/+0
| | | | svn path=/main/trunk/; revision=15495
* Remove print() usage.Zac Medico2010-02-281-6/+4
| | | | svn path=/main/trunk/; revision=15494
* Fix broken fakedbapi.cpv_inject/cpv_remove calls.Zac Medico2010-02-281-2/+2
| | | | svn path=/main/trunk/; revision=15493
* Move legacy globals code into a _legacy_globals module that's imported onZac Medico2010-02-282-121/+93
| | | | | | demand. svn path=/main/trunk/; revision=15492
* Move deprecated_profile_check to portage.package.ebuild submodule.Zac Medico2010-02-282-30/+45
| | | | svn path=/main/trunk/; revision=15491
* Move the MtimeDB class to portage.util.mtimedb and deprecate the commit_mtimedbZac Medico2010-02-283-82/+92
| | | | | | function. svn path=/main/trunk/; revision=15490
* Fix vardbapi.move_ent and aux_update to clear relevant caches.Zac Medico2010-02-281-0/+3
| | | | svn path=/main/trunk/; revision=15489
* Make bindbapi override cpv_inject and cpv_remove, for deleting stale valuesZac Medico2010-02-281-1/+9
| | | | | | | from self._aux_cache. Also, add a comment about stale cache handling inside aux_update. svn path=/main/trunk/; revision=15488
* Make _global_updates ensure that the binarytree is only populated with localZac Medico2010-02-282-4/+12
| | | | | | | packages (getbinpkgs=0), and fix binarytree.populate() to behave properly when called more than once. svn path=/main/trunk/; revision=15487
* Add a --quiet-unmerge-warn option to disable the warning message that's shownZac Medico2010-02-283-1/+12
| | | | | | | prior to --unmerge actions. Thanks to Thomas Sachau <tommy@gentoo.org> for the suggestion. svn path=/main/trunk/; revision=15486
* Fix reference to portage.util.listdir.dircache.Zac Medico2010-02-271-1/+2
| | | | svn path=/main/trunk/; revision=15477
* Remove deprecated flushmtimedb function.Zac Medico2010-02-271-5/+2
| | | | svn path=/main/trunk/; revision=15476
* Move portage._global_updates to a submodule.Zac Medico2010-02-274-142/+156
| | | | svn path=/main/trunk/; revision=15475
* Remove unused 'dircache' variable that's moved to portage.util.listdir.Zac Medico2010-02-271-7/+0
| | | | svn path=/main/trunk/; revision=15474
* Move missing encodings module workarounds (<python-2.6.4 + USE=build) to aZac Medico2010-02-272-124/+136
| | | | | | _ensure_encodings module that's only imported on demand. svn path=/main/trunk/; revision=15473
* Eliminate the PhaseCheck constructor and make PhaseCheck.phases_re a classZac Medico2010-02-261-9/+5
| | | | | | attribute. Thanks to Sebastian Pipping <sping@g.o> for the initial patch. svn path=/main/trunk/; revision=15470
* Move getvirtuals to _deprecated module.Zac Medico2010-02-252-12/+10
| | | | svn path=/main/trunk/; revision=15469
* Move merge and unmerge functions to the vartree module.Zac Medico2010-02-252-33/+33
| | | | svn path=/main/trunk/; revision=15468
* Fix broken dep_expand import from previous commit.Zac Medico2010-02-251-1/+1
| | | | svn path=/main/trunk/; revision=15467
* Splid deprecated functions into a _deprecated module.Zac Medico2010-02-252-171/+183
| | | | svn path=/main/trunk/; revision=15466
* Avoid name collision with dep_expand submodule so epydoc won't crash.Zac Medico2010-02-251-2/+2
| | | | svn path=/main/trunk/; revision=15465
* Move portage.movefile to portage.util.movefile.Zac Medico2010-02-253-218/+237
| | | | svn path=/main/trunk/; revision=15464
* Split getmaskingstatus and getmaskingreason info portage.package.ebuildZac Medico2010-02-253-211/+234
| | | | | | submodules. svn path=/main/trunk/; revision=15463
* Move portage.dep_check and related functions to portage.dep.dep_check.Zac Medico2010-02-252-618/+635
| | | | svn path=/main/trunk/; revision=15462
* Move dep.py to dep/__init__.py, for splitting into smaller files.Zac Medico2010-02-251-0/+0
| | | | svn path=/main/trunk/; revision=15461
* Move dep_expand and cpv_expand into portage.dbapi submodules.Zac Medico2010-02-2510-130/+160
| | | | svn path=/main/trunk/; revision=15460
* Fix typo in import.Zac Medico2010-02-251-1/+1
| | | | svn path=/main/trunk/; revision=15459
* Move portage.digestcheck to portage.package.ebuild.digestcheck.Zac Medico2010-02-254-143/+160
| | | | svn path=/main/trunk/; revision=15458
* Fix broken digestgen import.Zac Medico2010-02-251-1/+1
| | | | svn path=/main/trunk/; revision=15457
* Relocate portage.util.digestgen to portage.package.ebuild.digestgen.Zac Medico2010-02-252-1/+1
| | | | svn path=/main/trunk/; revision=15456
* Define 'long' for Python 3.Arfrever Frehtes Taifersar Arahesis2010-02-251-0/+4
| | | | svn path=/main/trunk/; revision=15455
* Move digestgen to portage.util.digestgen.Zac Medico2010-02-254-181/+209
| | | | svn path=/main/trunk/; revision=15454
* Move ExtractKernelVersion portage.util.ExtractKernelVersion.Zac Medico2010-02-253-73/+95
| | | | svn path=/main/trunk/; revision=15453