diff options
author | 2021-08-03 16:01:03 +0200 | |
---|---|---|
committer | 2021-08-03 16:12:21 +0200 | |
commit | c5566b0759e89abc79fc8e73143f450ec3978929 (patch) | |
tree | c6a87cccbeb2ff85b557f8d1b57c3b19fca060c3 /dev-ros/ament_lint/ament_lint-9999.ebuild | |
parent | dev-ros/ament_lint: Remove old (diff) | |
download | gentoo-c5566b0759e89abc79fc8e73143f450ec3978929.tar.gz gentoo-c5566b0759e89abc79fc8e73143f450ec3978929.tar.bz2 gentoo-c5566b0759e89abc79fc8e73143f450ec3978929.zip |
dev-ros/ament_lint: python improvements
add py39 & 310
setup distutils dep properly
enable but restrict tests
Closes: https://bugs.gentoo.org/798624
Closes: https://bugs.gentoo.org/803005
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Alexis Ballier <aballier@gentoo.org>
Diffstat (limited to 'dev-ros/ament_lint/ament_lint-9999.ebuild')
-rw-r--r-- | dev-ros/ament_lint/ament_lint-9999.ebuild | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/dev-ros/ament_lint/ament_lint-9999.ebuild b/dev-ros/ament_lint/ament_lint-9999.ebuild index ea29b12dcd4..8c8bff8aecc 100644 --- a/dev-ros/ament_lint/ament_lint-9999.ebuild +++ b/dev-ros/ament_lint/ament_lint-9999.ebuild @@ -3,7 +3,8 @@ EAPI=7 -PYTHON_COMPAT=( python{3_7,3_8} ) +PYTHON_COMPAT=( python{3_8,3_9,3_10} ) +DISTUTILS_USE_SETUPTOOLS=rdepend inherit distutils-r1 @@ -33,3 +34,7 @@ IUSE="" RDEPEND="" DEPEND="${RDEPEND}" BDEPEND="" +# pytest.ini is there but no tests are ran causing it to fail +RESTRICT="test" + +distutils_enable_tests pytest |