diff options
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin.mock/packages/maintainers-1/package.py | 20 | ||||
-rw-r--r-- | var/spack/repos/builtin.mock/packages/maintainers-2/package.py | 20 |
2 files changed, 40 insertions, 0 deletions
diff --git a/var/spack/repos/builtin.mock/packages/maintainers-1/package.py b/var/spack/repos/builtin.mock/packages/maintainers-1/package.py new file mode 100644 index 0000000000..75917da005 --- /dev/null +++ b/var/spack/repos/builtin.mock/packages/maintainers-1/package.py @@ -0,0 +1,20 @@ +# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other +# Spack Project Developers. See the top-level COPYRIGHT file for details. +# +# SPDX-License-Identifier: (Apache-2.0 OR MIT) + +from spack import * + + +class Maintainers1(Package): + """Package with a maintainers field.""" + + homepage = "http://www.example.com" + url = "http://www.example.com/maintainers-1.0.tar.gz" + + maintainers = ['user1', 'user2'] + + version('1.0', '0123456789abcdef0123456789abcdef') + + def install(self, spec, prefix): + pass diff --git a/var/spack/repos/builtin.mock/packages/maintainers-2/package.py b/var/spack/repos/builtin.mock/packages/maintainers-2/package.py new file mode 100644 index 0000000000..a198bde1e3 --- /dev/null +++ b/var/spack/repos/builtin.mock/packages/maintainers-2/package.py @@ -0,0 +1,20 @@ +# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other +# Spack Project Developers. See the top-level COPYRIGHT file for details. +# +# SPDX-License-Identifier: (Apache-2.0 OR MIT) + +from spack import * + + +class Maintainers2(Package): + """A second package with a maintainers field.""" + + homepage = "http://www.example.com" + url = "http://www.example.com/maintainers2-1.0.tar.gz" + + maintainers = ['user2', 'user3'] + + version('1.0', '0123456789abcdef0123456789abcdef') + + def install(self, spec, prefix): + pass |