diff options
author | Adam J. Stewart <ajstewart426@gmail.com> | 2020-11-28 11:01:33 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-28 11:01:33 -0600 |
commit | 7c26a10de8a21886f3322c8cdcc978146782f95b (patch) | |
tree | b65c123048efba401af062a89e6608e02bd1c61d /var | |
parent | 6f3bb73dd387fd73022a20c3a45adf05213339cf (diff) | |
download | spack-7c26a10de8a21886f3322c8cdcc978146782f95b.tar.gz spack-7c26a10de8a21886f3322c8cdcc978146782f95b.tar.bz2 spack-7c26a10de8a21886f3322c8cdcc978146782f95b.tar.xz spack-7c26a10de8a21886f3322c8cdcc978146782f95b.zip |
py-rosinstall: add new package (#20110)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/py-rosinstall/package.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-rosinstall/package.py b/var/spack/repos/builtin/packages/py-rosinstall/package.py new file mode 100644 index 0000000000..07bdec1222 --- /dev/null +++ b/var/spack/repos/builtin/packages/py-rosinstall/package.py @@ -0,0 +1,20 @@ +# Copyright 2013-2020 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 PyRosinstall(PythonPackage): + """The installer for ROS.""" + + homepage = "https://wiki.ros.org/rosinstall" + url = "https://pypi.io/packages/source/r/rosinstall/rosinstall-0.7.8.tar.gz" + + version('0.7.8', sha256='2ba808bf8bac2cc3f13af9745184b9714c1426e11d09eb96468611b2ad47ed40') + + depends_on('py-setuptools', type='build') + depends_on('py-vcstools@0.1.38:', type=('build', 'run')) + depends_on('py-pyyaml', type=('build', 'run')) + depends_on('py-rosdistro@0.3.0:', type=('build', 'run')) + depends_on('py-catkin-pkg', type=('build', 'run')) + depends_on('py-wstool@0.1.12:', type=('build', 'run')) |