summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin.mock/packages/maintainers-2/package.py
diff options
context:
space:
mode:
authorTodd Gamblin <tgamblin@llnl.gov>2019-07-24 00:17:06 -0700
committerTodd Gamblin <tgamblin@llnl.gov>2019-07-24 14:10:08 -0700
commitb0abbfecb8595c8901855e679be0bbea64089fe8 (patch)
tree6331725ece5e582b58bf4bed2168d894ae3eb6ee /var/spack/repos/builtin.mock/packages/maintainers-2/package.py
parent7411347a2958167f61682b24c5a314e4645ac821 (diff)
downloadspack-b0abbfecb8595c8901855e679be0bbea64089fe8.tar.gz
spack-b0abbfecb8595c8901855e679be0bbea64089fe8.tar.bz2
spack-b0abbfecb8595c8901855e679be0bbea64089fe8.tar.xz
spack-b0abbfecb8595c8901855e679be0bbea64089fe8.zip
new command: `spack maintainers` queries package maintainers
- We don't currently make enough use of the maintainers field on packages, though we could use it to assign reviews. - add a command that allows maintainers to be queried - can ask who is maintaining a package or packages - can ask what packages users are maintaining - can list all maintained or unmaintained packages - add tests for the command
Diffstat (limited to 'var/spack/repos/builtin.mock/packages/maintainers-2/package.py')
-rw-r--r--var/spack/repos/builtin.mock/packages/maintainers-2/package.py20
1 files changed, 20 insertions, 0 deletions
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