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 9E113138350 for ; Sun, 8 Mar 2020 16:02:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B8F3CE08BE; Sun, 8 Mar 2020 16:02:05 +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 9FAC3E08BE for ; Sun, 8 Mar 2020 16:02:05 +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 9191934F69B for ; Sun, 8 Mar 2020 16:02:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 36CAB161 for ; Sun, 8 Mar 2020 16:02:01 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1583683289.e32369b84a0bf6bb3325cba6812ae241c4b06e67.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/symengine/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/symengine/symengine-0.5.1-r1.ebuild X-VCS-Directories: dev-python/symengine/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: e32369b84a0bf6bb3325cba6812ae241c4b06e67 X-VCS-Branch: master Date: Sun, 8 Mar 2020 16:02:01 +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: 86e3ef78-1606-43fa-9290-c1965eca199a X-Archives-Hash: 1fcd92b1f66d4abf755c47d19ee50d30 commit: e32369b84a0bf6bb3325cba6812ae241c4b06e67 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Mar 8 14:56:57 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Mar 8 16:01:29 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e32369b8 dev-python/symengine: Add missing test dependency dev-python/sympy Closes: https://bugs.gentoo.org/643450 Package-Manager: Portage-2.3.93, Repoman-2.3.20 Signed-off-by: Andreas Sturmlechner gentoo.org> dev-python/symengine/symengine-0.5.1-r1.ebuild | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/dev-python/symengine/symengine-0.5.1-r1.ebuild b/dev-python/symengine/symengine-0.5.1-r1.ebuild index fe8498abaaf..bc17c97a17b 100644 --- a/dev-python/symengine/symengine-0.5.1-r1.ebuild +++ b/dev-python/symengine/symengine-0.5.1-r1.ebuild @@ -3,7 +3,7 @@ EAPI=6 -PYTHON_COMPAT=( python{3_6,3_7} ) +PYTHON_COMPAT=( python3_{6,7} ) inherit distutils-r1 @@ -17,19 +17,24 @@ LICENSE="MIT" SLOT="0" KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" IUSE="test" + RESTRICT="!test? ( test )" + RDEPEND=" dev-python/numpy[${PYTHON_USEDEP}] >=sci-libs/symengine-0.5" DEPEND="${RDEPEND} dev-python/cython[${PYTHON_USEDEP}] dev-python/setuptools[${PYTHON_USEDEP}] - test? ( dev-python/nose[${PYTHON_USEDEP}] )" + test? ( + dev-python/nose[${PYTHON_USEDEP}] + dev-python/sympy[${PYTHON_USEDEP}] + )" S="${WORKDIR}/${MYP}" python_test() { - cd "${BUILD_DIR}" + cd "${BUILD_DIR}" || die nosetests -v || die "tests failed with ${EPYTHON}" }