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/werkzeug/
Date: Wed, 11 May 2022 21:15:31
Message-Id: 1652303329.d6fcc643495863581782bb38475a6c16662df4b1.mgorny@gentoo
1 commit: d6fcc643495863581782bb38475a6c16662df4b1
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed May 11 21:08:49 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed May 11 21:08:49 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d6fcc643
7
8 dev-python/werkzeug: Enable py3.11
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/werkzeug/werkzeug-2.1.2.ebuild | 9 ++++++---
13 1 file changed, 6 insertions(+), 3 deletions(-)
14
15 diff --git a/dev-python/werkzeug/werkzeug-2.1.2.ebuild b/dev-python/werkzeug/werkzeug-2.1.2.ebuild
16 index 0dfe9b7b9b6b..dbf7e6f714bb 100644
17 --- a/dev-python/werkzeug/werkzeug-2.1.2.ebuild
18 +++ b/dev-python/werkzeug/werkzeug-2.1.2.ebuild
19 @@ -4,7 +4,7 @@
20 EAPI=8
21
22 DISTUTILS_USE_PEP517=setuptools
23 -PYTHON_COMPAT=( python3_{8..10} pypy3 )
24 +PYTHON_COMPAT=( python3_{8..11} pypy3 )
25
26 inherit distutils-r1
27
28 @@ -32,12 +32,15 @@ BDEPEND="
29 dev-python/pytest-xprocess[${PYTHON_USEDEP}]
30 dev-python/watchdog[${PYTHON_USEDEP}]
31 !alpha? ( !hppa? ( !ia64? (
32 - dev-python/cryptography[${PYTHON_USEDEP}]
33 + $(python_gen_cond_dep '
34 + dev-python/cryptography[${PYTHON_USEDEP}]
35 + ' python3_{8..10} pypy3 # TODO: add py3.11 when ported
36 + )
37 ) ) )
38 !hppa? ( !ia64? ( !loong? (
39 $(python_gen_cond_dep '
40 dev-python/greenlet[${PYTHON_USEDEP}]
41 - ' 'python*')
42 + ' python3_{8..10})
43 ) ) )
44 )
45 "