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 EC9C515800F for ; Mon, 30 Jan 2023 10:26:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 25446E0934; Mon, 30 Jan 2023 10:26:39 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 D1698E0934 for ; Mon, 30 Jan 2023 10:26:38 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C4405335DA5 for ; Mon, 30 Jan 2023 10:26:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 54CFB771 for ; Mon, 30 Jan 2023 10:26:35 +0000 (UTC) From: "Horea Christian" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Horea Christian" Message-ID: <1675073671.933f19809917bf0e4b66f7f703c1ee8e546a7b11.chymera@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-libs/nibabel/ X-VCS-Repository: proj/sci X-VCS-Files: sci-libs/nibabel/nibabel-4.0.0.ebuild X-VCS-Directories: sci-libs/nibabel/ X-VCS-Committer: chymera X-VCS-Committer-Name: Horea Christian X-VCS-Revision: 933f19809917bf0e4b66f7f703c1ee8e546a7b11 X-VCS-Branch: master Date: Mon, 30 Jan 2023 10:26:35 +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: 8c401891-dbdc-4127-b3f1-3a5286bac48d X-Archives-Hash: 464185727fced3ebbe5920ed0f8f564b commit: 933f19809917bf0e4b66f7f703c1ee8e546a7b11 Author: Horea Christian chymera eu> AuthorDate: Mon Jan 30 10:14:31 2023 +0000 Commit: Horea Christian gmail com> CommitDate: Mon Jan 30 10:14:31 2023 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=933f1980 sci-libs/nibabel: version bump 4.0.0 Signed-off-by: Horea Christian chymera.eu> sci-libs/nibabel/nibabel-4.0.0.ebuild | 37 +++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/sci-libs/nibabel/nibabel-4.0.0.ebuild b/sci-libs/nibabel/nibabel-4.0.0.ebuild new file mode 100644 index 000000000..2de1e6dc9 --- /dev/null +++ b/sci-libs/nibabel/nibabel-4.0.0.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_10 ) +DISTUTILS_USE_SETUPTOOLS=rdepend + +inherit distutils-r1 + +DESCRIPTION="Access a cacophony of neuro-imaging file formats" +HOMEPAGE="https://nipy.org/nibabel/" +SRC_URI="https://github.com/nipy/nibabel/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="dicom" + +RDEPEND=" + dev-python/numpy[${PYTHON_USEDEP}] + dev-python/packaging[${PYTHON_USEDEP}] + dev-python/scipy[${PYTHON_USEDEP}] + dicom? ( + dev-python/pillow[${PYTHON_USEDEP}] + sci-libs/pydicom + ) +" + +EPYTEST_DESELECT=( + # Rported upstream: + # https://github.com/nipy/nibabel/issues/1191 + nibabel/tests/test_volumeutils.py::test_a2f_nan2zero_range +) + +distutils_enable_sphinx doc/source dev-python/texext dev-python/numpydoc dev-python/matplotlib +distutils_enable_tests pytest