Working properly to display but not reuse old specs from yaml

This commit is contained in:
Gregory Becker 2016-05-06 18:03:43 -07:00
parent 06b9433351
commit 1523ebe9f7

View file

@ -755,8 +755,7 @@ def dag_hash(self, length=None):
"""
Return a hash of the entire spec DAG, including connectivity.
"""
print self, "++"
if getattr(self, 'hash', None):
if self.hash:
return self.hash
else:
yaml_text = yaml.dump(
@ -769,8 +768,7 @@ def dag_hash(self, length=None):
def to_node_dict(self):
params = dict( (name, v.value) for name, v in self.variants.items() )
params.update( dict( (name, []) for name in FlagMap.valid_compiler_flags() ) )
params.update( dict( (name, value) for name, value in self.compiler_flags.items()) ) #override
params.update( dict( (name, value) for name, value in self.compiler_flags.items()) )
d = {
'parameters' : params,
'arch' : self.architecture,
@ -1646,6 +1644,7 @@ def _dup(self, other, **kwargs):
self.variants.spec = self
self.external = other.external
self.namespace = other.namespace
self.hash = other.hash
# If we copy dependencies, preserve DAG structure in the new spec
if kwargs.get('deps', True):
@ -1771,7 +1770,8 @@ def _cmp_node(self):
self.variants,
self.architecture,
self.compiler,
self.compiler_flags)
self.compiler_flags,
self.dag_hash())
def eq_node(self, other):
@ -2126,8 +2126,6 @@ def spec(self, name, check_valid_token = False):
if spec_name != '':
self.check_identifier(spec_name)
print spec_name, "++"
# This will init the spec without calling __init__.
spec = Spec.__new__(Spec)
spec.name = spec_name