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/aiohttp/
Date: Sun, 28 Nov 2021 14:42:11
Message-Id: 1638110323.cfeb6667b2ecea7e7ab32e010bf58ab264d64c7f.mgorny@gentoo
1 commit: cfeb6667b2ecea7e7ab32e010bf58ab264d64c7f
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Nov 26 13:16:25 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Nov 28 14:38:43 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cfeb6667
7
8 dev-python/aiohttp: Skip optional trustme dep on non-Rust arches
9
10 The test suite handles missing trustme gracefully, so require it only
11 on architectures that are supported by Rust.
12
13 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
14
15 dev-python/aiohttp/aiohttp-3.8.1.ebuild | 4 +++-
16 1 file changed, 3 insertions(+), 1 deletion(-)
17
18 diff --git a/dev-python/aiohttp/aiohttp-3.8.1.ebuild b/dev-python/aiohttp/aiohttp-3.8.1.ebuild
19 index b98873ffc0c4..1e2744ded2d8 100644
20 --- a/dev-python/aiohttp/aiohttp-3.8.1.ebuild
21 +++ b/dev-python/aiohttp/aiohttp-3.8.1.ebuild
22 @@ -37,7 +37,9 @@ BDEPEND="
23 dev-python/pytest-mock[${PYTHON_USEDEP}]
24 dev-python/pytest-xdist[${PYTHON_USEDEP}]
25 dev-python/re-assert[${PYTHON_USEDEP}]
26 - dev-python/trustme[${PYTHON_USEDEP}]
27 + !hppa? ( !ia64? (
28 + dev-python/trustme[${PYTHON_USEDEP}]
29 + ) )
30 )
31 "