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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4A41C158087 for ; Fri, 14 Jan 2022 20:36:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8A87F2BC023; Fri, 14 Jan 2022 20:36:30 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 541732BC023 for ; Fri, 14 Jan 2022 20:36:30 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D4F83342F23 for ; Fri, 14 Jan 2022 20:36:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 544FA296 for ; Fri, 14 Jan 2022 20:36:27 +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: <1642188857.c377e8531bc653276cafbacdf6f41b5e3c53247e.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-3.8.1.ebuild X-VCS-Directories: dev-python/fslpy/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: c377e8531bc653276cafbacdf6f41b5e3c53247e X-VCS-Branch: master Date: Fri, 14 Jan 2022 20:36:27 +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: 384ea23e-1fe9-4a62-95ac-f9fe85f2c905 X-Archives-Hash: 2e59dffbeb0a9b84922bbece9937c574 commit: c377e8531bc653276cafbacdf6f41b5e3c53247e Author: Andrew Ammerlaan gentoo org> AuthorDate: Fri Jan 14 19:34:17 2022 +0000 Commit: Andrew Ammerlaan gentoo org> CommitDate: Fri Jan 14 19:34:17 2022 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=c377e853 dev-python/fslpy: add version 3.8.1 Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Andrew Ammerlaan gentoo.org> dev-python/fslpy/fslpy-3.8.1.ebuild | 39 +++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/dev-python/fslpy/fslpy-3.8.1.ebuild b/dev-python/fslpy/fslpy-3.8.1.ebuild new file mode 100644 index 000000000..092f36094 --- /dev/null +++ b/dev-python/fslpy/fslpy-3.8.1.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..9} ) + +inherit distutils-r1 virtualx + +DESCRIPTION="The FSL Python Library" +HOMEPAGE="https://git.fmrib.ox.ac.uk/fsl/fslpy" +SRC_URI="https://git.fmrib.ox.ac.uk/fsl/${PN}/-/archive/${PV}/${P}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + >=dev-python/h5py-2.9[${PYTHON_USEDEP}] + >=dev-python/indexed_gzip-0.7.0[${PYTHON_USEDEP}] + >=dev-python/numpy-1[${PYTHON_USEDEP}] + >=dev-python/pillow-3.2.0[${PYTHON_USEDEP}] + >=dev-python/trimesh-2.37.29[${PYTHON_USEDEP}] + =dev-python/wxpython-4*[${PYTHON_USEDEP}] + >=sci-libs/rtree-0.8.3[${PYTHON_USEDEP}] + >=sci-libs/nibabel-2.4[${PYTHON_USEDEP}] + >=dev-python/scipy-0.18[${PYTHON_USEDEP}] +" + +PATCHES=( + "${FILESDIR}/fslpy-2.7.0-coverage.patch" +) + +distutils_enable_tests pytest +distutils_enable_sphinx doc dev-python/sphinx_rtd_theme + +python_test() { + virtx epytest --niters=50 -m "not (dicomtest or longtest or fsltest)" +}