
- [x] add `concretize.lp`, `spack.yaml`, etc. to licensed files - [x] update all licensed files to say 2013-2021 using `spack license update-copyright-year` - [x] appease mypy with some additions to package.py that needed for oneapi.py
20 lines
759 B
Python
20 lines
759 B
Python
# Copyright 2013-2021 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)
|
|
|
|
|
|
class PyRosdistro(PythonPackage):
|
|
"""A tool to work with rosdistro files."""
|
|
|
|
homepage = "https://wiki.ros.org/rosdistro"
|
|
pypi = "rosdistro/rosdistro-0.8.3.tar.gz"
|
|
|
|
version('0.8.3', sha256='e14893e0408a2e1fb3ecaef0a9fc978a3675519b828c1fff29ba6a78299b37bd')
|
|
|
|
depends_on('py-pyyaml', type=('build', 'run'))
|
|
depends_on('py-setuptools', type=('build', 'run'))
|
|
depends_on('py-argparse', when='^python@:2.6', type=('build', 'run'))
|
|
depends_on('py-catkin-pkg', type=('build', 'run'))
|
|
depends_on('py-rospkg', type=('build', 'run'))
|