[Updated] [+ ] D11995: legacy-revlog: fix requirement computation when cloning legacy repo
marmoute (Pierre-Yves David)
phabricator at mercurial-scm.org
Mon Jan 24 14:54:23 UTC 2022
marmoute updated this revision to Diff 31790.
REPOSITORY
rHG Mercurial
CHANGES SINCE LAST UPDATE
https://phab.mercurial-scm.org/D11995?vs=31650&id=31790
BRANCH
default
CHANGES SINCE LAST ACTION
https://phab.mercurial-scm.org/D11995/new/
REVISION DETAIL
https://phab.mercurial-scm.org/D11995
AFFECTED FILES
mercurial/localrepo.py
CHANGE DETAILS
diff --git a/mercurial/localrepo.py b/mercurial/localrepo.py
--- a/mercurial/localrepo.py
+++ b/mercurial/localrepo.py
@@ -3543,6 +3543,10 @@
depends on the configuration
"""
target_requirements = set()
+ if not srcrepo.requirements:
+ # this is a legacy revlog "v0" repository, we cannot do anything fancy
+ # with it.
+ return target_requirements
createopts = defaultcreateopts(ui, createopts=createopts)
for r in newreporequirements(ui, createopts):
if r in requirementsmod.WORKING_DIR_REQUIREMENTS:
To: marmoute, #hg-reviewers, Alphare
Cc: mercurial-patches
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.mercurial-scm.org/pipermail/mercurial-patches/attachments/20220124/6379b11e/attachment-0002.html>
More information about the Mercurial-patches
mailing list