Gentoo Archives: gentoo-commits

From: Alfredo Tupone <tupone@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-visualization/dash/
Date: Tue, 21 Sep 2021 18:28:30
Message-Id: 1632248895.523a6a9001c4d54967def32909ce70cffd260093.tupone@gentoo
1 commit: 523a6a9001c4d54967def32909ce70cffd260093
2 Author: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
3 AuthorDate: Tue Sep 21 18:26:40 2021 +0000
4 Commit: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 21 18:28:15 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=523a6a90
7
8 sci-visualization/dash: disable testing
9
10 Closes: https://bugs.gentoo.org/814128
11 Closes: https://bugs.gentoo.org/810445
12
13 Package-Manager: Portage-3.0.20, Repoman-3.0.3
14 Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>
15
16 sci-visualization/dash/dash-1.21.0.ebuild | 34 ++++++++-----------------------
17 1 file changed, 8 insertions(+), 26 deletions(-)
18
19 diff --git a/sci-visualization/dash/dash-1.21.0.ebuild b/sci-visualization/dash/dash-1.21.0.ebuild
20 index d50c7662e4b..b41f8e0c29a 100644
21 --- a/sci-visualization/dash/dash-1.21.0.ebuild
22 +++ b/sci-visualization/dash/dash-1.21.0.ebuild
23 @@ -14,39 +14,21 @@ SRC_URI="https://github.com/plotly/${PN}/archive/refs/tags/v${PV}.tar.gz
24 LICENSE="MIT"
25 SLOT="0"
26 KEYWORDS="~amd64 ~x86"
27 +# Test need some packages not yet in the tree
28 +# flask_talisman
29 +# percy
30 +# ...
31 +RESTRICT="test"
32
33 -DEPEND=""
34 -RDEPEND="${DEPEND}
35 +RDEPEND="
36 dev-python/future[${PYTHON_USEDEP}]
37 sci-visualization/dash-table[${PYTHON_USEDEP}]
38 sci-visualization/dash-html-components[${PYTHON_USEDEP}]
39 sci-visualization/dash-core-components[${PYTHON_USEDEP}]
40 dev-python/plotly[${PYTHON_USEDEP}]
41 dev-python/flask-compress[${PYTHON_USEDEP}]"
42 +DEPEND="${RDEPEND}
43 + test? ( dev-python/beautifulsoup4 )"
44 BDEPEND=""
45
46 distutils_enable_tests pytest
47 -
48 -src_prepare() {
49 - distutils-r1_src_prepare
50 - cd dash-renderer
51 - distutils-r1_src_prepare
52 -}
53 -
54 -src_configure() {
55 - distutils-r1_src_configure
56 - cd dash-renderer
57 - distutils-r1_src_configure
58 -}
59 -
60 -src_compile() {
61 - distutils-r1_src_compile
62 - cd dash-renderer
63 - distutils-r1_src_compile
64 -}
65 -
66 -src_install() {
67 - distutils-r1_src_install
68 - cd dash-renderer
69 - distutils-r1_src_install
70 -}