From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5E56F158012 for ; Fri, 24 Sep 2021 10:33:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7B170E096A; Fri, 24 Sep 2021 10:33:32 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5E297E096A for ; Fri, 24 Sep 2021 10:33:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 944D9342D5B for ; Fri, 24 Sep 2021 10:33:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C132E11D for ; Fri, 24 Sep 2021 10:33:27 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1632479377.a0792aca6086d69fbef6d320e911aea4f07214d6.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ros/ament_pep257/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ros/ament_pep257/ament_pep257-0.11.2.ebuild dev-ros/ament_pep257/ament_pep257-9999.ebuild X-VCS-Directories: dev-ros/ament_pep257/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: a0792aca6086d69fbef6d320e911aea4f07214d6 X-VCS-Branch: master Date: Fri, 24 Sep 2021 10:33:27 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: e2b62705-e09b-41e3-81e0-ab187e61b09f X-Archives-Hash: 6622fd93b3b09fb9490a8fe39fcef5a8 commit: a0792aca6086d69fbef6d320e911aea4f07214d6 Author: Arthur Zamarin gentoo org> AuthorDate: Fri Sep 24 08:13:42 2021 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Fri Sep 24 10:29:37 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0792aca dev-ros/ament_pep257: enable py3.9, enable py3.10 passes tests Signed-off-by: Arthur Zamarin gentoo.org> dev-ros/ament_pep257/ament_pep257-0.11.2.ebuild | 17 +++++------------ dev-ros/ament_pep257/ament_pep257-9999.ebuild | 17 +++++------------ 2 files changed, 10 insertions(+), 24 deletions(-) diff --git a/dev-ros/ament_pep257/ament_pep257-0.11.2.ebuild b/dev-ros/ament_pep257/ament_pep257-0.11.2.ebuild index d68cc9cf4ec..92564bbd5e5 100644 --- a/dev-ros/ament_pep257/ament_pep257-0.11.2.ebuild +++ b/dev-ros/ament_pep257/ament_pep257-0.11.2.ebuild @@ -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 @@ -12,11 +12,11 @@ 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="Checks code against style conventions in PEP 8 and generate test result files" @@ -24,23 +24,16 @@ 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=" dev-ros/ament_lint[${PYTHON_USEDEP}] dev-python/pydocstyle[${PYTHON_USEDEP}] " -DEPEND="${RDEPEND} +DEPEND="${RDEPEND}" +BDEPEND=" test? ( dev-ros/ament_flake8[${PYTHON_USEDEP}] - dev-python/pytest[${PYTHON_USEDEP}] ) " -BDEPEND="" distutils_enable_tests pytest diff --git a/dev-ros/ament_pep257/ament_pep257-9999.ebuild b/dev-ros/ament_pep257/ament_pep257-9999.ebuild index d68cc9cf4ec..92564bbd5e5 100644 --- a/dev-ros/ament_pep257/ament_pep257-9999.ebuild +++ b/dev-ros/ament_pep257/ament_pep257-9999.ebuild @@ -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 @@ -12,11 +12,11 @@ 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="Checks code against style conventions in PEP 8 and generate test result files" @@ -24,23 +24,16 @@ 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=" dev-ros/ament_lint[${PYTHON_USEDEP}] dev-python/pydocstyle[${PYTHON_USEDEP}] " -DEPEND="${RDEPEND} +DEPEND="${RDEPEND}" +BDEPEND=" test? ( dev-ros/ament_flake8[${PYTHON_USEDEP}] - dev-python/pytest[${PYTHON_USEDEP}] ) " -BDEPEND="" distutils_enable_tests pytest