test-strip: fix call to super class in crashstriprepo
The 'self' argument is already taken care of by the 'super(...)' call. Instead
we were passing the repository instance as the 'desc' value.
This got discovered by breaking the next changeset.
share: share 'cachevfs' with the source clone (
issue5108)
Share extension now also share caches reads and writes. Not sharing caches
results in costly caches recomputations which can takes up to minutes when
using shares on large repositories.
There are a couple of file in the '.hg/cache/' that depends of the current
visibility. Visibility can be affected by the working copy location, something
which is specific to each share. We ignores them for this series because they:
* are the minority,
* already have a good fallback to other precomputed caches,
* are only affected when people use the experimental evolution feature.
cachevfs: add a devel warning for cache access though 'vfs'
This will help third party extensions to migrate to the new 'cachevfs'.
cachevfs: migration the tags fnode cache to 'cachevfs'
This will help sharing the cache between shares.
cachevfs: migrate tagscache to 'cachevfs'
This will help sharing the cache between shares.
cachevfs: migration the revbranchcache to 'cachevfs'
This will help sharing the cache between shares.
cachevfs: use the new vfs in when computing branchmap cache
This will help sharing the cache between shares.