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 9D284158094 for ; Mon, 11 Jul 2022 12:24:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B52B8E0C19; Mon, 11 Jul 2022 12:24:57 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 97AF8E0C19 for ; Mon, 11 Jul 2022 12:24:57 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 1AB7533BF0F for ; Mon, 11 Jul 2022 12:24:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 77ACD52B for ; Mon, 11 Jul 2022 12:24:54 +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: <1657542283.1f98a37e19cfca2905852b935e0512f36f2bd6e1.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-2.5.1.ebuild X-VCS-Directories: sci-libs/nibabel/ X-VCS-Committer: chymera X-VCS-Committer-Name: Horea Christian X-VCS-Revision: 1f98a37e19cfca2905852b935e0512f36f2bd6e1 X-VCS-Branch: master Date: Mon, 11 Jul 2022 12:24:54 +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: d6b542b8-39c1-4354-b7e5-757c7f08dc71 X-Archives-Hash: 59723466a766b4561a9da0efb956d35a commit: 1f98a37e19cfca2905852b935e0512f36f2bd6e1 Author: Horea Christian chymera eu> AuthorDate: Mon Jul 11 12:24:43 2022 +0000 Commit: Horea Christian gmail com> CommitDate: Mon Jul 11 12:24:43 2022 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=1f98a37e sci-libs/nibabel: dropped version with missing sources Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Horea Christian chymera.eu> sci-libs/nibabel/nibabel-2.5.1.ebuild | 42 ----------------------------------- 1 file changed, 42 deletions(-) diff --git a/sci-libs/nibabel/nibabel-2.5.1.ebuild b/sci-libs/nibabel/nibabel-2.5.1.ebuild deleted file mode 100644 index f0759b51a..000000000 --- a/sci-libs/nibabel/nibabel-2.5.1.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_{8..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 -}