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 0A507158012 for ; Thu, 23 Sep 2021 14:07:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4A9EBE097D; Thu, 23 Sep 2021 14:07:40 +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 318CBE097D for ; Thu, 23 Sep 2021 14:07:40 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4B642342E19 for ; Thu, 23 Sep 2021 14:07:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 90DF7109 for ; Thu, 23 Sep 2021 14:07:36 +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: <1632406019.efa7878a6a320688495cbc5e1b6b3b75c86f8ee5.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/urdf_parser_py/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/urdf_parser_py/urdf_parser_py-0.4.5.ebuild X-VCS-Directories: dev-python/urdf_parser_py/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: efa7878a6a320688495cbc5e1b6b3b75c86f8ee5 X-VCS-Branch: master Date: Thu, 23 Sep 2021 14:07:36 +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: 462b6872-2035-4be7-a1c2-07722324df08 X-Archives-Hash: 924fd25ba304d211bfcf3a090dea47d9 commit: efa7878a6a320688495cbc5e1b6b3b75c86f8ee5 Author: Arthur Zamarin gentoo org> AuthorDate: Thu Sep 16 11:38:37 2021 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Thu Sep 23 14:06:59 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=efa7878a dev-python/urdf_parser_py: enable py3.10, use d_e_t passes tests Signed-off-by: Arthur Zamarin gentoo.org> dev-python/urdf_parser_py/urdf_parser_py-0.4.5.ebuild | 18 +++++------------- 1 file changed, 5 insertions(+), 13 deletions(-) diff --git a/dev-python/urdf_parser_py/urdf_parser_py-0.4.5.ebuild b/dev-python/urdf_parser_py/urdf_parser_py-0.4.5.ebuild index eb02edd82ce..7d12842e372 100644 --- a/dev-python/urdf_parser_py/urdf_parser_py-0.4.5.ebuild +++ b/dev-python/urdf_parser_py/urdf_parser_py-0.4.5.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python{3_7,3_8,3_9} ) +PYTHON_COMPAT=( python3_{8..10} ) inherit distutils-r1 DESCRIPTION="URDF parser for Python" @@ -13,24 +13,16 @@ SRC_URI="https://github.com/ros/urdf_parser_py/archive/${PV}.tar.gz -> ${P}.tar. LICENSE="BSD" SLOT="0" KEYWORDS="~amd64 ~arm" -IUSE="test" -RESTRICT="!test? ( test )" -DEPEND="" -RDEPEND="${DEPEND} +RDEPEND=" dev-python/pyyaml[${PYTHON_USEDEP}] dev-python/lxml[${PYTHON_USEDEP}] dev-python/catkin_pkg[${PYTHON_USEDEP}] " -DEPEND="${RDEPEND} +BDEPEND=" test? ( - dev-python/nose[${PYTHON_USEDEP}] dev-python/mock[${PYTHON_USEDEP}] - )" -BDEPEND=" - dev-python/setuptools[${PYTHON_USEDEP}] + ) " -python_test() { - nosetests --with-coverage || die -} +distutils_enable_tests nose