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 680CF15800F for ; Mon, 30 Jan 2023 10:27:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8E483E0938; Mon, 30 Jan 2023 10:27:29 +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 78A33E0938 for ; Mon, 30 Jan 2023 10:27:29 +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 6CEA6335DAC for ; Mon, 30 Jan 2023 10:27:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DDBA8771 for ; Mon, 30 Jan 2023 10:27:26 +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: <1675074423.72bd1a64770f38360ebfb9a96e0f47cfe857778c.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-5.0.0.ebuild X-VCS-Directories: sci-libs/nibabel/ X-VCS-Committer: chymera X-VCS-Committer-Name: Horea Christian X-VCS-Revision: 72bd1a64770f38360ebfb9a96e0f47cfe857778c X-VCS-Branch: master Date: Mon, 30 Jan 2023 10:27:26 +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: 3b052f8f-2d49-4531-ab60-4d08f1e62c47 X-Archives-Hash: 0a2a9f6b2722d6a02143cc2b6221db30 commit: 72bd1a64770f38360ebfb9a96e0f47cfe857778c Author: Horea Christian chymera eu> AuthorDate: Mon Jan 30 10:27:03 2023 +0000 Commit: Horea Christian gmail com> CommitDate: Mon Jan 30 10:27:03 2023 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=72bd1a64 sci-libs/nibabel: version bump 5.0.0 Signed-off-by: Horea Christian chymera.eu> sci-libs/nibabel/nibabel-5.0.0.ebuild | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/sci-libs/nibabel/nibabel-5.0.0.ebuild b/sci-libs/nibabel/nibabel-5.0.0.ebuild new file mode 100644 index 000000000..07c2b35fc --- /dev/null +++ b/sci-libs/nibabel/nibabel-5.0.0.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_10 ) +DISTUTILS_USE_PEP517=hatchling + +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 + ) +" + +BDEPEND="test? ( + dev-python/pytest-httpserver[${PYTHON_USEDEP}] +)" + +distutils_enable_sphinx doc/source dev-python/texext dev-python/numpydoc dev-python/matplotlib +distutils_enable_tests pytest