Gentoo Archives: gentoo-commits

From: Dennis Lamm <expeditioneer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/uranium/
Date: Mon, 14 Jun 2021 17:02:18
Message-Id: 1623690129.bc3a2e833b6b718257978f0455c8fa69a4221cb4.expeditioneer@gentoo
1 commit: bc3a2e833b6b718257978f0455c8fa69a4221cb4
2 Author: Dennis Lamm <expeditioneer <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jun 14 16:43:30 2021 +0000
4 Commit: Dennis Lamm <expeditioneer <AT> gentoo <DOT> org>
5 CommitDate: Mon Jun 14 17:02:09 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc3a2e83
7
8 dev-python/uranium-4.9.1: added missing dependency
9
10 Closes: https://bugs.gentoo.org/795273
11 Signed-off-by: Dennis Lamm <expeditioneer <AT> gentoo.org>
12 Closes: https://github.com/gentoo/gentoo/pull/21238
13 Signed-off-by: Dennis Lamm <expeditioneer <AT> gentoo.org>
14
15 dev-python/uranium/uranium-4.9.1.ebuild | 5 +++++
16 1 file changed, 5 insertions(+)
17
18 diff --git a/dev-python/uranium/uranium-4.9.1.ebuild b/dev-python/uranium/uranium-4.9.1.ebuild
19 index fa703e3b53b..066a9e02107 100644
20 --- a/dev-python/uranium/uranium-4.9.1.ebuild
21 +++ b/dev-python/uranium/uranium-4.9.1.ebuild
22 @@ -26,6 +26,7 @@ BDEPEND="${PYTHON_DEPS}
23 $(python_gen_cond_dep '
24 dev-python/pytest[${PYTHON_USEDEP}]
25 dev-python/mypy[${PYTHON_USEDEP}]
26 + dev-python/twisted[${PYTHON_USEDEP}]
27 ')
28 )"
29
30 @@ -52,6 +53,10 @@ distutils_enable_tests pytest
31 src_prepare() {
32 python_fix_shebang .
33
34 + if ! use doc ; then
35 + sed -i -e '/add_custom_target(doc/d' CMakeLists.txt || die
36 + fi
37 +
38 cmake_src_prepare
39 }