summaryrefslogtreecommitdiffstats
path: root/pym/_emerge
Commit message (Collapse)AuthorAgeFilesLines
* depgraph._resolve: use temp set for autounmaskZac Medico2011-05-171-4/+8
|
* display_autounmask: optimize check_if_latestZac Medico2011-05-171-15/+16
|
* test_asynchronous_lock: simulate SIGINT from ttyZac Medico2011-05-171-2/+2
|
* AsynchronousTask: tweak poll() logicZac Medico2011-05-171-2/+3
|
* AsynchronousLock: implement _poll() and testZac Medico2011-05-172-0/+12
|
* Update timestamps in headers of modified files.Zac Medico2011-05-171-1/+1
|
* --autounmask-write: don't write hidden filesZac Medico2011-05-171-0/+6
|
* --autounmask-write: use CONFIGROOT and EROOTZac Medico2011-05-171-4/+9
|
* --autounmask-write: handle non-existent fileZac Medico2011-05-161-2/+20
|
* --autounmask-write: only prompt when necessaryZac Medico2011-05-161-1/+1
|
* --autounmask-write: handle config file recursionZac Medico2011-05-161-12/+24
|
* Document that --autounmask is enabled by default.Zac Medico2011-05-161-4/+5
|
* Enable --autounmask by defaultSebastian Luther2011-05-161-2/+2
|
* --autounmask-write: respect --askSebastian Luther2011-05-161-36/+64
|
* BinpkgFetcher: handle AsynchronousLock failureZac Medico2011-05-161-1/+6
|
* EbuildBuildDir: handle AsynchronousLock failureZac Medico2011-05-161-9/+18
|
* _LockProcess: handle process failure moreZac Medico2011-05-151-11/+28
|
* _LockProcess: handle process failure if cancelledZac Medico2011-05-151-3/+10
|
* Fix some typos.Arfrever Frehtes Taifersar Arahesis2011-05-153-12/+12
|
* --autounmask: Treat missing keywords as masksSebastian Luther2011-05-151-0/+9
|
* --autounmask: Allow package.mask changesSebastian Luther2011-05-152-22/+85
|
* Implement --autounmask-writeSebastian Luther2011-05-153-76/+212
| | | | | Enabling this option together with --autounmask writes proposed changes to config files, honoring CONFIG_PROTECT.
* EbuildMerge: inherit from CompositeTaskZac Medico2011-05-153-14/+12
|
* EbuildPhase: fix locking for setup phaseZac Medico2011-05-151-1/+1
|
* EbuildPhase: AsynchronousLock for ebuild-locksZac Medico2011-05-151-9/+21
|
* Use vardbapi.lock() where applicable.Zac Medico2011-05-142-7/+8
|
* --autounmask: Use >= atoms if possibleSebastian Luther2011-05-141-3/+49
| | | | | | | | | If the package is the latest avaiable it now uses >=cat/pkg-ver instead of =cat/pkg-ver. If the package is not the latest, but the latest in its slot, >=cat/pkg-ver:slot is used. In all other case =cat/pkg-ver is used. Rational is that it's more likely that newer versions, added in the future, will work with the same configuration changes as the currently latest version than not.
* preserve-libs: preserve during uninstallZac Medico2011-05-142-2/+6
| | | | | | This will fix bug #286714. The emerge --depclean-lib-check option will now be ignored when FEATURES=preserve-libs is enabled, since any libraries that have consumers will simply be preserved.
* EbuildPhase: extract binpkg env for pkg_pretendZac Medico2011-05-111-1/+1
| | | | This will fix bug #366939.
* unmerge: use frozenset for syslistZac Medico2011-05-111-0/+1
|
* depgraph: in complete mode respect --with-bdepsZac Medico2011-05-112-8/+7
| | | | | If you want the graph as complete as possible, now you'll have to use --with-bdeps=y together with --complete-graph.
* dep_check_composite_db: return early from cp_listZac Medico2011-05-101-1/+4
| | | | | Since this implementation is only intended to check for existence of new-style virtuals, it's a waste of time to return more than one cpv.
* depgraph: traverse ignored DEPEND if "complete"Zac Medico2011-05-101-2/+5
|
* Strip build-time dependencies when they're ignored and we're not in ↵David James2011-05-101-0/+5
| | | | | | | | | | | --rebuild mode. This should improve depgraph calculation performance. TEST=Ran test suite. BUG=chromium-os:15144 Change-Id: I9e06817201d7a17ae9b44b424d01c1a2bd89210a
* depgraph: don't clear vardbapi cache in _load_vdbZac Medico2011-05-091-8/+0
| | | | | | Most of the memory is probably held on the heap by the installed package instances anyway, and the cache is useful for being inherited by subprocess in MergeProcess.
* dep_check_composite_db: remove unused _dep_expandZac Medico2011-05-091-43/+1
| | | | | | | | This code has been unused since dep_check started passing token_class=Atom to use_reduce in commit c9f7930883d62fc26af72bff0c4623db0bbc8221. Since then, any atoms without categories are dropped by dep_check because it returns early after catching an InvalidDependString exception.
* dep_check_composite_db: implement cp_listZac Medico2011-05-091-0/+17
| | | | | This is used by dep_check since commit 6f9ee9c508c1506cdf8eb0dc46796dbe30f268db.
* display_news_notification: don't populate virtsZac Medico2011-05-081-4/+0
| | | | | This typically isn't useful anymore, since Gentoo has stopped using old-style virtuals.
* unmerge: skip getvirtuals() if cat is not virtualZac Medico2011-05-081-2/+8
| | | | | This allows us to avoid triggering the old-style virtual code which scans /var/db/pkg/*/*/PROVIDE.
* unmerge: use expand_new_virt for sys pkg warningsZac Medico2011-05-082-63/+10
|
* merge_wait_queue: use deque.clear()Zac Medico2011-05-081-1/+1
|
* resume_depgraph: don't call break_refs in loopZac Medico2011-05-081-2/+1
| | | | | | | | | | The break_refs call was unnecessary and it broke the state of the frozen_config instance, causing the following error: File "pym/_emerge/depgraph.py", line 1290, in _wrapped_add_pkg_dep_string inst_pkgs = vardb.match_pkgs(atom) AttributeError: 'vardbapi' object has no attribute 'match_pkgs'
* Use new vardbapi lock function in FakeVartree.David James2011-05-071-11/+6
| | | | | | | BUG=none TEST=Merged some packages with new code. Ran test suite. Change-Id: Ibb9380122631bf6c79e39691233cfd641931b75a
* Be careful with system pkgs + parallel-install.Zac Medico2011-05-071-10/+18
| | | | | This should prevent FEATURES=parallel-install from interfering with the fixes from bug #256616 and bug #259954.
* Use EROOT with VDB_PATH in recent changes.Zac Medico2011-05-071-2/+2
|
* Scheduler: add queue for ebuild-locksZac Medico2011-05-071-2/+11
| | | | | | | | Use a separate queue for ebuild-locks when the merge queue allows more than 1 job (due to parallel-install), since the portage.locks module does not behave as desired if we try to lock the same file multiple times concurrently from the same process.
* Add FEATURES=parallel-install for finer locks.Zac Medico2011-05-071-1/+2
|
* Rename FEATURES=no-ebuild-locks to ebuild-locks.Zac Medico2011-05-071-5/+8
|
* Use finer grained locks for install.David James2011-05-072-1/+15
| | | | | | | | | | | | | | | | | | | | | | | | | Narrow scope of merge locks to improve performance. Instead of locking the DB for the entire package merge, just lock it when we actually need to do so. Also add locks around conf_mem_file updating and pkg_* phases. Locking in pkg_* phases can be turned off with FEATURES="no-ebuild-locks" if you use ebuilds that are careful not to mess with each other during theses phases. The default is to leave this locking enabled. Given this new locking, I've improved the scheduler to run merge jobs in parallel. Time required for merging 348 packages with --usepkgonly: - Before patch: 29m50s - After patch: 10m2s - After patch w/o locks: 7m9s Change-Id: I63588c4cc59fa6fe2f8327ea1e4a9e71b241d4fe Review URL: http://gerrit.chromium.org/gerrit/498
* Remove redundant pruneNonExisting() call.Zac Medico2011-05-061-1/+0
| | | | | | Since commit f36b9fa38b5268c2a5579db62acec026625f84a9, the PreservedLibsRegistry automatically prunes itself each time that it is loaded.