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-blockdiag/
Date: Sun, 05 Jun 2022 18:22:56
Message-Id: 1654453368.bc6456535a6fd42b98ee698e1b671a43a8b132b1.mgorny@gentoo
1 commit: bc6456535a6fd42b98ee698e1b671a43a8b132b1
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jun 5 18:19:38 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Jun 5 18:22:48 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc645653
7
8 dev-python/sphinxcontrib-blockdiag: Bump to 3.0.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/sphinxcontrib-blockdiag/Manifest | 1 +
13 .../sphinxcontrib-blockdiag-3.0.0.ebuild | 53 ++++++++++++++++++++++
14 2 files changed, 54 insertions(+)
15
16 diff --git a/dev-python/sphinxcontrib-blockdiag/Manifest b/dev-python/sphinxcontrib-blockdiag/Manifest
17 index 020f13fd66c7..b7cfbc88d8e3 100644
18 --- a/dev-python/sphinxcontrib-blockdiag/Manifest
19 +++ b/dev-python/sphinxcontrib-blockdiag/Manifest
20 @@ -1 +1,2 @@
21 DIST sphinxcontrib-blockdiag-2.0.0.gh.tar.gz 11903 BLAKE2B 9301fe05ff936836e8e648a507b7e2e5fd8cada58252fd46b274a4bb3e6b51b00b7696ceee712d12bd590c40c5ae1235e0b532ef55ffc2e78b2986cdae64a0f2 SHA512 305ad9b27bbb44480c69139cc0ae9cd8e47c6ad95da5b14a964c703a17e62ab9b342ff567e8312e403549a794f6381fe4c4d444ccb7a8e41410d1a3754ffb3f1
22 +DIST sphinxcontrib-blockdiag-3.0.0.gh.tar.gz 12300 BLAKE2B 4bb6e83625095aab209b3f8eff3f96dd0c0ff37c542bedd03d7b56be282bdb6929bba7ef9cbbc458492b17bfbcf80d705cb17b3f194213c1416bf1ab090fcc6a SHA512 1d03296007b0b6455fa25b1c0d3f09fb76dfaeba43ac7155033ec6fda0aaae40b757f6b77b63725489f2360eb5a80ce8e9e55eb6460b73c3b3bca363afe8aeac
23
24 diff --git a/dev-python/sphinxcontrib-blockdiag/sphinxcontrib-blockdiag-3.0.0.ebuild b/dev-python/sphinxcontrib-blockdiag/sphinxcontrib-blockdiag-3.0.0.ebuild
25 new file mode 100644
26 index 000000000000..63bb84ea4cc5
27 --- /dev/null
28 +++ b/dev-python/sphinxcontrib-blockdiag/sphinxcontrib-blockdiag-3.0.0.ebuild
29 @@ -0,0 +1,53 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +DISTUTILS_USE_PEP517=setuptools
36 +PYTHON_COMPAT=( python3_{8..10} )
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="A sphinx extension for embedding block diagrams using blockdiag"
41 +HOMEPAGE="
42 + https://github.com/blockdiag/sphinxcontrib-blockdiag/
43 + https://pypi.org/project/sphinxcontrib-blockdiag/
44 +"
45 +SRC_URI="
46 + https://github.com/blockdiag/${PN}/archive/${PV}.tar.gz
47 + -> ${P}.gh.tar.gz
48 +"
49 +
50 +LICENSE="BSD"
51 +SLOT="0"
52 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
53 +
54 +RDEPEND="
55 + >=dev-python/sphinx-2.0[${PYTHON_USEDEP}]
56 + >=dev-python/blockdiag-1.5.0[${PYTHON_USEDEP}]
57 +"
58 +BDEPEND="
59 + test? (
60 + dev-python/mock[${PYTHON_USEDEP}]
61 + dev-python/reportlab[${PYTHON_USEDEP}]
62 + dev-python/sphinx-testing[${PYTHON_USEDEP}]
63 + )
64 +"
65 +
66 +distutils_enable_tests unittest
67 +
68 +python_prepare_all() {
69 + sed -i -e "/build-base/d" setup.cfg || die
70 + distutils-r1_python_prepare_all
71 +}
72 +
73 +python_compile() {
74 + distutils-r1_python_compile
75 + find "${BUILD_DIR}" -name '*.pth' -delete || die
76 +}
77 +
78 +python_test() {
79 + rm -rf sphinxcontrib || die
80 + distutils_write_namespace sphinxcontrib
81 + eunittest
82 +}