summaryrefslogtreecommitdiff
path: root/morphlib/source.py
diff options
context:
space:
mode:
authorTiago Gomes <tiago.gomes@codethink.co.uk>2015-11-20 13:57:31 +0000
committerPedro Alvarez <pedro.alvarez@codethink.co.uk>2016-03-25 21:02:33 +0000
commitddb8b27d5056074013a89d8ab277e39fdc1f069d (patch)
tree5ecf61560608dbea1ec1895e5cff2622959556b7 /morphlib/source.py
parent9404317020ff0455cbfd3ca7976d546af823759b (diff)
downloadmorph-ddb8b27d5056074013a89d8ab277e39fdc1f069d.tar.gz
WIP Add support for multiple sources per chunk
TODO: - Add API to the cache server to retrieve a submodule commit from a given path. - Fix cross-bootstrap command. Change-Id: I3475c2bcb648a272fee33bc878a521f79d4e6581
Diffstat (limited to 'morphlib/source.py')
-rw-r--r--morphlib/source.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/morphlib/source.py b/morphlib/source.py
index 135c14cc..e7486b56 100644
--- a/morphlib/source.py
+++ b/morphlib/source.py
@@ -78,7 +78,7 @@ class Source(object):
def make_sources(reponame, ref, filename, absref, tree, morphology,
- default_split_rules={}):
+ default_split_rules={}, subtrees=[]):
kind = morphology['kind']
if kind in ('system', 'chunk'):
unifier = getattr(morphlib.artifactsplitrule,
@@ -92,6 +92,7 @@ def make_sources(reponame, ref, filename, absref, tree, morphology,
filename, split_rules)
source.artifacts = {name: morphlib.artifact.Artifact(source, name)
for name in split_rules.artifacts}
+ source.subtrees = subtrees
yield source
elif kind == 'stratum': # pragma: no cover
unifier = morphlib.artifactsplitrule.unify_stratum_matches