From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1292664-garchives=archives.gentoo.org@lists.gentoo.org> 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 81F071382C5 for <garchives@archives.gentoo.org>; Sat, 12 Jun 2021 05:51:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C5CEAE0817; Sat, 12 Jun 2021 05:51:52 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 ADEFBE0817 for <gentoo-commits@lists.gentoo.org>; Sat, 12 Jun 2021 05:51:52 +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 BE5C03407E0 for <gentoo-commits@lists.gentoo.org>; Sat, 12 Jun 2021 05:51:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 75C97796 for <gentoo-commits@lists.gentoo.org>; Sat, 12 Jun 2021 05:51:50 +0000 (UTC) From: "Sam James" <sam@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" <sam@gentoo.org> Message-ID: <1623477103.c8b401fb344a92d409740a20413f14ad825e4960.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/js2py/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/js2py/js2py-0.70_p20210218.ebuild X-VCS-Directories: dev-python/js2py/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: c8b401fb344a92d409740a20413f14ad825e4960 X-VCS-Branch: master Date: Sat, 12 Jun 2021 05:51:50 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 4cf73f06-1104-424f-be5e-276e4645dbc8 X-Archives-Hash: 61d3b40804637e445e90e56e48491e21 commit: c8b401fb344a92d409740a20413f14ad825e4960 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Sat Jun 12 05:51:35 2021 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Sat Jun 12 05:51:43 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8b401fb dev-python/js2py: add missing test BDEPEND Closes: https://bugs.gentoo.org/795474 Signed-off-by: Sam James <sam <AT> gentoo.org> dev-python/js2py/js2py-0.70_p20210218.ebuild | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dev-python/js2py/js2py-0.70_p20210218.ebuild b/dev-python/js2py/js2py-0.70_p20210218.ebuild index ee455c5dfa5..c4128377646 100644 --- a/dev-python/js2py/js2py-0.70_p20210218.ebuild +++ b/dev-python/js2py/js2py-0.70_p20210218.ebuild @@ -23,12 +23,16 @@ SRC_URI="https://github.com/PiotrDabkowski/${MY_PN}/archive/${MY_COMMIT}.tar.gz LICENSE="MIT" SLOT="0" KEYWORDS="~amd64 ~x86" +IUSE="test" + +RESTRICT="!test? ( test )" RDEPEND=" >=dev-python/pyjsparser-2.5.1[${PYTHON_USEDEP}] >=dev-python/tzlocal-1.2.0[${PYTHON_USEDEP}] >=dev-python/six-1.10.0[${PYTHON_USEDEP}] " +BDEPEND="test? ( ${RDEPEND} )" S="${WORKDIR}/${MY_PN}-${MY_COMMIT}"