Skip to content
Snippets Groups Projects
Commit c12c843f authored by Pierre-Yves David's avatar Pierre-Yves David :octopus:
Browse files

bundlespec: phase out the `_bundlespeccgversions` mapping

The `_bundlespeccgversions` mapping is redundant with the `cg.version`
parameter. We move all users to the `cg.version` version and phase out the
`_bundlespeccgversions` mapping.
parent a75b530c
No related branches found
No related tags found
2 merge requests!168branching: merge default into stable,!108make it possible to create cg03 bundles
......@@ -56,7 +56,12 @@
b'tagsfnodescache': True,
b'revbranchcache': True,
},
b'packed1': {b'cg.version': b's1'},
b'packed1': {
b'cg.version': b's1',
},
b'bundle2': { # legacy
b'cg.version': b'02',
},
}
_bundlespeccontentopts[b'bundle2'] = _bundlespeccontentopts[b'v2']
......@@ -150,7 +155,7 @@
version, params = parseparams(version)
if version not in _bundlespeccgversions:
if version not in _bundlespeccontentopts:
raise error.UnsupportedBundleSpecification(
_(b'%s is not a recognized bundle version') % version
)
......@@ -172,7 +177,7 @@
# Modern compression engines require v2.
if compression not in _bundlespecv1compengines:
version = b'v2'
elif spec in _bundlespeccgversions:
elif spec in _bundlespeccontentopts:
if spec == b'packed1':
compression = b'none'
else:
......@@ -212,7 +217,7 @@
engine = util.compengines.forbundlename(compression)
compression, wirecompression = engine.bundletype()
wireversion = _bundlespeccgversions[version]
wireversion = _bundlespeccontentopts[version][b'cg.version']
return bundlespec(
compression, wirecompression, version, wireversion, params, contentopts
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment