update docstring
Signed-off-by: Todd Gamblin <tgamblin@llnl.gov>
This commit is contained in:
parent
d06d812013
commit
e296d19146
@ -1754,16 +1754,31 @@ def all_patches(cls):
|
|||||||
return patches
|
return patches
|
||||||
|
|
||||||
def artifact_hashes(self, content=None):
|
def artifact_hashes(self, content=None):
|
||||||
"""Create a hash based on the artifacts and patches used to build this package.
|
"""Create a dictionary of hashes of artifacts used in the build of this package.
|
||||||
|
|
||||||
This includes:
|
This includes:
|
||||||
* source artifacts (tarballs, repositories) used to build;
|
* source artifacts (tarballs, repositories) used to build;
|
||||||
* content hashes (``sha256``'s) of all patches applied by Spack; and
|
* content hashes (``sha256``'s) of all patches applied by Spack; and
|
||||||
* canonicalized contents the ``package.py`` recipe used to build.
|
* canonicalized contents the ``package.py`` recipe used to build.
|
||||||
|
|
||||||
This hash is only included in Spack's DAG hash for concrete specs, but if it
|
Example::
|
||||||
happens to be called on a package with an abstract spec, only applicable (i.e.,
|
|
||||||
determinable) portions of the hash will be included.
|
{
|
||||||
|
"package_hash": "qovi2hm2n2qsatng2r4n55yzjlhnwflx",
|
||||||
|
"sources": [
|
||||||
|
{
|
||||||
|
"sha256": "fc5fd69bb8736323f026672b1b7235da613d7177e72558893a0bdcd320466d60",
|
||||||
|
"type": "archive"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"sha256": "56ab9b90f5acbc42eb7a94cf482e6c058a63e8a1effdf572b8b2a6323a06d923",
|
||||||
|
"type": "archive"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
All hashes are added to concrete specs at the end of concretization. If this
|
||||||
|
method is called on an abstract spec, only hashes that can be known from the
|
||||||
|
abstract spec will be included.
|
||||||
|
|
||||||
"""
|
"""
|
||||||
hashes = syaml.syaml_dict()
|
hashes = syaml.syaml_dict()
|
||||||
|
Loading…
Reference in New Issue
Block a user