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 63B43138359 for ; Wed, 12 Aug 2020 12:26:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 81A64E0814; Wed, 12 Aug 2020 12:25:59 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6A142E0814 for ; Wed, 12 Aug 2020 12:25:59 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1E3FE34F43F for ; Wed, 12 Aug 2020 12:25:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 900662D2 for ; Wed, 12 Aug 2020 12:25:56 +0000 (UTC) From: "Alexis Ballier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alexis Ballier" Message-ID: <1597235145.c2573621f2cf8d03eb11cd9539590c7fa3a0da56.aballier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/osrf_pycommon/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/osrf_pycommon/osrf_pycommon-0.1.10.ebuild X-VCS-Directories: dev-python/osrf_pycommon/ X-VCS-Committer: aballier X-VCS-Committer-Name: Alexis Ballier X-VCS-Revision: c2573621f2cf8d03eb11cd9539590c7fa3a0da56 X-VCS-Branch: master Date: Wed, 12 Aug 2020 12:25:56 +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: 1f1557df-b91a-41ce-8db4-396ed211948c X-Archives-Hash: c2e1b37111acd69176d5b3bb34d5bda4 commit: c2573621f2cf8d03eb11cd9539590c7fa3a0da56 Author: Alexis Ballier gentoo org> AuthorDate: Wed Aug 12 11:45:01 2020 +0000 Commit: Alexis Ballier gentoo org> CommitDate: Wed Aug 12 12:25:45 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2573621 dev-python/osrf_pycommon: add missing test dep Closes: https://bugs.gentoo.org/736826 Package-Manager: Portage-3.0.2, Repoman-2.3.23 Signed-off-by: Alexis Ballier gentoo.org> dev-python/osrf_pycommon/osrf_pycommon-0.1.10.ebuild | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/dev-python/osrf_pycommon/osrf_pycommon-0.1.10.ebuild b/dev-python/osrf_pycommon/osrf_pycommon-0.1.10.ebuild index 5766d731686..d38cfc41188 100644 --- a/dev-python/osrf_pycommon/osrf_pycommon-0.1.10.ebuild +++ b/dev-python/osrf_pycommon/osrf_pycommon-0.1.10.ebuild @@ -13,12 +13,16 @@ SRC_URI="https://github.com/osrf/osrf_pycommon/archive/${PV}.tar.gz -> ${P}.tar. LICENSE="Apache-2.0" SLOT="0" KEYWORDS="~amd64" -IUSE="" -RESTRICT="" +IUSE="test" +RESTRICT="!test? ( test )" DEPEND="dev-python/mock[${PYTHON_USEDEP}]" RDEPEND="${DEPEND}" -BDEPEND="" +BDEPEND=" + test? ( + dev-python/flake8[${PYTHON_USEDEP}] + ) +" PATCHES=( "${FILESDIR}/str.patch" ) distutils_enable_tests pytest