Skip to content

Commit

Permalink
dev-ros/ament_lint_cmake: enable py3.9, enable py3.10
Browse files Browse the repository at this point in the history
passes tests

Signed-off-by: Arthur Zamarin <[email protected]>
  • Loading branch information
arthurzam committed Sep 24, 2021
1 parent 15c4bd3 commit d6ff401
Showing 1 changed file with 4 additions and 14 deletions.
18 changes: 4 additions & 14 deletions dev-ros/ament_lint_cmake/ament_lint_cmake-0.11.2.ebuild
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

EAPI=7

PYTHON_COMPAT=( python{3_7,3_8} )
PYTHON_COMPAT=( python3_{8..10} )
DISTUTILS_USE_SETUPTOOLS=rdepend

inherit distutils-r1
Expand All @@ -12,35 +12,25 @@ ROS_PN="ament_lint"
if [ "${PV#9999}" != "${PV}" ] ; then
inherit git-r3
EGIT_REPO_URI="https://github.com/ament/ament_lint"
SRC_URI=""
S=${WORKDIR}/${P}/${PN}
S="${WORKDIR}/${P}/${PN}"
else
SRC_URI="https://github.com/ament/ament_lint/archive/${PV}.tar.gz -> ${ROS_PN}-${PV}.tar.gz"
S="${WORKDIR}/${ROS_PN}-${PV}/${PN}"
KEYWORDS="~amd64"
fi

DESCRIPTION="Lint CMake code using cmakelint and generate xUnit test result files"
HOMEPAGE="https://github.com/ament/ament_lint"

LICENSE="Apache-2.0"
SLOT="0"
if [ "${PV#9999}" != "${PV}" ] ; then
PROPERTIES="live"
else
KEYWORDS="~amd64"
fi
IUSE="test"

RDEPEND="
"
DEPEND="${RDEPEND}
BDEPEND="
test? (
dev-ros/ament_flake8[${PYTHON_USEDEP}]
dev-ros/ament_pep257[${PYTHON_USEDEP}]
dev-ros/ament_copyright[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)
"
BDEPEND=""

distutils_enable_tests pytest

0 comments on commit d6ff401

Please sign in to comment.