diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/spack/spack/package.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/spack/spack/package.py b/lib/spack/spack/package.py index e2877ac72a..0b49cf5db3 100644 --- a/lib/spack/spack/package.py +++ b/lib/spack/spack/package.py @@ -563,6 +563,10 @@ class PackageBase(with_metaclass(PackageMeta, object)): #: Do not include @ here in order not to unnecessarily ping the users. maintainers = [] + #: List of attributes which affect do not affect a package's content. + metadata_attrs = ['homepage', 'url', 'list_url', 'extendable', 'parallel', + 'make_jobs'] + def __init__(self, spec): # this determines how the package should be built. self.spec = spec |