Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/sphinx-gallery/
Date: Wed, 09 Sep 2020 07:18:14
Message-Id: 1599635886.e7070b6f4e4b718c7f636dde290f027256231744.mgorny@gentoo
1 commit: e7070b6f4e4b718c7f636dde290f027256231744
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 9 07:06:24 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 9 07:18:06 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7070b6f
7
8 dev-python/sphinx-gallery: Bump to 0.8.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/sphinx-gallery/Manifest | 1 +
13 .../sphinx-gallery/sphinx-gallery-0.8.0.ebuild | 49 ++++++++++++++++++++++
14 2 files changed, 50 insertions(+)
15
16 diff --git a/dev-python/sphinx-gallery/Manifest b/dev-python/sphinx-gallery/Manifest
17 index 2d5b1174649..d3f2ab5fa1e 100644
18 --- a/dev-python/sphinx-gallery/Manifest
19 +++ b/dev-python/sphinx-gallery/Manifest
20 @@ -1 +1,2 @@
21 DIST sphinx-gallery-0.3.1.tar.gz 88807 BLAKE2B 79218a1f438e2b8607c52b14f098c0136cb4d5ce15a12d82bdb3caf0c7c1090e7c4f210437fc660d8d4d19bf87bbaa2ec3c208d2dc8a77ad9deea5b5cefa3c05 SHA512 c51eaaef63a7496e223a4541d0560f694420b6ac4b2cde3779c405f0ab92d34aef7a37e4c41da9e59bd8a050c8d3eed330df3799e76a60ae35cdbc6f7c9cb8c1
22 +DIST sphinx-gallery-0.8.0.tar.gz 6501815 BLAKE2B ac4b131ea9395bc230e2bab57d3823951365828f7d56ec0317878014a349ebba02e372625551f033784f30788f7c1ed110a2ba901834c9cec7cd18fa0b7ae27f SHA512 8646dd903dc6006d9333d5c9e94d2ce3cdfdc97a84a009fc3fb7abca75b0b0428b9c186625d18eb5dbdb29649efbb82a567815e82d46712bc07b1be2d0e95f1a
23
24 diff --git a/dev-python/sphinx-gallery/sphinx-gallery-0.8.0.ebuild b/dev-python/sphinx-gallery/sphinx-gallery-0.8.0.ebuild
25 new file mode 100644
26 index 00000000000..4099672df38
27 --- /dev/null
28 +++ b/dev-python/sphinx-gallery/sphinx-gallery-0.8.0.ebuild
29 @@ -0,0 +1,49 @@
30 +# Copyright 1999-2020 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +PYTHON_COMPAT=( python3_{6..7} )
36 +
37 +inherit distutils-r1
38 +
39 +DESCRIPTION="Sphinx extension to automatically generate an examples gallery"
40 +HOMEPAGE="
41 + https://sphinx-gallery.github.io/
42 + https://github.com/sphinx-gallery/sphinx-gallery"
43 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
44 +
45 +LICENSE="BSD"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux"
48 +IUSE=""
49 +
50 +RDEPEND="
51 + dev-python/matplotlib[${PYTHON_USEDEP}]
52 + dev-python/pillow[${PYTHON_USEDEP}]
53 + dev-python/sphinx[${PYTHON_USEDEP}]
54 +"
55 +BDEPEND="
56 + test? (
57 + dev-python/joblib[${PYTHON_USEDEP}]
58 + )
59 +"
60 +
61 +distutils_enable_tests pytest
62 +
63 +src_prepare() {
64 + sed -i -e 's:--cov-report= --cov=sphinx_gallery::' setup.cfg || die
65 +
66 + # tests require internet
67 + sed -e 's:test_embed_code_links_get_data:_&:' \
68 + -i sphinx_gallery/tests/test_docs_resolv.py || die
69 + sed -e 's:test_run_sphinx:_&:' \
70 + -e 's:test_embed_links_and_styles:_&:' \
71 + -i sphinx_gallery/tests/test_full.py || die
72 +
73 + # TODO: the path is clearly wrong (/../.. <- leading slash)
74 + sed -e 's:test_binder_logo_exists:_&:' \
75 + -i sphinx_gallery/tests/test_full.py || die
76 +
77 + distutils-r1_src_prepare
78 +}