1
0
Fork 0

sci-libs/torchio: general fixes

Signed-off-by: Horea Christian <chr@chymera.eu>
This commit is contained in:
Horea Christian 2022-08-25 20:11:46 -04:00
parent f5573bcbc1
commit eb5bd4b01e
No known key found for this signature in database
GPG Key ID: EAA9223EE3BB378A
3 changed files with 19 additions and 18 deletions

View File

@ -1 +1 @@
DIST torchio-0.17.42.tar.gz 23194366 SHA256 afc1a26c61cdaabd34bc44992a0afa72c2130a1d8aa509bdbe7326c4e6546caa SHA512 c6a2696a2b76d3699eb47f77ce490f0aff4aea93bf4d6e64a2bf96801d098f9e898a7f6dd657581aadb3f7edb46f40c1676a31c2c6ded14a38f9457536c07d1e WHIRLPOOL 47733cc96b417a0b2c401a6b98600955a8ff003edc42e50cf328151631a74decac3a3a8dfcdc30be3d6a687b9240a5b9fe8d8e18c8f4a1b3c743918d0627f6b7
DIST torchio-0.17.42.gh.tar.gz 23194366 BLAKE2B 83f999b955de80d378e8ea53b35d830f3eea5ff0a188677f14e8b51f90860f0d9970dc054a976d918f5411c6f3175855f172dc09b8e01db7d460c15a21a414eb SHA512 c6a2696a2b76d3699eb47f77ce490f0aff4aea93bf4d6e64a2bf96801d098f9e898a7f6dd657581aadb3f7edb46f40c1676a31c2c6ded14a38f9457536c07d1e

View File

@ -16,5 +16,6 @@
</longdescription>
<upstream>
<remote-id type="github">fepegar/torchio</remote-id>
<remote-id type="pypi">torchio</remote-id>
</upstream>
</pkgmetadata>

View File

@ -1,34 +1,34 @@
# Copyright 1999-2020 Gentoo Authors
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{6,7,8} )
PYTHON_COMPAT=( python3_{8,9,10} )
DISTUTILS_SINGLE_IMPL=1
DISTUTILS_USE_SETUPTOOLS=rdepend
inherit distutils-r1
DESCRIPTION="A set of tools to efficiently read, preprocess, sample, augment, and write 3D medical images in deep learning applications."
DESCRIPTION="Efficiently process 3D images in deep learning applications."
HOMEPAGE="https://torchio.readthedocs.io/"
SRC_URI="https://github.com/fepegar/torchio/archive/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~x86"
LICENSE="MIT license"
SRC_URI="https://github.com/fepegar/torchio/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz"
KEYWORDS="~amd64"
LICENSE="Apache-2.0"
SLOT="0"
IUSE=""
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
DEPEND="
$(python_gen_cond_dep '
dev-python/click[${PYTHON_USEDEP}]
dev-python/humanize[${PYTHON_USEDEP}]
sci-libs/nibabel[${PYTHON_USEDEP}]
dev-python/numpy[${PYTHON_USEDEP}]
dev-python/deprecation[${PYTHON_USEDEP}]
dev-python/scipy[${PYTHON_USEDEP}]
>=sci-libs/pytorch-1.1[${PYTHON_USEDEP}]
dev-python/tqdm[${PYTHON_USEDEP}]
')
sci-libs/simpleitk[${PYTHON_SINGLE_USEDEP}]
$(python_gen_cond_dep '
dev-python/click[${PYTHON_USEDEP}]
dev-python/humanize[${PYTHON_USEDEP}]
sci-libs/nibabel[${PYTHON_USEDEP}]
dev-python/numpy[${PYTHON_USEDEP}]
dev-python/deprecation[${PYTHON_USEDEP}]
dev-python/scipy[${PYTHON_USEDEP}]
sci-libs/pytorch[${PYTHON_USEDEP}]
dev-python/tqdm[${PYTHON_USEDEP}]
')
sci-libs/simpleitk[${PYTHON_SINGLE_USEDEP}]
"
RDEPEND="${DEPEND}"