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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A1C4515ACFC for ; Tue, 2 May 2023 01:03:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E958EE041F; Tue, 2 May 2023 01:03:35 +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 C74C6E041F for ; Tue, 2 May 2023 01:03:35 +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 3AB023414E5 for ; Tue, 2 May 2023 01:03:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 93716990 for ; Tue, 2 May 2023 01:03:32 +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: <1682989396.3816342c4d4ad5da753dedcdcc7a50aaa27ac9be.chymera@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-biology/samri/ X-VCS-Repository: proj/sci X-VCS-Files: sci-biology/samri/samri-0.5.4.ebuild X-VCS-Directories: sci-biology/samri/ X-VCS-Committer: chymera X-VCS-Committer-Name: Horea Christian X-VCS-Revision: 3816342c4d4ad5da753dedcdcc7a50aaa27ac9be X-VCS-Branch: master Date: Tue, 2 May 2023 01:03:32 +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: dd2a1eda-8070-4b04-a980-cd17d9e16760 X-Archives-Hash: e112e4c9f0c0fba7decb827f74f7d8ff commit: 3816342c4d4ad5da753dedcdcc7a50aaa27ac9be Author: Horea Christian chymera eu> AuthorDate: Tue May 2 01:03:16 2023 +0000 Commit: Horea Christian gmail com> CommitDate: Tue May 2 01:03:16 2023 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=3816342c sci-biology/samri: add 0.5.4 Signed-off-by: Horea Christian chymera.eu> sci-biology/samri/samri-0.5.4.ebuild | 78 ++++++++++++++++++++++++++++++++++++ 1 file changed, 78 insertions(+) diff --git a/sci-biology/samri/samri-0.5.4.ebuild b/sci-biology/samri/samri-0.5.4.ebuild new file mode 100644 index 000000000..56351ada3 --- /dev/null +++ b/sci-biology/samri/samri-0.5.4.ebuild @@ -0,0 +1,78 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{10..10} ) +DISTUTILS_USE_PEP517=setuptools + +inherit distutils-r1 prefix + +DESCRIPTION="Small Animal Magnetic Resonance Imaging" +HOMEPAGE="https://github.com/IBT-FMI/SAMRI" +if [ "$PV" == "9999" ]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/IBT-FMI/SAMRI.git" +else + SRC_URI="https://github.com/IBT-FMI/SAMRI/archive/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64" + S="${WORKDIR}/SAMRI-${PV}" +fi + + +LICENSE="GPL-3" +SLOT="0" +IUSE="+atlases labbookdb" +REQUIRED_USE="test? ( atlases )" + +DEPEND=" + test? ( + sci-biology/samri_bidsdata + sci-biology/samri_bindata + ) + " +RDEPEND=" + dev-python/argh[${PYTHON_USEDEP}] + dev-python/joblib[${PYTHON_USEDEP}] + >=dev-python/matplotlib-2.0.2[${PYTHON_USEDEP}] + >=dev-python/numpy-1.13.3[${PYTHON_USEDEP}] + dev-python/pandas[${PYTHON_USEDEP}] + dev-python/scipy[${PYTHON_USEDEP}] + dev-python/seaborn[${PYTHON_USEDEP}] + dev-python/statsmodels[${PYTHON_USEDEP}] + >=media-gfx/blender-2.83.4 + >=sci-biology/fsl-5.0.9 + sci-biology/bru2nii + atlases? ( sci-biology/mouse-brain-templates ) + labbookdb? ( sci-libs/labbookdb[${PYTHON_USEDEP}] ) + sci-libs/nibabel[${PYTHON_USEDEP}] + >=sci-libs/nipy-0.4.1[${PYTHON_USEDEP}] + >=sci-libs/nipype-1.0.0[${PYTHON_USEDEP}] +