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 3F33F138351 for ; Fri, 13 Mar 2020 17:50:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7C46BE0B4C; Fri, 13 Mar 2020 17:50:23 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 5F98BE0B4C for ; Fri, 13 Mar 2020 17:50:23 +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 A687B34EF79 for ; Fri, 13 Mar 2020 17:50:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 759509C for ; Fri, 13 Mar 2020 17:50:08 +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: <1584121800.5199050855472db48e12b9669c4075560bf0f63a.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-3.0.2.ebuild X-VCS-Directories: sci-libs/nibabel/ X-VCS-Committer: chymera X-VCS-Committer-Name: Horea Christian X-VCS-Revision: 5199050855472db48e12b9669c4075560bf0f63a X-VCS-Branch: master Date: Fri, 13 Mar 2020 17:50:08 +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: 8a72a9db-e80f-48dd-9c1c-ebba4593e5d3 X-Archives-Hash: 4c733e644462be62aa90adec7a00ebaa commit: 5199050855472db48e12b9669c4075560bf0f63a Author: Horea Christian chymera eu> AuthorDate: Fri Mar 13 17:50:00 2020 +0000 Commit: Horea Christian gmail com> CommitDate: Fri Mar 13 17:50:00 2020 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=51990508 sci-libs/nibabel: version bump 3.0.2 Package-Manager: Portage-2.3.92, Repoman-2.3.20 Signed-off-by: Horea Christian chymera.eu> sci-libs/nibabel/nibabel-3.0.2.ebuild | 42 +++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/sci-libs/nibabel/nibabel-3.0.2.ebuild b/sci-libs/nibabel/nibabel-3.0.2.ebuild new file mode 100644 index 000000000..e64e4e48b --- /dev/null +++ b/sci-libs/nibabel/nibabel-3.0.2.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_6 python3_7 ) + +inherit distutils-r1 + +DESCRIPTION="Access a cacophony of neuro-imaging file formats" +HOMEPAGE="http://nipy.org/nibabel/" +SRC_URI="https://github.com/nipy/nibabel/archive/${PV}.tar.gz -> ${P}.tar.gz" + +KEYWORDS="~amd64 ~x86" + +LICENSE="MIT" +SLOT="0" +IUSE="dicom doc test" + +RDEPEND=" + dev-python/numpy[${PYTHON_USEDEP}] + sci-libs/scipy[${PYTHON_USEDEP}] + dev-python/mock[${PYTHON_USEDEP}] + dicom? ( + sci-libs/pydicom[${PYTHON_USEDEP}] + dev-python/pillow[${PYTHON_USEDEP}] + ) +" +DEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( + ${RDEPEND} + dev-python/nose[${PYTHON_USEDEP}] + ) + doc? ( dev-python/sphinx[${PYTHON_USEDEP}] ) +" + +python_test() { + cd "${BUILD_DIR}" || die + echo "backend: Agg" > matplotlibrc + MPLCONFIGDIR=. nosetests || die +}