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/sphinxcontrib-programoutput/
Date: Thu, 01 Apr 2021 07:43:13
Message-Id: 1617262972.879c703a26c0d3af28213068fb54d08c103f4083.mgorny@gentoo
1 commit: 879c703a26c0d3af28213068fb54d08c103f4083
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Apr 1 07:40:46 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 1 07:42:52 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=879c703a
7
8 dev-python/sphinxcontrib-programoutput: Bump to 0.17
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/sphinxcontrib-programoutput/Manifest | 1 +
13 .../sphinxcontrib-programoutput-0.17.ebuild | 36 ++++++++++++++++++++++
14 2 files changed, 37 insertions(+)
15
16 diff --git a/dev-python/sphinxcontrib-programoutput/Manifest b/dev-python/sphinxcontrib-programoutput/Manifest
17 index 85d3e5578b3..4589542c7e9 100644
18 --- a/dev-python/sphinxcontrib-programoutput/Manifest
19 +++ b/dev-python/sphinxcontrib-programoutput/Manifest
20 @@ -1 +1,2 @@
21 DIST sphinxcontrib-programoutput-0.16.tar.gz 23714 BLAKE2B 1e5136faa89a2f303008fb0e24f99f544464d30f5c0c072db4e2e25cb30bfc3cd4af6157f6c8dc7ddfaffd8f6587435c5947b6981c34daf2d6029736fdc22870 SHA512 6003b8ce43ed468b01f6bda02c6f58c0518b38c43a75f1ed0869dd8df2ee215310246b7feeba90f213547644c1bdb0164cf1f44f44879ac054dcbd6d6f48a69e
22 +DIST sphinxcontrib-programoutput-0.17.tar.gz 24067 BLAKE2B 07687a221aa9be1e02629b2961b49eace217631a1298337f77a01986c3c6444a50069a8a8b9c96ca224895ae0f9490158a720519fdf3fb544e9d3e513282eb36 SHA512 cbb564830b8a627de6ecfa83fcc235d7dd7981e191ab3cada66a74d79a5bb2ec0a993eb8ae6249db553dc1814eae98891ea285f2c3cf5e745eabce7b8647b0c4
23
24 diff --git a/dev-python/sphinxcontrib-programoutput/sphinxcontrib-programoutput-0.17.ebuild b/dev-python/sphinxcontrib-programoutput/sphinxcontrib-programoutput-0.17.ebuild
25 new file mode 100644
26 index 00000000000..b08129d07d4
27 --- /dev/null
28 +++ b/dev-python/sphinxcontrib-programoutput/sphinxcontrib-programoutput-0.17.ebuild
29 @@ -0,0 +1,36 @@
30 +# Copyright 1999-2021 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI="7"
34 +
35 +PYTHON_COMPAT=( python3_{7..9} )
36 +
37 +inherit distutils-r1
38 +
39 +DESCRIPTION="Extension to sphinx to include program output"
40 +HOMEPAGE="
41 + https://github.com/NextThought/sphinxcontrib-programoutput/
42 + https://pypi.org/project/sphinxcontrib-programoutput/
43 +"
44 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
45 +
46 +LICENSE="BSD"
47 +SLOT="0"
48 +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
49 +
50 +RDEPEND="
51 + dev-python/namespace-sphinxcontrib[${PYTHON_USEDEP}]
52 + dev-python/sphinx[${PYTHON_USEDEP}]
53 +"
54 +BDEPEND="
55 + test? (
56 + dev-python/mock[${PYTHON_USEDEP}]
57 + )
58 +"
59 +distutils_enable_tests pytest
60 +distutils_enable_sphinx doc
61 +
62 +python_install_all() {
63 + distutils-r1_python_install_all
64 + find "${ED}" -name '*.pth' -delete || die
65 +}