1
0
Fork 0

Version bump ahead of Gentoo Science

This commit is contained in:
Horea Christian 2019-03-26 18:17:34 +01:00
parent 048b39759c
commit 86122b93d8
2 changed files with 43 additions and 0 deletions

View File

@ -1 +1,2 @@
DIST props-1.6.3.tar.gz 122685 SHA256 074fbbe9fc22ae87d2a620ed2222b6998ac4d96f0a9951f751324b966322c2ce SHA512 3d1441cd2cc13253cead08e52f1c6a12c204df2b69a1c0f15ebd0ccff446ce865f77e9a8a226107f8760bb51cfcc8a00b535577d56f75c45fdfa3a03d54ec1dc WHIRLPOOL 32139abfe588df62ab76bcb1ac14039530f367f03d6e18e03d545e14eedcd638d7f823549ea1e748fae822f3733fdb6b1fef4dad571cb7d8be7c2ad15d9da2ff
DIST props-1.6.5.tar.gz 122125 SHA256 3b6caf6b5dd365ac4f3dac2569bb067cba68f70532311de05a50ba52917b6a50 SHA512 51079e2bd707e964d3496c7c93f61dccd769a6e72c1c633ed731cdbba864a5b4ca852daaae20eef6a76a65454e94aa583f36bbe71cb6fc759ed53a0cf092a94f WHIRLPOOL fc8ca93e7b654a4e609c8cc545e988ed6004b8c124bcfa57c71b16003444561cd67fb1e592bc70c878f0f07e1d6b80e48d904b1dbe1dc8622503ad9714354357

View File

@ -0,0 +1,42 @@
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python2_7 python3_{5,6} )
inherit distutils-r1 virtualx
MY_PN="props"
DESCRIPTION="The new FSL image viewer, released with FSL 5.0.10"
HOMEPAGE="https://git.fmrib.ox.ac.uk/fsl/fsleyes/fsleyes/tree/master"
SRC_URI="https://git.fmrib.ox.ac.uk/fsl/fsleyes/${MY_PN}/-/archive/${PV}/${MY_PN}-${PV}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="test"
DEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/pytest-cov[${PYTHON_USEDEP}]
)
dev-python/setuptools[${PYTHON_USEDEP}]
"
RDEPEND="
dev-python/deprecation[${PYTHON_USEDEP}]
=dev-python/numpy-1*[${PYTHON_USEDEP}]
dev-python/matplotlib[${PYTHON_USEDEP}]
=dev-python/six-1*[${PYTHON_USEDEP}]
dev-python/wxpython[${PYTHON_USEDEP}]
sci-visualization/fsleyes-widgets[${PYTHON_USEDEP}]
dev-python/fslpy[${PYTHON_USEDEP}]
"
S="${WORKDIR}/${MY_PN}-${PV}"
python_test() {
virtx pytest --verbose || die
}