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 1F12C15800F for ; Thu, 12 Jan 2023 12:18:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 53E95E092C; Thu, 12 Jan 2023 12:18:08 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 39FB9E092C for ; Thu, 12 Jan 2023 12:18:08 +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 6DF02340DB5 for ; Thu, 12 Jan 2023 12:18:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DEF8F7FF for ; Thu, 12 Jan 2023 12:18:05 +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: <1673525514.fe7a9e59b0096a5b06040a82bd97c63969b94cb7.andrewammerlaan@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: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: fe7a9e59b0096a5b06040a82bd97c63969b94cb7 X-VCS-Branch: master Date: Thu, 12 Jan 2023 12:18:05 +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: 613c6bcf-1ec5-4af8-80e9-b0ad2e05f98c X-Archives-Hash: 6c7e9ff52e65b0378954d53d83638b60 commit: fe7a9e59b0096a5b06040a82bd97c63969b94cb7 Author: Andrew Ammerlaan gentoo org> AuthorDate: Thu Jan 12 12:11:54 2023 +0000 Commit: Andrew Ammerlaan gentoo org> CommitDate: Thu Jan 12 12:11:54 2023 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=fe7a9e59 sci-libs/nibabel: drop 3.0.2 Signed-off-by: Andrew Ammerlaan gentoo.org> sci-libs/nibabel/nibabel-3.0.2.ebuild | 42 ----------------------------------- 1 file changed, 42 deletions(-) diff --git a/sci-libs/nibabel/nibabel-3.0.2.ebuild b/sci-libs/nibabel/nibabel-3.0.2.ebuild deleted file mode 100644 index 6c2cff127..000000000 --- a/sci-libs/nibabel/nibabel-3.0.2.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_10 ) - -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 doc test" -RESTRICT="!test? ( test )" - -RDEPEND=" - dev-python/numpy[${PYTHON_USEDEP}] - dev-python/scipy[${PYTHON_USEDEP}] - dev-python/mock[${PYTHON_USEDEP}] - dicom? ( - sci-libs/pydicom - 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 -}