From b0abbfecb8595c8901855e679be0bbea64089fe8 Mon Sep 17 00:00:00 2001 From: Todd Gamblin Date: Wed, 24 Jul 2019 00:17:06 -0700 Subject: 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 --- .../builtin.mock/packages/maintainers-2/package.py | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 var/spack/repos/builtin.mock/packages/maintainers-2/package.py (limited to 'var/spack/repos/builtin.mock/packages/maintainers-2/package.py') 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 -- cgit v1.2.3-60-g2f50