summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* _prune_plib_registry: correct _match_contents useZac Medico2011-05-251-1/+1
|
* merge_order_assertions: fix string format errorZac Medico2011-05-251-1/+2
|
* test_merge_order: test satisfied circular DEPENDZac Medico2011-05-252-1/+55
|
* test_merge_order: test unsolvable buildtime cycleZac Medico2011-05-251-0/+15
|
* test_merge_order: test circular RDEPEND + DEPENDZac Medico2011-05-251-0/+23
|
* test_merge_order: make cycles indirectZac Medico2011-05-251-3/+10
|
* Task.__eq__: allow _hash_key as inputZac Medico2011-05-251-1/+3
| | | | This is used by depgraph._pkg() for lookups.
* ambigous_merge_order: handle more failure modesZac Medico2011-05-251-0/+8
|
* test_merge_order: test hard buildtime blockersZac Medico2011-05-251-0/+21
|
* test_merge_order: test hard blocker resolutionZac Medico2011-05-252-5/+14
|
* test_merge_order: test blocker resolutionZac Medico2011-05-252-0/+29
|
* test_merge_order: remove uneeded ambigous flagZac Medico2011-05-251-1/+0
|
* test_merge_order: fix ambigous_merge_order bugZac Medico2011-05-252-3/+6
|
* test_merge_order: test circular RDEPEND + PDEPENDZac Medico2011-05-251-0/+16
|
* ResolverPlayground: support ambigous_merge_orderZac Medico2011-05-252-3/+91
|
* Fix grammar in previous commit.Zac Medico2011-05-251-1/+1
|
* depclean: adjust failure message wrt --with-bdepsZac Medico2011-05-251-9/+21
| | | | | We need to be more explicit about using --with-bdeps=y, since this subtlety often leads to confusion.
* Task: optimize == and != _hash_key comparisonZac Medico2011-05-251-2/+8
|
* Add FEATURES=distcc-pump support.MATSUU Takuto2011-05-254-2/+12
| | | | This will fix bug #288597.
* Task: precalculate _hash_valueZac Medico2011-05-253-3/+2
|
* Task: remove unnecessary _get_hash_key() methodZac Medico2011-05-253-27/+11
|
* Package: precalculate _hash_keyMarat Radchenko2011-05-251-4/+3
| | | | | This eliminates an expensive getattr call in _get_hash_key(), which greatly improves depgraph performance on a weak ARM cpu.
* Fix typos in comments.Arfrever Frehtes Taifersar Arahesis2011-05-251-3/+3
|
* _find_libs_to_preserve: always return setZac Medico2011-05-251-1/+1
|
* preserve-libs: check for broken linkmap moreZac Medico2011-05-251-3/+6
|
* _pkg_visibility_check: if in graph then visibleZac Medico2011-05-251-1/+10
|
* _LockProcess.unlock: assert successful returncodeZac Medico2011-05-251-0/+3
|
* etc-update: clear term when appropriateZac Medico2011-05-251-1/+5
| | | | | | | This solves an issue like bug #142508, but involving etc-update instead of dispatch-conf. This is also relevant to bug #70668, which is the same issue, though the reporter suggested to use colors to delimit the output instead of using clear.
* Fix a typo in a comment.Zac Medico2011-05-251-1/+1
|
* digraph: implement __bool__Zac Medico2011-05-251-1/+9
|
* depgraph._resolve: use temp set for autounmaskZac Medico2011-05-251-3/+7
|
* display_autounmask: optimize check_if_latestZac Medico2011-05-251-15/+16
|
* test_asynchronous_lock: simulate SIGINT from ttyZac Medico2011-05-252-3/+35
|
* AsynchronousTask: tweak poll() logicZac Medico2011-05-251-2/+3
|
* AsynchronousLock: implement _poll() and testZac Medico2011-05-253-0/+14
|
* test_asynchronous_lock: test returncode moreZac Medico2011-05-251-4/+8
|
* test_asynchronous_lock: test wait and cancelZac Medico2011-05-251-0/+22
|
* test_asynchronous_lock: test waitingZac Medico2011-05-251-0/+25
|
* BinpkgFetcher: handle AsynchronousLock failureZac Medico2011-05-251-1/+6
|
* EbuildBuildDir: handle AsynchronousLock failureZac Medico2011-05-251-9/+18
|
* _LockProcess: handle process failure moreZac Medico2011-05-251-11/+28
|
* _LockProcess: handle process failure if cancelledZac Medico2011-05-251-3/+10
|
* preserve-libs: lock vardb for removeFromContentsZac Medico2011-05-251-11/+20
|
* make.conf.txt: remove because unused/unmaintainedZac Medico2011-05-251-719/+0
|
* Fix some typos.Arfrever Frehtes Taifersar Arahesis2011-05-2514-29/+29
|
* Use vardbapi.lock() where applicable.Zac Medico2011-05-252-7/+8
|
* movefile: handle EEXIST when os.symlink failsZac Medico2011-05-251-1/+2
|
* _LibGraphNode: re-use the _key attributeZac Medico2011-05-252-6/+13
| | | | | | This allows us to avoid repeating any previous stat calls, which helps to avoid potential race conditions due to inconsistent stat results when the file system is being modified concurrently.
* Fix a typo in a comment.Arfrever Frehtes Taifersar Arahesis2011-05-251-1/+1
|
* find_unused_preserved_libs: fix unmerge handlingZac Medico2011-05-251-15/+31
| | | | | | | Since commit c64d4abee145d083c70273be8fd23bd56dffe7ec (bug #286714), preserved libs have not been properly garbage collected when packages are unmerged without replacement, due to a difference in LinkageMap state. It should behave correcly now.