Gentoo Archives: gentoo-commits

From: Horea Christian <horea.christ@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: sci-visualization/fsleyes-props/
Date: Mon, 01 Feb 2021 01:46:52
Message-Id: 1612143996.e3edb6a6b3c72a2cf3a52504e46b33117316e5f1.chymera@gentoo
1 commit: e3edb6a6b3c72a2cf3a52504e46b33117316e5f1
2 Author: Horea Christian <chr <AT> chymera <DOT> eu>
3 AuthorDate: Mon Feb 1 01:46:36 2021 +0000
4 Commit: Horea Christian <horea.christ <AT> gmail <DOT> com>
5 CommitDate: Mon Feb 1 01:46:36 2021 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=e3edb6a6
7
8 sci-visualization/fsleyes-props: keep old version
9
10 Package-Manager: Portage-3.0.13, Repoman-3.0.2
11 Signed-off-by: Horea Christian <chr <AT> chymera.eu>
12
13 .../fsleyes-props/fsleyes-props-1.6.7.ebuild | 46 ++++++++++++++++++++++
14 1 file changed, 46 insertions(+)
15
16 diff --git a/sci-visualization/fsleyes-props/fsleyes-props-1.6.7.ebuild b/sci-visualization/fsleyes-props/fsleyes-props-1.6.7.ebuild
17 new file mode 100644
18 index 000000000..d9983906e
19 --- /dev/null
20 +++ b/sci-visualization/fsleyes-props/fsleyes-props-1.6.7.ebuild
21 @@ -0,0 +1,46 @@
22 +# Copyright 1999-2021 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=7
26 +
27 +PYTHON_COMPAT=( python3_{7,8} )
28 +
29 +inherit distutils-r1 virtualx
30 +
31 +MY_PN="props"
32 +
33 +DESCRIPTION="Object attribute management for the FSLeyes viewer"
34 +HOMEPAGE="https://git.fmrib.ox.ac.uk/fsl/fsleyes/fsleyes/tree/master"
35 +SRC_URI="https://git.fmrib.ox.ac.uk/fsl/fsleyes/${MY_PN}/-/archive/${PV}/${MY_PN}-${PV}.tar.gz"
36 +
37 +LICENSE="BSD"
38 +SLOT="0"
39 +KEYWORDS="~amd64 ~x86"
40 +IUSE="test"
41 +
42 +DEPEND="
43 + test? (
44 + dev-python/pytest[${PYTHON_USEDEP}]
45 + )
46 + dev-python/setuptools[${PYTHON_USEDEP}]
47 + "
48 +RDEPEND="
49 + dev-python/deprecation[${PYTHON_USEDEP}]
50 + dev-python/numpy[${PYTHON_USEDEP}]
51 + dev-python/matplotlib[${PYTHON_USEDEP}]
52 + dev-python/six[${PYTHON_USEDEP}]
53 + dev-python/wxpython[${PYTHON_USEDEP}]
54 + sci-visualization/fsleyes-widgets[${PYTHON_USEDEP}]
55 + dev-python/fslpy[${PYTHON_USEDEP}]
56 + "
57 +
58 +S="${WORKDIR}/${MY_PN}-${PV}"
59 +
60 +PATCHES=(
61 + "${FILESDIR}/fsleyes-props-1.6.7-coverage.patch"
62 + "${FILESDIR}/fsleyes-props-1.6.7-tests.patch"
63 +)
64 +
65 +python_test() {
66 + virtx pytest --verbose || die
67 +}