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 9F1961382C5 for ; Wed, 20 Jan 2021 12:29:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C5639E0824; Wed, 20 Jan 2021 12:29:39 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 AA26AE0824 for ; Wed, 20 Jan 2021 12:29:39 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 BA0723410AE for ; Wed, 20 Jan 2021 12:29:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5B478B9 for ; Wed, 20 Jan 2021 12:29:37 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1611138606.f70ee4b8e441a7a03d4440c9672aef88664b6e81.andrewammerlaan@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: dev-python/fslpy/ X-VCS-Repository: proj/sci X-VCS-Files: dev-python/fslpy/fslpy-2.8.4.ebuild dev-python/fslpy/fslpy-3.4.0.ebuild X-VCS-Directories: dev-python/fslpy/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: f70ee4b8e441a7a03d4440c9672aef88664b6e81 X-VCS-Branch: master Date: Wed, 20 Jan 2021 12:29:37 +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: ac31695c-9691-49cd-88ef-e35ce8a2108f X-Archives-Hash: 17a1bfdde514d2de61f7ee8bd593841f commit: f70ee4b8e441a7a03d4440c9672aef88664b6e81 Author: Andrew Ammerlaan riseup net> AuthorDate: Wed Jan 20 10:30:06 2021 +0000 Commit: Andrew Ammerlaan riseup net> CommitDate: Wed Jan 20 10:30:06 2021 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=f70ee4b8 dev-python/fslpy: version bump. bump py targets Package-Manager: Portage-3.0.13, Repoman-3.0.2 Signed-off-by: Andrew Ammerlaan riseup.net> dev-python/fslpy/{fslpy-2.8.4.ebuild => fslpy-3.4.0.ebuild} | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/dev-python/fslpy/fslpy-2.8.4.ebuild b/dev-python/fslpy/fslpy-3.4.0.ebuild similarity index 85% rename from dev-python/fslpy/fslpy-2.8.4.ebuild rename to dev-python/fslpy/fslpy-3.4.0.ebuild index 572f1aae1..a01f84ab8 100644 --- a/dev-python/fslpy/fslpy-2.8.4.ebuild +++ b/dev-python/fslpy/fslpy-3.4.0.ebuild @@ -1,9 +1,10 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 PYTHON_COMPAT=( python3_{7,8} ) +DISTUTILS_USE_SETUPTOOLS=rdepend inherit distutils-r1 virtualx @@ -14,14 +15,7 @@ SRC_URI="https://github.com/pauldmccarthy/${PN}/archive/${PV}.tar.gz -> ${P}.tar LICENSE="BSD" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="test" -DEPEND=" - test? ( - dev-python/pytest[${PYTHON_USEDEP}] - ) - dev-python/setuptools[${PYTHON_USEDEP}] -" RDEPEND=" dev-python/h5py[${PYTHON_USEDEP}] dev-python/indexed_gzip[${PYTHON_USEDEP}] @@ -37,6 +31,8 @@ RDEPEND=" PATCHES=( "${FILESDIR}/fslpy-2.7.0-coverage.patch" ) +distutils_enable_tests pytest + python_test() { virtx pytest --niters=50 -m "not (dicomtest or longtest or fsltest)" --verbose || die }